diff options
author | 2005-05-28 17:08:24 +0000 | |
---|---|---|
committer | 2005-05-28 17:08:24 +0000 | |
commit | 4f4a66044b51e453aaa4840cc0fab0d5c937caa1 (patch) | |
tree | e222885f14ab281d2511ea24baffc5314d219609 /media-sound/terminatorx/terminatorx-3.82.ebuild | |
parent | stable on amd64, ppc and x86 (diff) | |
download | gentoo-2-4f4a66044b51e453aaa4840cc0fab0d5c937caa1.tar.gz gentoo-2-4f4a66044b51e453aaa4840cc0fab0d5c937caa1.tar.bz2 gentoo-2-4f4a66044b51e453aaa4840cc0fab0d5c937caa1.zip |
Dont make use of the deprecated oggvorbis useflag any longer, see #94254. Marked 3.82 stable on amd64 and x86. Removed unnecessary patches.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'media-sound/terminatorx/terminatorx-3.82.ebuild')
-rw-r--r-- | media-sound/terminatorx/terminatorx-3.82.ebuild | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/media-sound/terminatorx/terminatorx-3.82.ebuild b/media-sound/terminatorx/terminatorx-3.82.ebuild index d6a9b80c5019..43cf716f2f6b 100644 --- a/media-sound/terminatorx/terminatorx-3.82.ebuild +++ b/media-sound/terminatorx/terminatorx-3.82.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-sound/terminatorx/terminatorx-3.82.ebuild,v 1.1 2005/02/20 15:35:53 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/terminatorx/terminatorx-3.82.ebuild,v 1.2 2005/05/28 17:08:24 luckyduck Exp $ inherit gnome2 @@ -12,12 +12,12 @@ SRC_URI="http://www.terminatorx.cx/dist/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86 ~amd64 ~sparc" -IUSE="3dnow alsa mad oggvorbis sox" +KEYWORDS="x86 amd64 ~sparc" +IUSE="3dnow alsa mad vorbis sox" DEPEND="alsa? ( >=media-libs/alsa-lib-0.9 ) mad? ( media-sound/madplay ) - oggvorbis? ( >=media-libs/libvorbis-1.0_beta4 ) + vorbis? ( >=media-libs/libvorbis-1.0_beta4 ) sox? ( media-sound/sox ) >=x11-libs/gtk+-2.2.0 >=dev-libs/glib-2.2.0 @@ -40,15 +40,16 @@ src_unpack() { src_compile() { econf \ - `use_enable 3dnow` \ - `use_enable alsa` \ - `use_enable mad` \ - `use_enable vorbis` \ - `use_enable sox` \ + $(use_enable 3dnow) \ + $(use_enable alsa) \ + $(use_enable mad) \ + $(use_enable vorbis) \ + $(use_enable sox) \ || die "econf failed" - emake || die + + emake || die "make failed" } src_install() { - make DESTDIR=${D} install + make DESTDIR=${D} install || die "make install failed" } |