b0378afecd
/wrkdirs/usr/ports/multimedia/avidemux-plugins/work/avidemux_2.6.11/avidemux_plugins/ADM_demuxers/MpegTS/dmxTSPacket.cpp: In member function 'bool tsPacket::decodePesHeader(TS_PESpacket*)': /wrkdirs/usr/ports/multimedia/avidemux-plugins/work/avidemux_2.6.11/avidemux_plugins/ADM_demuxers/MpegTS/dmxTSPacket.cpp:436:49: error: unable to find string literal operator 'operator""x' with 'const char [30]', 'long unsigned int' arguments #define fail(x) {printf("[Ts Demuxer]*********"x"*******\n");return false;} Reported by: pkg-fallout MFH: 2017Q4
44 lines
1.4 KiB
Makefile
44 lines
1.4 KiB
Makefile
# Created by: Anish Mistry (with help from mean)
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= avidemux
|
|
PORTVERSION= ${AVIDEMUX_VERSION}
|
|
CATEGORIES= multimedia
|
|
PKGNAMESUFFIX= -plugins
|
|
|
|
MAINTAINER= multimedia@FreeBSD.org
|
|
COMMENT= Simple GUI based video editor (Plugins)
|
|
|
|
LIB_DEPENDS= libADM6avutil.so.54:multimedia/avidemux
|
|
|
|
BROKEN= fails to build
|
|
|
|
MASTERDIR= ${.CURDIR}/../avidemux
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
|
|
.include "${MASTERDIR}/Makefile.common"
|
|
|
|
CMAKE_SOURCE_PATH= ${WRKSRC}/avidemux_plugins
|
|
|
|
#CMAKE_ARGS+= -DAVIDEMUX_SOURCE_DIR=${WRKSRC} -DAVIDEMUX_INSTALL_PREFIX:PATH="${PREFIX}" -DAVIDEMUX_CORECONFIG_DIR=${CONFIGURE_WRKSRC}/config
|
|
CMAKE_ARGS+= -DAVIDEMUX_SOURCE_DIR=${WRKSRC} -DAVIDEMUX_INSTALL_PREFIX:PATH="${PREFIX}"
|
|
CMAKE_ARGS+= -DPLUGIN_UI=ALL
|
|
|
|
.if ${PORT_OPTIONS:MCLI}
|
|
BUILD_DEPENDS+= ${LOCALBASE}/include/avidemux/2.6/cli/config.h:multimedia/avidemux-cli
|
|
RUN_DEPENDS+= ${LOCALBASE}/include/avidemux/2.6/cli/config.h:multimedia/avidemux-cli
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MQT4}
|
|
BUILD_DEPENDS+= ${LOCALBASE}/include/avidemux/2.6/qt4/config.h:multimedia/avidemux-qt4
|
|
RUN_DEPENDS+= ${LOCALBASE}/include/avidemux/2.6/qt4/config.h:multimedia/avidemux-qt4
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGTK3}
|
|
BUILD_DEPENDS+= ${LOCALBASE}/include/avidemux/2.6/gtk/config.h:multimedia/avidemux-gtk
|
|
RUN_DEPENDS+= ${LOCALBASE}/include/avidemux/2.6/gtk/config.h:multimedia/avidemux-gtk
|
|
.endif
|
|
|
|
post-configure: post-configure-common
|
|
|
|
.include <bsd.port.post.mk>
|