4f12f3b178
- Split x264 into two ports: the CLI application (x264), and the library (libx264). This will allow x264 to use lavf and friends from ffmpeg for decoding and demuxing while preventing a circular dependency between the two: x264 can depend on ffmpeg, but ffmpeg will depend on libx264 rather than x264. - Add the LAVF option to the CLI port, making the dependency on ffmpeg optional. - Update to 0.142.2455. - Amend fixes to local patches so that they can apply to the new upstream files. - Provide the git revision and other version information to the build environment, allowing the CLI binary to display this information (like the Windows builds). - Remove unsupported build options (X11_OUTPUT). - Ensure that the library and CLI ports each have the appropriate options. - Add notes for future contributors who wish to update the ports. - Bump PORTREVISION for all dependent ports. PR: 187805 Differential Revision: https://reviews.freebsd.org/D1159 Submitted by: Andrew Berg <aberg010@my.hennepintech.edu> Approved by: koobs (maintainer, mentor)
156 lines
4.9 KiB
Makefile
156 lines
4.9 KiB
Makefile
# Created by: Hendrik Scholz <hendrik@scholz.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= transcode
|
|
PORTVERSION= 1.1.7
|
|
PORTREVISION= 19
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= http://cdn.bitbucket.org/france/transcode-tcforge/downloads/
|
|
|
|
MAINTAINER= cyberbotx@cyberbotx.com
|
|
COMMENT= Text-console utility for video stream processing
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg
|
|
|
|
USE_LDCONFIG= yes
|
|
USES= gmake libtool pkgconfig tar:bzip2
|
|
USE_GCC= any
|
|
WANT_SDL= yes
|
|
WANT_GNOME= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-oss
|
|
CPPFLAGS+= -isystem ${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
INSTALL_TARGET= install-strip
|
|
|
|
NO_OPTIONS_SORT= yes
|
|
OPTIONS_DEFINE= DOCS OPTIMIZED_CFLAGS X11 MPEG2 BKTR POSTPROC FREETYPE LAME \
|
|
XVID X264 OGG VORBIS THEORA DVDREAD DV QUICKTIME LZO A52 \
|
|
FAAC LIBXML2 MJPEGTOOLS SDL IMAGEMAGICK JPEG ICONV V4L
|
|
OPTIONS_DEFAULT= LAME DVDREAD JPEG ICONV
|
|
BKTR_DESC= Bktr capture card support
|
|
POSTPROC_DESC= Libpostproc support
|
|
DVDREAD_DESC= Libdvdread support
|
|
LZO_DESC= LZO compression support
|
|
|
|
X11_USE= xorg=xv,xaw,xpm
|
|
X11_CONFIGURE_WITH= x
|
|
|
|
MPEG2_LIB_DEPENDS= libmpeg2.so:${PORTSDIR}/multimedia/libmpeg2
|
|
MPEG2_CONFIGURE_ENABLE= libmpeg2 libmpeg2convert
|
|
|
|
BKTR_CONFIGURE_ENABLE= bktr
|
|
|
|
POSTPROC_CONFIGURE_ENABLE= libpostproc
|
|
|
|
FREETYPE_LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2
|
|
FREETYPE_CONFIGURE_ENABLE= freetype2
|
|
|
|
LAME_LIB_DEPENDS= libmp3lame.so:${PORTSDIR}/audio/lame
|
|
LAME_CONFIGURE_ENABLE= lame
|
|
LAME_CONFIGURE_ON= --with-lame-prefix=${LOCALBASE}
|
|
|
|
XVID_LIB_DEPENDS= libxvidcore.so:${PORTSDIR}/multimedia/xvid
|
|
XVID_CONFIGURE_ENABLE= xvid
|
|
XVID_CONFIGURE_ON= --with-xvid-prefix=${LOCALBASE}
|
|
|
|
X264_LIB_DEPENDS= libx264.so:${PORTSDIR}/multimedia/libx264
|
|
X264_CONFIGURE_ENABLE= x264
|
|
|
|
OGG_LIB_DEPENDS= libogg.so:${PORTSDIR}/audio/libogg
|
|
OGG_CONFIGURE_ENABLE= ogg
|
|
|
|
VORBIS_LIB_DEPENDS= libvorbis.so:${PORTSDIR}/audio/libvorbis
|
|
VORBIS_CONFIGURE_ENABLE= vorbis
|
|
|
|
THEORA_LIB_DEPENDS= libtheora.so:${PORTSDIR}/multimedia/libtheora
|
|
THEORA_CONFIGURE_ENABLE= theora
|
|
|
|
DVDREAD_LIB_DEPENDS= libdvdread.so:${PORTSDIR}/multimedia/libdvdread
|
|
DVDREAD_CONFIGURE_ENABLE= libdvdread
|
|
DVDREAD_CONFIGURE_ON= --with-libdvdread-prefix=${LOCALBASE}
|
|
|
|
DV_LIB_DEPENDS= libdv.so:${PORTSDIR}/multimedia/libdv
|
|
DV_CONFIGURE_ENABLE= libdv
|
|
|
|
QUICKTIME_LIB_DEPENDS= libquicktime.so:${PORTSDIR}/multimedia/libquicktime
|
|
QUICKTIME_CONFIGURE_ENABLE= libquicktime
|
|
|
|
LZO_LIB_DEPENDS= liblzo2.so:${PORTSDIR}/archivers/lzo2
|
|
LZO_CONFIGURE_ENABLE= lzo
|
|
LZO_CONFIGURE_ON= --with-lzo-prefix=${LOCALBASE} --with-lzo-includes=${LOCALBASE}
|
|
|
|
A52_LIB_DEPENDS= liba52.so:${PORTSDIR}/audio/liba52
|
|
A52_CONFIGURE_ENABLE= a52
|
|
A52_CONFIGURE_ON= --with-a52-prefix=${LOCALBASE}
|
|
|
|
FAAC_LIB_DEPENDS= libfaac.so:${PORTSDIR}/audio/faac
|
|
FAAC_CONFIGURE_ENABLE= faac
|
|
FAAC_CONFIGURE_ON= --with-faac-prefix=${LOCALBASE}
|
|
|
|
LIBXML2_USE= GNOME=libxml2
|
|
LIBXML2_CONFIGURE_ENABLE= libxml2
|
|
|
|
MJPEGTOOLS_LIB_DEPENDS= liblavjpeg.so:${PORTSDIR}/multimedia/mjpegtools
|
|
MJPEGTOOLS_CONFIGURE_ENABLE= mjpegtools
|
|
|
|
SDL_USE= SDL=sdl
|
|
SDL_CONFIGURE_ENABLE= sdl
|
|
SDL_CONFIGURE_ENV_ON= SDL_CONFIG="${SDL_CONFIG}"
|
|
|
|
IMAGEMAGICK_LIB_DEPENDS= libMagickWand-6.Q16.so:${PORTSDIR}/graphics/ImageMagick
|
|
IMAGEMAGICK_CONFIGURE_ENABLE= imagemagick
|
|
IMAGEMAGICK_CONFIGURE_ON= --with-imagemagick-prefix=${LOCALBASE}
|
|
|
|
JPEG_LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg
|
|
JPEG_CONFIGURE_ENABLE= libjpeg
|
|
JPEG_CONFIGURE_ON= --with-libjpeg-prefix=${LOCALBASE}
|
|
|
|
ICONV_USES= iconv
|
|
ICONV_CONFIGURE_ENABLE= iconv
|
|
ICONV_CONFIGURE_ON= ${ICONV_CONFIGURE_ARG}
|
|
|
|
V4L_BUILD_DEPENDS= ${LOCALBASE}/include/linux/videodev2.h:${PORTSDIR}/multimedia/v4l_compat
|
|
V4L_CONFIGURE_ENABLE= v4l
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-extract:
|
|
@${RM} ${WRKSRC}/import/v4l/videodev*
|
|
|
|
post-patch:
|
|
.if ${PORT_OPTIONS:MLZO}
|
|
@${REINPLACE_CMD} -e 's|%%NUV%%|nuv|' ${WRKSRC}/import/Makefile.in
|
|
.else
|
|
@${REINPLACE_CMD} -e 's|%%NUV%%||' ${WRKSRC}/import/Makefile.in
|
|
.endif
|
|
.if !${PORT_OPTIONS:MOPTIMIZED_CFLAGS}
|
|
@${FIND} ${WRKSRC} -type f | ${XARGS} -n 10 -x ${REINPLACE_CMD} \
|
|
-e 's|-O[236]|${CFLAGS}|'
|
|
.endif
|
|
@${REINPLACE_CMD} -E -e 's|loff_t|uint64_t|' ${WRKSRC}/avilib/avidump.c
|
|
@${REINPLACE_CMD} -E -e 's|<SDL/|<|' ${WRKSRC}/filter/preview/display.h
|
|
@${REINPLACE_CMD} -e '/^static.*lrint/s|static ||' ${WRKSRC}/filter/filter_modfps.c
|
|
|
|
@${REINPLACE_CMD} -E -e 's|(-la52)|\1 ${LIBA52_DEP_LIBS}|g ; \
|
|
s|FFMPEG_VERSION|LIBAVCODEC_IDENT|g ; \
|
|
s|-lMagick|-lMagickCore|g' \
|
|
${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
|
|
|
|
@${REINPLACE_CMD} -E -e 's|-ldl||g' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -E -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -E -e 's|WRKSRC|${WRKSRC}|g' ${WRKSRC}/export/Makefile.in
|
|
@${REINPLACE_CMD} -E -e 's|<quicktime/|<lqt/|g' \
|
|
${WRKSRC}/configure \
|
|
${WRKSRC}/export/export_mov.c \
|
|
${WRKSRC}/import/decode_mov.c \
|
|
${WRKSRC}/import/import_mov.c \
|
|
${WRKSRC}/import/probe_mov.c
|
|
|
|
post-stage:
|
|
@(cd ${STAGEDIR}${PREFIX} && \
|
|
${FIND} -s lib/transcode -type f -or -type l >> ${TMPPLIST})
|
|
|
|
.include <bsd.port.mk>
|