diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-07-29 16:01:56 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-07-29 16:01:56 +0000 |
commit | 9644b87e9d9a50d01068007c86809bd4f84cebac (patch) | |
tree | fbf283c449559decdbd87627d2eeddf618eefe20 /media-video/vlc | |
parent | ebuild digest overwrites x86 digest; will keep ppc version until proper fix i... (diff) | |
download | gentoo-2-9644b87e9d9a50d01068007c86809bd4f84cebac.tar.gz gentoo-2-9644b87e9d9a50d01068007c86809bd4f84cebac.tar.bz2 gentoo-2-9644b87e9d9a50d01068007c86809bd4f84cebac.zip |
Added support for a52dec by default as it is marked as enabled by
default in vlc's configure options and the a52dec author says we
should give it a try. :) I have it set to depend on
>=media-libs/a52dec-0.7.4 as previous versions were not thread
safe.
Diffstat (limited to 'media-video/vlc')
-rw-r--r-- | media-video/vlc/ChangeLog | 10 | ||||
-rw-r--r-- | media-video/vlc/vlc-0.4.3.ebuild | 6 |
2 files changed, 13 insertions, 3 deletions
diff --git a/media-video/vlc/ChangeLog b/media-video/vlc/ChangeLog index 7a8a0868b81c..0ca3d5ccbdb4 100644 --- a/media-video/vlc/ChangeLog +++ b/media-video/vlc/ChangeLog @@ -1,9 +1,17 @@ # ChangeLog for media-video/vlc # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/ChangeLog,v 1.8 2002/07/26 03:49:03 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/ChangeLog,v 1.9 2002/07/29 16:01:56 raker Exp $ *vlc-0.4.3 (25 Jul 2002) + 29 Jul 2002; Nick Hadaway <raker@gentoo.org> : + + Added support for a52dec by default as it is marked as enabled by + default in vlc's configure options and the a52dec author says we + should give it a try. :) I have it set to depend on + >=media-libs/a52dec-0.7.4 as previous versions were not thread + safe. + 25 Jul 2002; Seemant Kulleen <seemant@gentoo.org> vlc-0.4.3.ebuild : Version bump. diff --git a/media-video/vlc/vlc-0.4.3.ebuild b/media-video/vlc/vlc-0.4.3.ebuild index 126034d69af3..681d80511513 100644 --- a/media-video/vlc/vlc-0.4.3.ebuild +++ b/media-video/vlc/vlc-0.4.3.ebuild @@ -1,6 +1,6 @@ # Copyright 2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-0.4.3.ebuild,v 1.1 2002/07/26 03:49:03 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-0.4.3.ebuild,v 1.2 2002/07/29 16:01:56 raker Exp $ S=${WORKDIR}/${P} DESCRIPTION="VideoLAN Client - DVD/video player" @@ -21,7 +21,8 @@ DEPEND="X? ( virtual/x11 ) ncurses? ( sys-libs/ncurses ) oggvorbis? ( media-libs/libvorbis ) alsa? ( >=media-libs/alsa-lib-0.9_rc2 ) - >=media-sound/mad-0.14.2b" + >=media-sound/mad-0.14.2b + >=media-libs/a52dec-0.7.4" RDEPEND="nls? ( sys-devel/gettext )" @@ -132,6 +133,7 @@ src_compile(){ --disable-a52 \ --enable-release \ --enable-mad \ + --enable-a52 \ ${myconf} || die emake || die |