diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2007-09-12 20:46:28 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2007-09-12 20:46:28 +0000 |
commit | 98d1c73090d068b5694cf90929a102a7ba550d69 (patch) | |
tree | c6c20bb9bf327b95bf83d5c7cc2042ab452af160 /games-roguelike/angband | |
parent | inherit eutils (diff) | |
download | gentoo-2-98d1c73090d068b5694cf90929a102a7ba550d69.tar.gz gentoo-2-98d1c73090d068b5694cf90929a102a7ba550d69.tar.bz2 gentoo-2-98d1c73090d068b5694cf90929a102a7ba550d69.zip |
inherit eutils; use emake
(Portage version: 2.1.3.9)
Diffstat (limited to 'games-roguelike/angband')
-rw-r--r-- | games-roguelike/angband/angband-3.0.9.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games-roguelike/angband/angband-3.0.9.ebuild b/games-roguelike/angband/angband-3.0.9.ebuild index d0cdf74c3f7a..5b7a0b064d14 100644 --- a/games-roguelike/angband/angband-3.0.9.ebuild +++ b/games-roguelike/angband/angband-3.0.9.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-roguelike/angband/angband-3.0.9.ebuild,v 1.1 2007/08/24 15:55:41 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-roguelike/angband/angband-3.0.9.ebuild,v 1.2 2007/09/12 20:46:28 nyhm Exp $ -inherit flag-o-matic games +inherit eutils flag-o-matic games DESCRIPTION="A roguelike dungeon exploration game based on the books of J.R.R.Tolkien" HOMEPAGE="http://rephial.org/" @@ -39,13 +39,13 @@ src_compile() { $(use_enable gtk) \ $(use_enable X x11) \ $(use_enable sdl) \ - || die "egamesconf failed" + || die append-ldflags -Wl,-z,now emake || die "emake failed" } src_install() { - make DESTDIR="${D}" install || die "make install failed" + emake DESTDIR="${D}" install || die "emake install failed" insinto "${GAMES_DATADIR}"/${PN}/xtra doins lib/xtra/angband.glade || die "doins angband.glade failed" dodoc changes.txt faq.txt readme.txt thanks.txt |