S=${WORKDIR}/${P} DESCRIPTION="A Roguelike adventure game" SRC_URI="ftp://clockwork.dementia.org/angband/Source/${P}.tar.gz" LICENSE="Moria/GPL" SLOT="" HOMEPAGE="http://thangorodrim.angband.org" DEPEND="virtual/glibc >=sys-libs/ncurses-5 X? ( >=x11-base/xfree-4.0 )" src_unpack() { unpack ${P}.tar.gz cd ${S} } src_compile() { local myconf use X || myconf="--without-x" ./configure --prefix=/usr --host=${CHOST} ${myconf} \ --with-setgid=games --mandir=/usr/share/man \ || die "./configure failed (myconf=${myconf}" emake || die } src_install() { make DESTDIR=${D} DOCDIR=/usr/share/doc/{P} install || die dodoc AUTHORS COPYING THANKS TODO changes.txt compile.txt readme.txt }