summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'games-roguelike/hengband/hengband-1.5.4.ebuild')
-rw-r--r--games-roguelike/hengband/hengband-1.5.4.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/games-roguelike/hengband/hengband-1.5.4.ebuild b/games-roguelike/hengband/hengband-1.5.4.ebuild
deleted file mode 100644
index 2e02894adf61..000000000000
--- a/games-roguelike/hengband/hengband-1.5.4.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# 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.6 2004/07/01 05:21:55 mr_bones_ 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"
-SLOT="0"
-KEYWORDS="x86 ppc"
-IUSE="cjk X"
-
-DEPEND="virtual/libc
- >=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}
-}