diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2006-11-03 23:00:41 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2006-11-03 23:00:41 +0000 |
commit | f78676f6f8068416bcfc3d5fd40a15e9095db8da (patch) | |
tree | 47c44467b0f0959b23cd08ccb3cd8a8336546290 /games-simulation | |
parent | Added ~sparc keyword wrt bug #121862. (diff) | |
download | gentoo-2-f78676f6f8068416bcfc3d5fd40a15e9095db8da.tar.gz gentoo-2-f78676f6f8068416bcfc3d5fd40a15e9095db8da.tar.bz2 gentoo-2-f78676f6f8068416bcfc3d5fd40a15e9095db8da.zip |
Add nls dependencies
(Portage version: 2.1.2_rc1-r3)
Diffstat (limited to 'games-simulation')
-rw-r--r-- | games-simulation/senken/ChangeLog | 5 | ||||
-rw-r--r-- | games-simulation/senken/senken-0.3.0.ebuild | 13 |
2 files changed, 12 insertions, 6 deletions
diff --git a/games-simulation/senken/ChangeLog b/games-simulation/senken/ChangeLog index 83832125c887..f1f0aef5cd1b 100644 --- a/games-simulation/senken/ChangeLog +++ b/games-simulation/senken/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-simulation/senken # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/senken/ChangeLog,v 1.8 2006/02/22 22:04:37 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-simulation/senken/ChangeLog,v 1.9 2006/11/03 23:00:41 nyhm Exp $ + + 03 Nov 2006; Tristan Heaven <nyhm@gentoo.org> senken-0.3.0.ebuild: + Add nls dependencies 22 Feb 2006; <Tupone@gentoo.org> senken-0.3.0.ebuild: Modular X dependency fix diff --git a/games-simulation/senken/senken-0.3.0.ebuild b/games-simulation/senken/senken-0.3.0.ebuild index cbab2bace711..8d4eb775110b 100644 --- a/games-simulation/senken/senken-0.3.0.ebuild +++ b/games-simulation/senken/senken-0.3.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/senken/senken-0.3.0.ebuild,v 1.6 2006/02/22 22:04:37 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-simulation/senken/senken-0.3.0.ebuild,v 1.7 2006/11/03 23:00:41 nyhm Exp $ inherit games @@ -10,12 +10,15 @@ SRC_URI="http://www.contrib.andrew.cmu.edu/~tmartin/senken/download/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86 ~amd64 ~ppc" +KEYWORDS="~amd64 ~ppc x86" IUSE="nls" -DEPEND=">=x11-libs/gtk+-2 +RDEPEND=">=x11-libs/gtk+-2 >=media-libs/libsdl-1.2.4 - media-libs/sdl-image" + media-libs/sdl-image + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext )" src_unpack() { unpack ${A} @@ -32,7 +35,7 @@ src_compile() { } src_install() { - make DESTDIR="${D}" install || die "make install failed" + emake DESTDIR="${D}" install || die "emake install failed" dodoc AUTHORS README TODO dodir "${GAMES_DATADIR}" |