diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2007-08-07 23:45:32 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2007-08-07 23:45:32 +0000 |
commit | 59567f7f1d2b67637d9222c3f26ffa4c03f33cb9 (patch) | |
tree | ec7bc9ec6d81a24ce33f92cd3b6f3f8b1f091821 /games-arcade/xbill | |
parent | Make blender use swscale (diff) | |
download | gentoo-2-59567f7f1d2b67637d9222c3f26ffa4c03f33cb9.tar.gz gentoo-2-59567f7f1d2b67637d9222c3f26ffa4c03f33cb9.tar.bz2 gentoo-2-59567f7f1d2b67637d9222c3f26ffa4c03f33cb9.zip |
Add gtk USE flag, bug #186807 by Pacho Ramos
(Portage version: 2.1.3.3)
Diffstat (limited to 'games-arcade/xbill')
-rw-r--r-- | games-arcade/xbill/ChangeLog | 5 | ||||
-rw-r--r-- | games-arcade/xbill/xbill-2.1-r1.ebuild | 13 |
2 files changed, 13 insertions, 5 deletions
diff --git a/games-arcade/xbill/ChangeLog b/games-arcade/xbill/ChangeLog index ad027df4310a..05ebdfe8ca0c 100644 --- a/games-arcade/xbill/ChangeLog +++ b/games-arcade/xbill/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-arcade/xbill # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/xbill/ChangeLog,v 1.12 2007/03/15 22:31:47 nyhm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/xbill/ChangeLog,v 1.13 2007/08/07 23:45:32 nyhm Exp $ + + 07 Aug 2007; Tristan Heaven <nyhm@gentoo.org> xbill-2.1-r1.ebuild: + Add gtk USE flag, bug #186807 by Pacho Ramos 15 Mar 2007; Tristan Heaven <nyhm@gentoo.org> xbill-2.1-r1.ebuild: Install menu entry, bug #160259 diff --git a/games-arcade/xbill/xbill-2.1-r1.ebuild b/games-arcade/xbill/xbill-2.1-r1.ebuild index 0807daf538cd..b1b922e9cd7e 100644 --- a/games-arcade/xbill/xbill-2.1-r1.ebuild +++ b/games-arcade/xbill/xbill-2.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/xbill/xbill-2.1-r1.ebuild,v 1.8 2007/03/15 22:31:47 nyhm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/xbill/xbill-2.1-r1.ebuild,v 1.9 2007/08/07 23:45:32 nyhm Exp $ inherit eutils games @@ -11,12 +11,17 @@ SRC_URI="http://www.xbill.org/download/${P}.tar.gz" LICENSE="GPL-1" SLOT="0" KEYWORDS="alpha amd64 ppc x86" -IUSE="" +IUSE="gtk" -DEPEND="=x11-libs/gtk+-1*" +DEPEND="gtk? ( =x11-libs/gtk+-1* ) + !gtk? ( x11-libs/libXaw )" src_compile() { - egamesconf --enable-gtk || die + egamesconf \ + --disable-motif \ + $(use_enable gtk) \ + $(use_enable !gtk athena) \ + || die emake || die "emake failed" } |