diff options
Diffstat (limited to 'games-roguelike/hengband/hengband-1.5.4.ebuild')
-rw-r--r-- | games-roguelike/hengband/hengband-1.5.4.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/games-roguelike/hengband/hengband-1.5.4.ebuild b/games-roguelike/hengband/hengband-1.5.4.ebuild new file mode 100644 index 000000000000..207529dae2b3 --- /dev/null +++ b/games-roguelike/hengband/hengband-1.5.4.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-roguelike/hengband/hengband-1.5.4.ebuild,v 1.1 2003/12/27 07:43:49 vapier Exp $ + +inherit games + +DESCRIPTION="An Angband variant, with a Japanese/fantasy theme" +HOMEPAGE="http://hengband.sourceforge.jp/en/" +SRC_URI="ftp://clockwork.dementia.org/angband/Variant/Hengband/${P}.tar.gz" + +LICENSE="Moria | GPL-2" +SLOT="0" +KEYWORDS="x86 ppc" +IUSE="cjk X" + +DEPEND="virtual/glibc + >=sys-libs/ncurses-5 + X? ( virtual/x11 )" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i 's|root\.|root:|' lib/*/Makefile.in + sed -i 's:/games/:/:g' configure +} + +src_compile() { + egamesconf \ + --with-setgid=${GAMES_GROUP} \ + `use_enable cjk japanese` \ + `use_with X x` \ + || die "configure failed" + emake || die "make failed" +} + +src_install() { + make DESTDIR=${D} install || die + if [ `use cjk` ] ; then + dodoc readme.txt autopick.txt + else + newdoc readme_eng.txt readme.txt + newdoc autopick_eng.txt autopick.txt + fi + dodoc readme.txt + prepgamesdirs + # FIXME: we need to patch around this BS + fperms g+w ${GAMES_DATADIR}/${PN}/lib/{apex,data,save,user} +} |