diff options
author | Koop Mast <kwm@FreeBSD.org> | 2005-07-06 15:04:58 +0000 |
---|---|---|
committer | Koop Mast <kwm@FreeBSD.org> | 2005-07-06 15:04:58 +0000 |
commit | 3f91498e6d7300a519650d17a3b481c1fe9242fe (patch) | |
tree | c76a2de71bc88a1a41241b6a82fc5243a9ee8714 /multimedia/gstreamer-plugins/Makefile.common | |
parent | 2020526dd26217646588f0fb1cc12ff9f2400561 (diff) | |
download | ports-3f91498e6d7300a519650d17a3b481c1fe9242fe.tar.gz ports-3f91498e6d7300a519650d17a3b481c1fe9242fe.zip |
Notes
Diffstat (limited to 'multimedia/gstreamer-plugins/Makefile.common')
-rw-r--r-- | multimedia/gstreamer-plugins/Makefile.common | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/multimedia/gstreamer-plugins/Makefile.common b/multimedia/gstreamer-plugins/Makefile.common index dcfb94ba5014..dad62b30045b 100644 --- a/multimedia/gstreamer-plugins/Makefile.common +++ b/multimedia/gstreamer-plugins/Makefile.common @@ -2,7 +2,6 @@ GST_ALL_PLUGINS= \ a52dec \ aalib \ aalibtest \ - amrnb \ arts \ artstest \ artsc \ @@ -10,6 +9,7 @@ GST_ALL_PLUGINS= \ audioresample \ cairo \ cdaudio \ + cdio \ cdparanoia \ dirac \ directfb \ @@ -70,11 +70,11 @@ GST_ALL_PLUGINS= \ sndfile \ speex \ swfdec \ - tarkin \ theora \ vcd \ vorbis \ vorbistest \ + wavpack \ xvid # Disable all plugins by default\ @@ -84,6 +84,7 @@ CONFIGURE_ARGS+= --disable-${d} CONFIGURE_ARGS+=--disable-tests \ --disable-examples \ + --disable-amrnb \ --disable-alsa \ --disable-http \ --enable-cdrom \ @@ -93,12 +94,12 @@ CONFIGURE_ARGS+=--disable-tests \ --enable-oss \ --disable-osx_audio \ --disable-osx_video \ + --disable-tarkin \ --enable-static \ - --disable-spc \ + --enable-spc \ --disable-sunaudio \ --disable-gst_v4l \ --disable-gst_v4l2 \ - --enable-wavpack \ --disable-xine \ --enable-x \ --enable-xshm \ @@ -224,6 +225,12 @@ LIB_DEPENDS+= jack.0:${PORTSDIR}/audio/jack LIB_DEPENDS+= cdaudio.1:${PORTSDIR}/audio/libcdaudio .endif +# libcdio +.if ${GST_PLUGIN}=="cdio" +LIB_DEPENDS+= cdio.5:${PORTSDIR}/sysutils/libcdio +PLIST_FILES= ${GST_LIB_DIR}/libgstcddasrc.so +.endif + # libvisual .if ${GST_PLUGIN}=="libvisual" LIB_DEPENDS+= visual.0:${PORTSDIR}/graphics/libvisual @@ -395,7 +402,7 @@ PLIST_FILES= ${GST_LIB_DIR}/libgsttextoverlay.so \ ${GST_LIB_DIR}/libgsttimeoverlay.so .endif -# libpng +# libpng and the snapshot plugin .if ${GST_PLUGIN}=="libpng" LIB_DEPENDS+= png.5:${PORTSDIR}/graphics/png GST_PLUGIN_DIR= ext/libpng \ @@ -443,6 +450,11 @@ LIB_DEPENDS+= vorbis.3:${PORTSDIR}/audio/libvorbis LIB_DEPENDS+= vorbisidec.1:${PORTSDIR}/audio/libtremor .endif +# wavpack +.if ${GST_PLUGIN}=="wavpack" +LIB_DEPENDS+= wavpack.0:${PORTSDIR}/audio/wavpack +.endif + # xvid .if ${GST_PLUGIN}=="xvid" LIB_DEPENDS+= xvidcore.4:${PORTSDIR}/multimedia/xvid @@ -450,8 +462,8 @@ LIB_DEPENDS+= xvidcore.4:${PORTSDIR}/multimedia/xvid LIB_DEPENDS+= gstplay-${VERSION}.${SHLIB_VERSION}:${PORTSDIR}/multimedia/gstreamer-plugins -PLIST_FILES+= '@exec %D/bin/gst-register --gst-registry=%D/share/gnome/cache/gstreamer-${VERSION}/registry.xml 2>/dev/null || true' -PLIST_FILES+= '@unexec %D/bin/gst-register --gst-registry=%D/share/gnome/cache/gstreamer-${VERSION}/registry.xml 2>/dev/null || true' +PLIST_FILES+= '@exec %D/bin/gst-register-${VERSION} --gst-registry=%D/share/gnome/cache/gstreamer-${VERSION}/registry.xml 2>/dev/null || true' +PLIST_FILES+= '@unexec %D/bin/gst-register-${VERSION} --gst-registry=%D/share/gnome/cache/gstreamer-${VERSION}/registry.xml 2>/dev/null || true' do-build: .if ${GST_PLUGIN} == "gconf" |