# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /home/cvsroot/gentoo-x86/app-games/angband/angband-3.0.1.ebuild,v 1.4 2003/02/28 16:54:59 liquidx Exp $ inherit games DESCRIPTION="A Roguelike adventure game" HOMEPAGE="http://thangorodrim.net/" SRC_URI="ftp://clockwork.dementia.org/angband/Source/${P}.tar.gz" LICENSE="Moria | GPL-2" SLOT="0" KEYWORDS="x86 ppc" IUSE="X" DEPEND="virtual/glibc >=sys-libs/ncurses-5 X? ( >=x11-base/xfree-4.0 )" src_compile() { local myconf="--bindir=/usr/games/bin --with-setgid=games" use X || myconf="--without-x" mv configure configure.tmp sed -e "s:/games/:/:" configure.tmp >configure chmod +x configure egamesconf ${myconf} || die "configure failed" emake || die "make failed" } pkg_preinst() { rm ${D}/usr/share/games/angband/lib/apex/scores.raw } src_install() { make DESTDIR=${D} DOCDIR=/usr/share/doc/{P} install || die dodoc AUTHORS COPYING THANKS TODO changes.txt compile.txt readme.txt prepgamesdirs } pkg_postinst() { chmod -R g+w /usr/share/games/angband/lib/{apex,save,user} }