diff options
author | Michael Johnson <ahze@FreeBSD.org> | 2004-12-30 02:27:19 +0000 |
---|---|---|
committer | Michael Johnson <ahze@FreeBSD.org> | 2004-12-30 02:27:19 +0000 |
commit | 8b668b1861468f94e9983301642f0f49aa64ae5e (patch) | |
tree | 6fcfd6e2485d311f2e9e6c0c38a6ae3d5301921f /multimedia/vlc | |
parent | fd3a1b0a305e87649dfa63141807c7c11737ccb0 (diff) | |
download | ports-8b668b1861468f94e9983301642f0f49aa64ae5e.tar.gz ports-8b668b1861468f94e9983301642f0f49aa64ae5e.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.
Notes
Notes:
svn path=/head/; revision=125496
Diffstat (limited to 'multimedia/vlc')
-rw-r--r-- | multimedia/vlc/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
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 |