diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2007-02-03 09:47:23 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2007-02-03 09:47:23 +0000 |
commit | 58d9e4cbeef7ac283b092f68ce8d2078f1d4ce40 (patch) | |
tree | 815f47e9f0ff3ec2b0c927d39faf69275b6f7e1f /games-board/sirius/sirius-0.8.0.ebuild | |
parent | whitespace (diff) | |
download | gentoo-2-58d9e4cbeef7ac283b092f68ce8d2078f1d4ce40.tar.gz gentoo-2-58d9e4cbeef7ac283b092f68ce8d2078f1d4ce40.tar.bz2 gentoo-2-58d9e4cbeef7ac283b092f68ce8d2078f1d4ce40.zip |
Add nls USE flag
(Portage version: 2.1.2-r6)
Diffstat (limited to 'games-board/sirius/sirius-0.8.0.ebuild')
-rw-r--r-- | games-board/sirius/sirius-0.8.0.ebuild | 29 |
1 files changed, 23 insertions, 6 deletions
diff --git a/games-board/sirius/sirius-0.8.0.ebuild b/games-board/sirius/sirius-0.8.0.ebuild index 31c46810156f..91bdeec791e2 100644 --- a/games-board/sirius/sirius-0.8.0.ebuild +++ b/games-board/sirius/sirius-0.8.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/sirius/sirius-0.8.0.ebuild,v 1.7 2006/12/01 21:43:41 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/sirius/sirius-0.8.0.ebuild,v 1.8 2007/02/03 09:47:23 nyhm Exp $ inherit games @@ -11,15 +11,32 @@ SRC_URI="http://sirius.bitvis.nu/files/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 x86" -IUSE="" +IUSE="nls" -DEPEND="=x11-libs/gtk+-2* +RDEPEND="=x11-libs/gtk+-2* =gnome-base/gconf-2* gnome-base/libgnomeui - gnome-base/libgnomecanvas" + gnome-base/libgnomecanvas + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext )" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i '/-g -O3/d' configure || die "sed failed" +} + +src_compile() { + egamesconf \ + --datadir=/usr/share \ + $(use_enable nls) \ + || die + emake || die "emake failed" +} src_install() { - egamesinstall || die + emake DESTDIR="${D}" install || die "emake install failed" dodoc AUTHORS BUGS ChangeLog README prepgamesdirs } |