diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2015-07-13 00:09:06 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2015-07-13 00:09:06 +0800 |
commit | 4f14fafaf957fd2c7f22a60740715ba9294ee5a8 (patch) | |
tree | caeca8a3f963bbf7ec4d706c49224b41820d3bc8 /multimedia/libav | |
parent | e2d9269afe33ce425a8fc6f182a23b09825e8327 (diff) | |
download | freebsd-ports-gnome-4f14fafaf957fd2c7f22a60740715ba9294ee5a8.tar.gz freebsd-ports-gnome-4f14fafaf957fd2c7f22a60740715ba9294ee5a8.tar.zst freebsd-ports-gnome-4f14fafaf957fd2c7f22a60740715ba9294ee5a8.zip |
- Use = instead of +=
- Convert to new options helper
- Convert to new options target helper
Diffstat (limited to 'multimedia/libav')
-rw-r--r-- | multimedia/libav/Makefile | 46 |
1 files changed, 18 insertions, 28 deletions
diff --git a/multimedia/libav/Makefile b/multimedia/libav/Makefile index bad344924546..5b2ae051ebe6 100644 --- a/multimedia/libav/Makefile +++ b/multimedia/libav/Makefile @@ -18,27 +18,26 @@ WANT_SDL= yes USE_PERL5= build CPPFLAGS+= -I${LOCALBASE}/include -CONFIGURE_ARGS+= --prefix="${PREFIX}" \ - --libdir="${PREFIX}/lib/${PORTNAME}" \ - --shlibdir="${PREFIX}/lib/${PORTNAME}" \ - --incdir="${PREFIX}/include/${PORTNAME}" \ - --mandir="${PREFIX}/man" \ - --datadir="${DATADIR}" \ - --extra-ldflags="-L${LOCALBASE}/lib" \ - --enable-pthreads \ - --enable-shared \ - --enable-runtime-cpudetect \ - --disable-debug \ - --cc="${CC}" +CONFIGURE_ARGS= --prefix="${PREFIX}" \ + --libdir="${PREFIX}/lib/${PORTNAME}" \ + --shlibdir="${PREFIX}/lib/${PORTNAME}" \ + --incdir="${PREFIX}/include/${PORTNAME}" \ + --mandir="${PREFIX}/man" \ + --datadir="${DATADIR}" \ + --extra-ldflags="-L${LOCALBASE}/lib" \ + --enable-pthreads \ + --enable-shared \ + --enable-runtime-cpudetect \ + --disable-debug \ + --cc="${CC}" OPTIONS_DEFINE= ALSA AMR_NB AMR_WB BZIP2 CDIO FAAC FDK_AAC DOCS FREETYPE \ FREI0R GNUTLS GSM ILBC JACK LAME OPENCV OPENJPEG OPENSSL \ OPUS PULSEAUDIO RTMP SCHROEDINGER SPEEX THEORA V4L VAAPI \ VDPAU VO_AACENC VO_AMRWBENC VORBIS VPX WAVPACK WEBP X11GRAB \ X264 XVID ZLIB - -OPTIONS_DEFAULT= BZIP2 FREETYPE FREI0R GNUTLS OPENCV SCHROEDINGER \ - THEORA VO_AACENC VORBIS VPX X264 XVID ZLIB +OPTIONS_DEFAULT=BZIP2 FREETYPE FREI0R GNUTLS OPENCV SCHROEDINGER \ + THEORA VO_AACENC VORBIS VPX X264 XVID ZLIB FDK_AAC_DESC= AAC audio encoding via Fraunhofer FDK ILBC_DESC= iLBC en/decoding via libilbc @@ -64,6 +63,8 @@ CDIO_CONFIGURE_ENABLE= libcdio # DC1394_LIB_DEPENDS= libdc1394.so:${PORTSDIR}/multimedia/libdc1394 # DC1394_CONFIGURE_ENABLE= libdc1394 +DOCS_BUILD_DEPENDS= texi2html:${PORTSDIR}/textproc/texi2html + FREI0R_BUILD_DEPENDS= ${LOCALBASE}/include/frei0r.h:${PORTSDIR}/graphics/frei0r FREI0R_CONFIGURE_ENABLE= frei0r @@ -99,6 +100,7 @@ OPENJPEG_LIB_DEPENDS= libopenjpeg.so:${PORTSDIR}/graphics/openjpeg15 OPENJPEG_CONFIGURE_ENABLE= libopenjpeg OPENSSL_CONFIGURE_ENABLE= openssl +OPENSSL_USE= OPENSSL=yes OPUS_LIB_DEPENDS= libopus.so:${PORTSDIR}/audio/opus OPUS_CONFIGURE_ENABLE= libopus @@ -156,16 +158,6 @@ XVID_CONFIGURE_ENABLE= libxvid ZLIB_CONFIGURE_ENABLE= zlib -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MDOCS} -BUILD_DEPENDS+= texi2html:${PORTSDIR}/textproc/texi2html -.endif - -.if ${PORT_OPTIONS:MOPENSSL} -USE_OPENSSL= yes -.endif - .include <bsd.port.pre.mk> .if ${ARCH} == "armv6" @@ -230,10 +222,8 @@ post-patch: @${REINPLACE_CMD} -e 's|$$(LIBDIR)/pkgconfig|${STAGEDIR}${PREFIX}/libdata/pkgconfig|' \ ${WRKSRC}/library.mak -post-configure: -.if !${PORT_OPTIONS:MDOCS} +post-configure-DOCS-off: @${REINPLACE_CMD} -e 's|CONFIG_TEXI2HTML=yes|!CONFIG_TEXI2HTML=yes|' ${WRKSRC}/config.mak -.endif post-stage: .for a in bin/avconv bin/avprobe lib/libav/libavdevice.so.55.0.0\ |