mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
60945f0277
the 32 ports that still use it. Bump PORTREVISION on their dependent ports except the ones that depend on these: audio/libogg audio/libvorbis devel/pcre ftp/curl graphics/jpeg graphics/libart_lgpl graphics/tiff textproc/expat2 textproc/libxslt In these cases the same trick as in the recent gettext update is used. The ports install a symlink with the old library version. When enough of their dependent ports have had regular updates the remaining ones can get a PORTREVISION bump and the links can be removed. Also remove the devel/pcre dependency from USE_GNOME=glib20. It causes over 2200 packages to depend on devel/pcre while less than 200 actually link with it. The glib20 package still depends on devel/pcre so this should not make a difference for ports with USE_GNOME=glib20. Also, libdata/pkgconfig/glib-2.0.pc lists pcre as a private library so USE_GNOME=glib20 should not propagate it. PR: 195724 Exp-run by: antoine Approved by: portmgr (antoine)
139 lines
3.9 KiB
Makefile
139 lines
3.9 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= mlt
|
|
PORTVERSION= 0.9.2
|
|
PORTREVISION?= 1
|
|
CATEGORIES?= multimedia
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}
|
|
|
|
MAINTAINER?= avilla@FreeBSD.org
|
|
COMMENT?= Multimedia framework for TV broadcasting
|
|
|
|
LICENSE?= GPLv2 GPLv3 LGPL21
|
|
LICENSE_COMB?= multi
|
|
|
|
SLAVE_PORT?= no
|
|
|
|
.if ${SLAVE_PORT} == "no"
|
|
|
|
# They both install bin/melt.
|
|
CONFLICTS_INSTALL= freeze-[0-9]*
|
|
|
|
USE_GNOME= libxml2
|
|
USE_SDL= image
|
|
USES= alias gmake iconv pathfix pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-gpl --enable-gpl3 --target-os=FreeBSD
|
|
USE_LDCONFIG= yes
|
|
|
|
.ifndef(WITH_DEBUG)
|
|
CONFIGURE_ARGS+=--disable-debug
|
|
.else
|
|
CONFIGURE_ARGS+=--enable-debug
|
|
.endif
|
|
|
|
PLIST_SUB= PORTVERSION="${PORTVERSION}"
|
|
|
|
PORTDOCS= AUTHORS ChangeLog NEWS README docs
|
|
PORTEXAMPLES= demo
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES FFMPEG FREI0R GTK2 JACK KDE4 QT4 \
|
|
SAMPLERATE SOX SWFDEC VDPAU VIDSTAB
|
|
OPTIONS_DEFAULT=FFMPEG FREI0R GTK2 QT4 SAMPLERATE SOX SWFDEC VIDSTAB
|
|
OPTIONS_SUB= yes
|
|
|
|
GTK2_DESC= Images and text rendering via GTK+ 2
|
|
KDE4_DESC= Qt extra image formats support
|
|
QT4_DESC= Kdenlive titles and images support via Qt 4
|
|
SOX_DESC= SoX audio effects support
|
|
VIDSTAB_DESC= Video stabilization support via Vid.Stab
|
|
|
|
FFMPEG_SUFX= # Currently empty.
|
|
FFMPEG_LIB_DEPENDS= libavformat${FFMPEG_SUFX}.so:${PORTSDIR}/multimedia/ffmpeg${FFMPEG_SUFX}
|
|
FFMPEG_CONFIGURE_ENABLE=avformat
|
|
FFMPEG_CONFIGURE_ON= --avformat-suffix="${FFMPEG_SUFX}"
|
|
|
|
FREI0R_BUILD_DEPENDS= ${LOCALBASE}/include/frei0r.h:${PORTSDIR}/graphics/frei0r
|
|
FREI0R_CONFIGURE_ENABLE=frei0r
|
|
|
|
GTK2_LIB_DEPENDS= libexif.so:${PORTSDIR}/graphics/libexif
|
|
GTK2_USE= GNOME=gdkpixbuf2,gtk20,pango
|
|
GTK2_CONFIGURE_ENABLE= gtk2
|
|
|
|
JACK_LIB_DEPENDS= libjack.so:${PORTSDIR}/audio/jack
|
|
JACK_BUILD_DEPENDS= ${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa
|
|
JACK_CONFIGURE_ENABLE= jackrack
|
|
|
|
KDE4_CONFIGURE_ENV= PATH="${KDE4_PREFIX}/bin:$$PATH"
|
|
KDE4_CONFIGURE_WITH= kde
|
|
|
|
QT4_LIB_DEPENDS= libexif.so:${PORTSDIR}/graphics/libexif
|
|
QT4_USE= QT4=corelib,gui,opengl,svg,xml
|
|
QT4_CONFIGURE_ENABLE= qt
|
|
QT4_CONFIGURE_ON= --qt-libdir="${QT_LIBDIR}" \
|
|
--qt-includedir="${QT_INCDIR}"
|
|
|
|
SAMPLERATE_LIB_DEPENDS= libsamplerate.so:${PORTSDIR}/audio/libsamplerate
|
|
SAMPLERATE_CONFIGURE_ENABLE=resample
|
|
|
|
SOX_LIB_DEPENDS= libsox.so:${PORTSDIR}/audio/sox
|
|
SOX_CONFIGURE_ENABLE= sox
|
|
|
|
SWFDEC_LIB_DEPENDS= libswfdec-0.8.so:${PORTSDIR}/graphics/swfdec
|
|
SWFDEC_CONFIGURE_ENABLE=swfdec
|
|
|
|
VDPAU_CONFIGURE_ON= --avformat-vdpau
|
|
VDPAU_CONFIGURE_OFF= --avformat-no-vdpau
|
|
|
|
VIDSTAB_LIB_DEPENDS= libvidstab.so:${PORTSDIR}/multimedia/vid.stab
|
|
VIDSTAB_CONFIGURE_ENABLE=vid.stab
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${ARCH} == "sparc64"
|
|
BROKEN= does not compile on sparc64 (invokes i386 asm)
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MKDE4} && ${PORT_OPTIONS:MQT4}
|
|
USE_KDE4+= kdelibs
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MVDPAU} && ${PORT_OPTIONS:MFFMPEG}
|
|
USE_XORG+= x11
|
|
.endif
|
|
|
|
pre-configure:
|
|
@${REINPLACE_CMD} -e 's,/usr/local,${LOCALBASE},' \
|
|
${WRKSRC}/src/modules/avformat/vdpau.c \
|
|
${WRKSRC}/src/modules/frei0r/factory.c \
|
|
${WRKSRC}/src/modules/jackrack/plugin_mgr.c
|
|
@${REINPLACE_CMD} -e 's,-lpthread,-pthread,' \
|
|
-e 's,-liconv,${ICONV_LIB},' \
|
|
${WRKSRC}/src/framework/Makefile \
|
|
${WRKSRC}/src/melt/Makefile \
|
|
${WRKSRC}/src/modules/*/Makefile
|
|
@${REINPLACE_CMD} -e 's,$$(libdir)/pkgconfig,${PREFIX}/libdata/pkgconfig,' \
|
|
${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/docs/melt.1 ${STAGEDIR}${MANPREFIX}/man/man1/melt.1
|
|
@${RM} -f ${WRKSRC}/docs/melt.1
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
. for f in ${PORTDOCS}
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} ${f} ${STAGEDIR}${DOCSDIR}
|
|
. endfor
|
|
.endif
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
. for f in ${PORTEXAMPLES}
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} ${f} ${STAGEDIR}${EXAMPLESDIR}
|
|
. endfor
|
|
.endif
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/melt
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmlt.so.${PORTVERSION}
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmlt++.so.${PORTVERSION}
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/mlt/*
|
|
|
|
.endif # ${SLAVE_PORT} == "no"
|
|
|
|
.include <bsd.port.mk>
|