96 lines
2.3 KiB
Makefile
96 lines
2.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.45 2014/11/05 11:43:59 sthen Exp $
|
|
|
|
COMMENT= free video editor
|
|
|
|
V= 2.4.4
|
|
DISTNAME= avidemux_${V}
|
|
PKGNAME= avidemux-${V}
|
|
|
|
REVISION= 16
|
|
|
|
CATEGORIES= multimedia
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=avidemux/}
|
|
|
|
HOMEPAGE= http://fixounet.free.fr/avidemux/
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= yes
|
|
|
|
WANTLIB += X11 Xcomposite Xcursor Xdamage Xext Xfixes
|
|
WANTLIB += Xi Xinerama Xrandr Xrender Xv atk-1.0 c cairo
|
|
WANTLIB += expat fontconfig freetype gio-2.0 glib-2.0 gmodule-2.0
|
|
WANTLIB += gobject-2.0 gthread-2.0 m ogg pango-1.0 pangocairo-1.0
|
|
WANTLIB += pangoft2-1.0 pcre pixman-1 png pthread pthread-stubs sndio
|
|
WANTLIB += stdc++ xcb xcb-render xcb-shm z gdk_pixbuf-2.0 gdk-x11-2.0
|
|
WANTLIB += gtk-x11-2.0 faad mp3lame vorbis vorbisenc xml2 xvidcore
|
|
WANTLIB += ffi harfbuzz graphite2 lzma
|
|
|
|
MODULES= devel/gettext
|
|
|
|
RUN_DEPENDS = devel/desktop-file-utils
|
|
BUILD_DEPENDS= ${MODGNU_AUTOCONF_DEPENDS} \
|
|
${MODGNU_AUTOMAKE_DEPENDS}
|
|
LIB_DEPENDS= x11/gtk+2 \
|
|
audio/faad>=2.7 \
|
|
audio/lame \
|
|
audio/libvorbis \
|
|
textproc/libxml \
|
|
multimedia/xvidcore \
|
|
multimedia/x264
|
|
|
|
USE_GMAKE= Yes
|
|
|
|
AUTOCONF_VERSION=2.60
|
|
AUTOMAKE_VERSION=1.9
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
PIE_CFLAGS = -fno-pie
|
|
PIE_LDFLAGS = -nopie
|
|
.endif
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ENV+= CFLAGS="${PIE_CFLAGS} ${CFLAGS}" \
|
|
CXXFLAGS="${PIE_CFLAGS} ${CXXFLAGS}" \
|
|
CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
|
LDFLAGS="${PIE_LDFLAGS} -L${LOCALBASE}/lib -logg -lm -lz"
|
|
CONFIGURE_ARGS+=${CONFIGURE_SHARED} \
|
|
--enable-xv \
|
|
--with-x \
|
|
--with-freetype2 \
|
|
--with-lame \
|
|
--with-fontconfig \
|
|
--with-faad2 \
|
|
--without-libsdl \
|
|
--without-oss \
|
|
--without-esd \
|
|
--without-arts \
|
|
--without-faac \
|
|
--without-libdca \
|
|
--without-newfaad \
|
|
--without-aften \
|
|
--without-qt-dir \
|
|
--without-qt-includes \
|
|
--without-gpt \
|
|
--disable-ssse3 \
|
|
--disable-altivec
|
|
|
|
post-patch:
|
|
@cd ${WRKSRC} && env \
|
|
AUTOCONF_VERSION=${AUTOCONF_VERSION} \
|
|
AUTOMAKE_VERSION=${AUTOMAKE_VERSION} \
|
|
${MAKE_PROGRAM} -f Makefile.dist
|
|
|
|
pre-build:
|
|
@cp ${FILESDIR}/ADM_devicesndio.{cpp,h} ${WRKSRC}/avidemux/ADM_audiodevice/
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/applications
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/pixmaps
|
|
${INSTALL_DATA} ${WRKSRC}/avidemux2.desktop \
|
|
${PREFIX}/share/applications
|
|
${INSTALL_DATA} ${WRKSRC}/avidemux_icon.png \
|
|
${PREFIX}/share/pixmaps/avidemux.png
|
|
|
|
.include <bsd.port.mk>
|