openbsd-ports/multimedia/mjpegtools/Makefile
sthen 25f0e460f2 Add COMPILER lines to c++ ports which currently use the default. Adjust
some existing COMPILER lines with arch restrictions etc. In the usual
case this is now using "COMPILER = base-clang ports-gcc base-gcc" on
ports with c++ libraries in WANTLIB.

This is basically intended to be a noop on architectures using clang
as the system compiler, but help with other architectures where we
currently have many ports knocked out due to building with an unsuitable
compiler -

- some ports require c++11/newer so the GCC version in base that is used
on these archirtectures is too old.

- some ports have conflicts where an executable is built with one compiler
(e.g. gcc from base) but a library dependency is built with a different
one (e.g. gcc from ports), resulted in mixing incompatible libraries in the
same address space.

devel/gmp is intentionally skipped as it's on the path to building gcc -
the c++ library there is unused in ports (and not built by default upstream)
so intending to disable building gmpcxx in a future commit.
2018-10-24 14:27:57 +00:00

62 lines
1.5 KiB
Makefile

# $OpenBSD: Makefile,v 1.46 2018/10/24 14:28:08 sthen Exp $
COMMENT= tools to edit/modify/encode video streams
DISTNAME= mjpegtools-2.0.0
REVISION= 9
CATEGORIES= multimedia
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mjpeg/}
SHARED_LIBS= lavfile 5.0 \
lavjpeg 5.0 \
lavplay 5.0 \
mjpegutils 5.0 \
mpeg2encpp 6.0 \
mplex2 6.0 \
HOMEPAGE= http://mjpeg.sourceforge.net/
# GPLv2+
PERMIT_PACKAGE_CDROM= Yes
WANTLIB += SDL SDL_gfx X11 Xcomposite Xcursor Xdamage Xext Xfixes
WANTLIB += Xi Xinerama Xrandr Xrender atk-1.0 c cairo dv expat
WANTLIB += ffi fontconfig freetype gdk-x11-2.0 gdk_pixbuf-2.0
WANTLIB += gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0 graphite2
WANTLIB += gthread-2.0 gtk-x11-2.0 harfbuzz iconv intl jpeg m pango-1.0
WANTLIB += pangocairo-1.0 pangoft2-1.0 pcre pixman-1 png pthread
WANTLIB += sndio usbhid xcb xcb-render xcb-shm z
WANTLIB += ${COMPILER_LIBCXX}
COMPILER = base-clang ports-gcc base-gcc
LIB_DEPENDS= devel/sdl \
devel/sdl-gfx \
graphics/jpeg \
graphics/png \
multimedia/libdv \
x11/gtk+2
CONFIGURE_STYLE= autoconf
AUTOCONF_VERSION= 2.68
CONFIGURE_ARGS+= --with-x \
--without-v4l
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
FLAVORS= quicktime optimized
FLAVOR?=
.if !${FLAVOR:Moptimized}
CONFIGURE_ARGS+= --disable-simd-accel
.endif
.if ${FLAVOR:Mquicktime}
LIB_DEPENDS += multimedia/libquicktime
WANTLIB+= quicktime>=2
.else
CONFIGURE_ARGS += --without-libquicktime
.endif
.include <bsd.port.mk>