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.
59 lines
1.7 KiB
Makefile
59 lines
1.7 KiB
Makefile
# $OpenBSD: Makefile,v 1.58 2018/10/24 14:28:08 sthen Exp $
|
|
|
|
COMMENT= library for reading and writing QuickTime files
|
|
|
|
DISTNAME= libquicktime-1.2.4
|
|
REVISION= 12
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libquicktime/}
|
|
|
|
SHARED_LIBS= quicktime 5.1
|
|
|
|
HOMEPAGE= http://libquicktime.sourceforge.net/
|
|
|
|
# LGPLv2.1+
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += GL ICE SM X11 X11-xcb Xau Xaw Xcomposite Xcursor Xdamage
|
|
WANTLIB += Xdmcp Xext Xfixes Xi Xinerama Xmu Xpm Xrandr Xrender
|
|
WANTLIB += Xt Xv Xxf86vm avcodec avutil c cairo drm dv expat faad
|
|
WANTLIB += ffi fontconfig freetype gdk-x11-2.0 gdk_pixbuf-2.0
|
|
WANTLIB += gio-2.0 glapi glib-2.0 gmodule-2.0 gobject-2.0 graphite2
|
|
WANTLIB += gsm gthread-2.0 gtk-x11-2.0 harfbuzz iconv intl jpeg m mp3lame
|
|
WANTLIB += ogg opus pango-1.0 pangocairo-1.0 pangoft2-1.0 pcre
|
|
WANTLIB += pixman-1 png pthread sndio speex ${COMPILER_LIBCXX}
|
|
WANTLIB += swresample swscale vorbisenc vorbisfile vpx x264 x265
|
|
WANTLIB += xcb xcb-dri2 xcb-glx xcb-render xcb-shm xvidcore z
|
|
WANTLIB += atk-1.0 vorbis
|
|
|
|
COMPILER = base-clang ports-gcc base-gcc
|
|
|
|
LIB_DEPENDS= audio/faad \
|
|
audio/lame \
|
|
audio/libvorbis \
|
|
graphics/ffmpeg>=20100512 \
|
|
graphics/jpeg \
|
|
graphics/png \
|
|
multimedia/libdv \
|
|
multimedia/x264 \
|
|
x11/gtk+2
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --enable-gpl \
|
|
--enable-static \
|
|
--with-libdv \
|
|
--without-alsa \
|
|
--without-faac \
|
|
--without-schroedinger \
|
|
--without-doxygen
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
|
|
ac_cv_lib_ossaudio__oss_ioctl=no \
|
|
ac_cv_header_soundcard_h=no
|
|
|
|
post-install:
|
|
@find ${PREFIX}/lib/libquicktime -name '*.a' -print | xargs rm
|
|
@find ${PREFIX}/lib -name '*.la' -print | xargs rm
|
|
|
|
.include <bsd.port.mk>
|