diff options
author | 2010-07-30 09:42:14 +0000 | |
---|---|---|
committer | 2010-07-30 09:42:14 +0000 | |
commit | 3ae49164333ba206f694e2e8ddab4bba09178f18 (patch) | |
tree | 13754b224e5eff0fbcddf40b71e7cf9417936286 /eclass/gst-plugins-bad.eclass | |
parent | Stable on amd64 wrt bug #329621 (diff) | |
download | historical-3ae49164333ba206f694e2e8ddab4bba09178f18.tar.gz historical-3ae49164333ba206f694e2e8ddab4bba09178f18.tar.bz2 historical-3ae49164333ba206f694e2e8ddab4bba09178f18.zip |
More preparation for gst-plugins-bad-0.10.19 - oss4 moved away, dvdnav configure option renamed to resindvd
Diffstat (limited to 'eclass/gst-plugins-bad.eclass')
-rw-r--r-- | eclass/gst-plugins-bad.eclass | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/eclass/gst-plugins-bad.eclass b/eclass/gst-plugins-bad.eclass index bf5709d750f1..c0c2b819a7b1 100644 --- a/eclass/gst-plugins-bad.eclass +++ b/eclass/gst-plugins-bad.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-bad.eclass,v 1.31 2010/07/28 05:40:25 leio Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-bad.eclass,v 1.32 2010/07/30 09:42:14 leio Exp $ # # Original Author: Saleem Abdulrasool <compnerd@gentoo.org> @@ -14,17 +14,27 @@ inherit eutils versionator gst-plugins10 # This list is current for gst-plugins-bad-0.10.18. my_gst_plugins_bad="directsound directdraw osx_video quicktime vcd alsa assrender amrwb apexsink bz2 cdaudio celt cog directfb dirac dts divx -dvdnav metadata faac faad fbdev flite gsm jack jp2k kate ladspa lv2 libmms +metadata faac faad fbdev flite gsm jack jp2k kate ladspa lv2 libmms modplug mimic mpeg2enc mplex musepack musicbrainz mythtv nas neon ofa rsvg timidity wildmidi sdl sdltest sndfile soundtouch spc gme swfdec theoradec xvid -dvb oss4 wininet acm vdpau schro zbar" +dvb wininet acm vdpau schro zbar" -# When adding conditionals like this, be careful about having leading spaces +# When adding conditionals like below, be careful about having leading spaces + +# Changes in 0.10.19: +# dvdnav configure option changed from --enable-dvdnav to --enable-resindvd if version_is_at_least "0.10.19"; then - my_gst_plugins_bad+=" vp8" + my_gst_plugins_bad+=" resindvd vp8" +fi + +# dvdnav configure option changed from --enable-dvdnav to --enable-resindvd +# oss4 moved to -good +if ! version_is_at_least "0.10.19"; then + my_gst_plugins_bad+=" dvdnav oss4" fi -# ivorbis gone since 0.10.18 (moved to -base-0.10.27 as part of vorbis plugin) +# Changes in 0.10.18: +# ivorbis gone (moved to -base-0.10.27 as part of vorbis plugin) if ! version_is_at_least "0.10.18"; then my_gst_plugins_bad+=" ivorbis" fi |