diff options
author | Jon Hood <squinky86@gentoo.org> | 2004-08-23 17:51:15 +0000 |
---|---|---|
committer | Jon Hood <squinky86@gentoo.org> | 2004-08-23 17:51:15 +0000 |
commit | 5a4db2434fda6adf85e7501b82558a990aa86229 (patch) | |
tree | 8686cf11398d71e547b02b1168ebaf000c993edb /net-p2p/xmule | |
parent | stable on alpha, amd64, ia64 and x86 (Manifest recommit) (diff) | |
download | gentoo-2-5a4db2434fda6adf85e7501b82558a990aa86229.tar.gz gentoo-2-5a4db2434fda6adf85e7501b82558a990aa86229.tar.bz2 gentoo-2-5a4db2434fda6adf85e7501b82558a990aa86229.zip |
add use_enable syntax
Diffstat (limited to 'net-p2p/xmule')
-rw-r--r-- | net-p2p/xmule/ChangeLog | 6 | ||||
-rw-r--r-- | net-p2p/xmule/xmule-1.8.4-r1.ebuild | 9 | ||||
-rw-r--r-- | net-p2p/xmule/xmule-1.9.0.ebuild | 9 |
3 files changed, 13 insertions, 11 deletions
diff --git a/net-p2p/xmule/ChangeLog b/net-p2p/xmule/ChangeLog index 07e4f0543fdb..59cfa3c16b56 100644 --- a/net-p2p/xmule/ChangeLog +++ b/net-p2p/xmule/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-p2p/xmule # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/xmule/ChangeLog,v 1.46 2004/08/23 00:47:29 squinky86 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/xmule/ChangeLog,v 1.47 2004/08/23 17:51:15 squinky86 Exp $ + + 23 Aug 2004; Jon Hood <squinky86@gentoo.org> xmule-1.8.4-r1.ebuild, + xmule-1.9.0.ebuild: + Fix nls compilation irt #61148, add debug to USE. *xmule-1.9.0 (22 Aug 2004) diff --git a/net-p2p/xmule/xmule-1.8.4-r1.ebuild b/net-p2p/xmule/xmule-1.8.4-r1.ebuild index 755a50a8973f..b67330e36b9f 100644 --- a/net-p2p/xmule/xmule-1.8.4-r1.ebuild +++ b/net-p2p/xmule/xmule-1.8.4-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/xmule/xmule-1.8.4-r1.ebuild,v 1.1 2004/08/23 00:47:29 squinky86 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/xmule/xmule-1.8.4-r1.ebuild,v 1.2 2004/08/23 17:51:15 squinky86 Exp $ inherit wxwidgets @@ -12,7 +12,7 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ~amd64 ~ppc" -IUSE="nls gtk2" +IUSE="nls gtk2 debug" DEPEND=">=x11-libs/wxGTK-2.4.2-r2 nls? ( sys-devel/gettext ) @@ -33,11 +33,10 @@ src_compile () { need-wxwidgets gtk2 fi - use nls \ - || myconf="${myconf} --disable-nls" - myconf="${myconf} --with-zlib=/tmp/zlib/" + myconf="${myconf} `use_enable debug` `use_enable nls`" + econf ${myconf} || die emake || die } diff --git a/net-p2p/xmule/xmule-1.9.0.ebuild b/net-p2p/xmule/xmule-1.9.0.ebuild index ac21a27fcd18..fc891a7f9a9c 100644 --- a/net-p2p/xmule/xmule-1.9.0.ebuild +++ b/net-p2p/xmule/xmule-1.9.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/xmule/xmule-1.9.0.ebuild,v 1.1 2004/08/23 00:47:29 squinky86 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/xmule/xmule-1.9.0.ebuild,v 1.2 2004/08/23 17:51:15 squinky86 Exp $ inherit wxwidgets @@ -12,7 +12,7 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~amd64 ~ppc" -IUSE="nls gtk2" +IUSE="nls gtk2 debug" DEPEND=">=x11-libs/wxGTK-2.4.2-r2 nls? ( sys-devel/gettext ) @@ -33,11 +33,10 @@ src_compile () { need-wxwidgets gtk2 fi - use nls \ - || myconf="${myconf} --disable-nls" - myconf="${myconf} --with-zlib=/tmp/zlib/" + myconf="${myconf} `use_enable debug` `use_enable nls`" + econf ${myconf} || die emake || die } |