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.
46 lines
1.2 KiB
Makefile
46 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.51 2018/10/24 14:28:13 sthen Exp $
|
|
|
|
COMMENT= OpenGL widget for GTK+2 GUI toolkit
|
|
|
|
GNOME_PROJECT= gtkglarea
|
|
GNOME_VERSION= 2.0.1
|
|
REVISION= 9
|
|
|
|
SHARED_LIBS += gtkgl-2.0 0.0 # .1.1
|
|
|
|
CATEGORIES= x11 graphics
|
|
|
|
# LGPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += GL GLU X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes
|
|
WANTLIB += Xi Xinerama Xrandr Xrender atk-1.0 cairo expat fontconfig
|
|
WANTLIB += freetype gdk-x11-2.0 gdk_pixbuf-2.0 gio-2.0 glib-2.0
|
|
WANTLIB += gmodule-2.0 gobject-2.0 gtk-x11-2.0 iconv intl m pango-1.0
|
|
WANTLIB += pangocairo-1.0 pangoft2-1.0 pcre pixman-1 png
|
|
WANTLIB += xcb xcb-shm z
|
|
WANTLIB += X11-xcb Xxf86vm drm ffi glapi graphite2 gthread-2.0
|
|
WANTLIB += harfbuzz pthread ${COMPILER_LIBCXX} xcb-dri2 xcb-glx xcb-render
|
|
|
|
COMPILER = base-clang ports-gcc base-gcc
|
|
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MODULES= x11/gnome
|
|
|
|
LIB_DEPENDS= x11/gtk+2
|
|
|
|
SEPARATE_BUILD= Yes
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --with-lib-GL
|
|
|
|
DOC_DIR= ${PREFIX}/share/doc/gtkglarea2
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DOC_DIR}
|
|
${INSTALL_DATA} ${WRKSRC}/docs/HOWTO.txt ${DOC_DIR}
|
|
${INSTALL_DATA} ${WRKSRC}/docs/gdkgl.txt ${DOC_DIR}
|
|
${INSTALL_DATA} ${WRKSRC}/docs/gtkglarea.txt ${DOC_DIR}
|
|
|
|
.include <bsd.port.mk>
|