diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2005-02-12 02:53:04 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2005-02-12 02:53:04 +0000 |
commit | f873e33bd256524f19ae140ab937b10fbe66326e (patch) | |
tree | 3c190f547cdb58a168ecbe26eb62c70cab9a59ac /media-plugins/xmms-vorbis | |
parent | Updated to work with new aolserver.eclass changes (diff) | |
download | gentoo-2-f873e33bd256524f19ae140ab937b10fbe66326e.tar.gz gentoo-2-f873e33bd256524f19ae140ab937b10fbe66326e.tar.bz2 gentoo-2-f873e33bd256524f19ae140ab937b10fbe66326e.zip |
Fix global scope use_enable.
(Portage version: 2.0.51-r15)
Diffstat (limited to 'media-plugins/xmms-vorbis')
-rw-r--r-- | media-plugins/xmms-vorbis/xmms-vorbis-1.2.10-r1.ebuild | 9 | ||||
-rw-r--r-- | media-plugins/xmms-vorbis/xmms-vorbis-1.2.10.ebuild | 9 |
2 files changed, 12 insertions, 6 deletions
diff --git a/media-plugins/xmms-vorbis/xmms-vorbis-1.2.10-r1.ebuild b/media-plugins/xmms-vorbis/xmms-vorbis-1.2.10-r1.ebuild index 8da1574d2747..9ea5f9126233 100644 --- a/media-plugins/xmms-vorbis/xmms-vorbis-1.2.10-r1.ebuild +++ b/media-plugins/xmms-vorbis/xmms-vorbis-1.2.10-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-vorbis/xmms-vorbis-1.2.10-r1.ebuild,v 1.2 2005/02/12 02:16:18 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-vorbis/xmms-vorbis-1.2.10-r1.ebuild,v 1.3 2005/02/12 02:53:04 eradicator Exp $ IUSE="ipv6 ssl" SLOT="0" @@ -14,8 +14,11 @@ PATCH_VER="2.2.2" PLUGIN_PATH="Input/vorbis" -myconf="--enable-vorbis `use_enable ipv6` `use_enable ssl`" - M4_VER="1.0" inherit xmms-plugin + +src_compile() { + myconf="${myconf} --enable-vorbis `use_enable ipv6``use_enable ssl` " + xmms-plugin_src_compile +} diff --git a/media-plugins/xmms-vorbis/xmms-vorbis-1.2.10.ebuild b/media-plugins/xmms-vorbis/xmms-vorbis-1.2.10.ebuild index b8e6e3347d18..24a5051689ae 100644 --- a/media-plugins/xmms-vorbis/xmms-vorbis-1.2.10.ebuild +++ b/media-plugins/xmms-vorbis/xmms-vorbis-1.2.10.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-vorbis/xmms-vorbis-1.2.10.ebuild,v 1.2 2005/02/12 02:16:18 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-vorbis/xmms-vorbis-1.2.10.ebuild,v 1.3 2005/02/12 02:53:04 eradicator Exp $ IUSE="ipv6" SLOT="0" @@ -11,8 +11,11 @@ DEPEND=">=media-sound/xmms-1.2.10 PLUGIN_PATH="Input/vorbis" -myconf="--enable-vorbis `use_enable ipv6`" - M4_VER="1.0" inherit xmms-plugin + +src_compile() { + myconf="${myconf} --enable-vorbis `use_enable ipv6`" + xmms-plugin_src_compile +} |