diff options
author | ahze <ahze@FreeBSD.org> | 2004-12-30 10:27:19 +0800 |
---|---|---|
committer | ahze <ahze@FreeBSD.org> | 2004-12-30 10:27:19 +0800 |
commit | 9bc3feda669d10ce15c8f19aba3dddae65a850a9 (patch) | |
tree | 5acf9ca3a7bc9a211819df17593ddceb51cd4e6b | |
parent | 1c8e17564f57a7efe4f228fc1232020b58751919 (diff) | |
download | freebsd-ports-gnome-9bc3feda669d10ce15c8f19aba3dddae65a850a9.tar.gz freebsd-ports-gnome-9bc3feda669d10ce15c8f19aba3dddae65a850a9.tar.zst freebsd-ports-gnome-9bc3feda669d10ce15c8f19aba3dddae65a850a9.zip |
Add a new knob, WITHOUT_TRANSCODE
WITHOUT_TRANSCODE=yes
Disable transcode of multimedia via transcode (multimedia/transcode).
This option allows you to convert a media file, dvd, A/V stream, etc
in to another format. This also allows you to transcode multimedia
on-the-fly and stream to a network and/or local playback.
-rw-r--r-- | multimedia/vlc-devel/Makefile | 10 | ||||
-rw-r--r-- | multimedia/vlc/Makefile | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/multimedia/vlc-devel/Makefile b/multimedia/vlc-devel/Makefile index 006800a9f6f6..f424df9ec613 100644 --- a/multimedia/vlc-devel/Makefile +++ b/multimedia/vlc-devel/Makefile @@ -105,6 +105,12 @@ # # WITH_LIBTHEORA=yes # +# WITHOUT_TRANSCODE=yes +# Disable transcode of multimedia via transcode (multimedia/transcode). +# This option allows you to convert a media file, dvd, A/V stream, etc +# in to another format. This also allows you to transcode multimedia +# on-the-fly and stream to a network and/or local playback. +# # Other Knobs: # # DEBUG=yes @@ -526,6 +532,10 @@ CONFIGURE_ARGS+=--enable-sdl CONFIGURE_ARGS+=--disable-sdl .endif +.if !defined(WITHOUT_TRANSCODE) +RUN_DEPENDS+= transcode:${PORTSDIR}/multimedia/transcode +.endif + .if !defined(WITHOUT_HTTPD) && defined(WITH_SSL) LIB_DEPENDS+= gnutls.12:${PORTSDIR}/security/gnutls CONFIGURE_ARGS+=--enable-gnutls diff --git a/multimedia/vlc/Makefile b/multimedia/vlc/Makefile index 006800a9f6f6..f424df9ec613 100644 --- a/multimedia/vlc/Makefile +++ b/multimedia/vlc/Makefile @@ -105,6 +105,12 @@ # # WITH_LIBTHEORA=yes # +# WITHOUT_TRANSCODE=yes +# Disable transcode of multimedia via transcode (multimedia/transcode). +# This option allows you to convert a media file, dvd, A/V stream, etc +# in to another format. This also allows you to transcode multimedia +# on-the-fly and stream to a network and/or local playback. +# # Other Knobs: # # DEBUG=yes @@ -526,6 +532,10 @@ CONFIGURE_ARGS+=--enable-sdl CONFIGURE_ARGS+=--disable-sdl .endif +.if !defined(WITHOUT_TRANSCODE) +RUN_DEPENDS+= transcode:${PORTSDIR}/multimedia/transcode +.endif + .if !defined(WITHOUT_HTTPD) && defined(WITH_SSL) LIB_DEPENDS+= gnutls.12:${PORTSDIR}/security/gnutls CONFIGURE_ARGS+=--enable-gnutls |