diff options
author | David Holm <dholm@gentoo.org> | 2004-06-10 07:43:45 +0000 |
---|---|---|
committer | David Holm <dholm@gentoo.org> | 2004-06-10 07:43:45 +0000 |
commit | 8bce14ae346a595bd3e6946bd79f0e00135dd6ba (patch) | |
tree | 90d9270bbfc8c610f70642e21e102d3db85c1b96 /media-video | |
parent | Added media-video/tcvp (diff) | |
download | historical-8bce14ae346a595bd3e6946bd79f0e00135dd6ba.tar.gz historical-8bce14ae346a595bd3e6946bd79f0e00135dd6ba.tar.bz2 historical-8bce14ae346a595bd3e6946bd79f0e00135dd6ba.zip |
USE-flag bugfix
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/tcvp/Manifest | 2 | ||||
-rw-r--r-- | media-video/tcvp/tcvp-0.2.0.ebuild | 12 |
2 files changed, 5 insertions, 9 deletions
diff --git a/media-video/tcvp/Manifest b/media-video/tcvp/Manifest index 27d259f42207..6b8e5028b829 100644 --- a/media-video/tcvp/Manifest +++ b/media-video/tcvp/Manifest @@ -1,4 +1,4 @@ MD5 fa57dc3e34ad1d0cc41ff7fbcabdb205 ChangeLog 606 MD5 eba326432d26a3e8eb926c52124bbb9c metadata.xml 257 -MD5 95b31063000a0e4d764367de914e7e32 tcvp-0.2.0.ebuild 1809 +MD5 efaf3137e0aa1f2abb5561312236ef9c tcvp-0.2.0.ebuild 1698 MD5 f0f7a5d05e5be4ecf1f0a478b739f10a files/digest-tcvp-0.2.0 63 diff --git a/media-video/tcvp/tcvp-0.2.0.ebuild b/media-video/tcvp/tcvp-0.2.0.ebuild index 7a3d5774c53f..5f72da655fed 100644 --- a/media-video/tcvp/tcvp-0.2.0.ebuild +++ b/media-video/tcvp/tcvp-0.2.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/tcvp/tcvp-0.2.0.ebuild,v 1.4 2004/06/09 22:09:53 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/tcvp/tcvp-0.2.0.ebuild,v 1.5 2004/06/10 07:43:45 dholm Exp $ DESCRIPTION="A modular player and encoder/transcoder for music and video." HOMEPAGE="http://tcvp.sourceforge.net/" @@ -10,19 +10,19 @@ SLOT="0" LICENSE="MIT" KEYWORDS="~x86 ~ppc" -IUSE="mpeg mad faad alsa cdr dvd encode ffmpeg oggvorbis oss" +IUSE="faad mpeg mad alsa dvd encode ffmpeg oggvorbis oss" DEPEND=">=dev-libs/libtc-1.1.0 >=dev-libs/tc2-0.6.0 >=dev-libs/tc2-modules-0.6.0 >=media-libs/a52dec-0.7.4 + >=media-sound/cdparanoia-3.9.8-r1 >=sys-apps/file-4.0 + faad? ( media-libs/faad2 ) alsa? ( >=media-libs/alsa-lib-1.0.3b-r2 ) - cdr? ( >=media-sound/cdparanoia-3.9.8-r1 ) dvd? ( >=media-libs/libdvdnav-0.1.9 ) encode? ( >=media-libs/faac-1.23.5 >=media-sound/lame-3.96 ) - faad? ( media-libs/faad2 ) ffmpeg? ( >=media-video/ffmpeg-0.4.8 ) mad? ( >=media-sound/madplay-0.15.2b ) mpeg? ( >=media-libs/libmpeg2-0.4.0b ) @@ -33,10 +33,8 @@ src_compile() { local myconf myconf="--with-gnu-ld" use alsa || myconf="${myconf} --disable-alsa" - use cdr || myconf="${myconf} --disable-cdda" use dvd || myconf="${myconf} --disable-dvd" use encode || myconf="${myconf} --disable-lame --disable-aac_enc" - use faad || myconf="${myconf} --disable-aac_dec" use ffmpeg || myconf="${myconf} --disable-avcodec --disable-avformat --disable-avimage --disable-scale" use mad || myconf="${myconf} --disable-mad" use mpeg || myconf="${myconf} --disable-mpeg2" @@ -50,5 +48,3 @@ src_install() { make DESTDIR=${D} install || die dodoc AUTHORS ChangeLog COPYING } - - |