summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-10-31 05:16:11 +0000
committerMike Frysinger <vapier@gentoo.org>2004-10-31 05:16:11 +0000
commit9f1ba840d7e68ff26d985a681b2d594ad1223e7c (patch)
treedc700dc9a74077d744d474ebece2a3c4322e12bf /games-roguelike/zangband
parentfix sed DEPEND #44817 (diff)
downloadhistorical-9f1ba840d7e68ff26d985a681b2d594ad1223e7c.tar.gz
historical-9f1ba840d7e68ff26d985a681b2d594ad1223e7c.tar.bz2
historical-9f1ba840d7e68ff26d985a681b2d594ad1223e7c.zip
old
Diffstat (limited to 'games-roguelike/zangband')
-rw-r--r--games-roguelike/zangband/files/digest-zangband-2.7.41
-rw-r--r--games-roguelike/zangband/zangband-2.7.4.ebuild54
2 files changed, 0 insertions, 55 deletions
diff --git a/games-roguelike/zangband/files/digest-zangband-2.7.4 b/games-roguelike/zangband/files/digest-zangband-2.7.4
deleted file mode 100644
index 338fdd3a8b0a..000000000000
--- a/games-roguelike/zangband/files/digest-zangband-2.7.4
+++ /dev/null
@@ -1 +0,0 @@
-MD5 91200ee029d3b3405c5a193d19224411 zangband-2.7.4.tar.gz 2787994
diff --git a/games-roguelike/zangband/zangband-2.7.4.ebuild b/games-roguelike/zangband/zangband-2.7.4.ebuild
deleted file mode 100644
index ac67b6ea90f3..000000000000
--- a/games-roguelike/zangband/zangband-2.7.4.ebuild
+++ /dev/null
@@ -1,54 +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/zangband/zangband-2.7.4.ebuild,v 1.5 2004/07/14 14:57:58 agriffis Exp $
-
-inherit games
-
-DESCRIPTION="An enhanced version of the Roguelike game Angband"
-HOMEPAGE="http://www.zangband.org/"
-SRC_URI="ftp://clockwork.dementia.org/angband/Variant/ZAngband/${P}.tar.gz"
-
-LICENSE="Moria"
-SLOT="0"
-KEYWORDS="x86 ppc"
-IUSE="X gtk tcltk"
-
-DEPEND=">=sys-libs/ncurses-5
- sys-libs/zlib
- >=sys-apps/sed-4
- tcltk? ( dev-lang/tcl dev-lang/tk )
- gtk? ( =x11-libs/gtk+-1* )
- X? ( virtual/x11 )"
-
-S=${WORKDIR}/${PN}
-
-src_compile() {
- egamesconf \
- --datadir="${GAMES_DATADIR_BASE}" \
- "--with-setgid=${GAMES_GROUP}" \
- `use_with gtk` \
- `use_with tcltk` \
- `use_with X x` || die
- emake || die "emake failed"
-}
-
-src_install() {
- # Keep some important dirs we want to chmod later
- keepdir ${GAMES_DATADIR}/zangband/lib/apex
- keepdir ${GAMES_DATADIR}/zangband/lib/user
- keepdir ${GAMES_DATADIR}/zangband/lib/save
-
- # Install the basic files but remove unneeded crap
- make DESTDIR=${D}/${GAMES_DATADIR}/zangband/ installbase || \
- die "make installbase failed"
- rm ${D}${GAMES_DATADIR}/zangband/{angdos.cfg,readme,z_faq.txt,z_update.txt}
-
- # Install everything else and fix the permissions
- dogamesbin zangband || die "dogamesbin failed"
- dodoc readme z_faq.txt z_update.txt || die "dodoc failed"
- find "${D}${GAMES_DATADIR}/zangband/lib" -type f -exec chmod a-x \{\} \;
-
- prepgamesdirs
- # All users in the games group need write permissions to some important dirs
- chmod -R g+w ${D}/${GAMES_DATADIR}/zangband/lib/{apex,save,user}
-}