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.
42 lines
899 B
Makefile
42 lines
899 B
Makefile
# $OpenBSD: Makefile,v 1.11 2018/10/24 14:28:06 sthen Exp $
|
|
|
|
COMMENT = constructive solid geometry rendering library
|
|
|
|
V = 1.3.2
|
|
DISTNAME = OpenCSG-${V}
|
|
PKGNAME = opencsg-${V}
|
|
REVISION = 1
|
|
|
|
SHARED_LIBS = opencsg 0.0
|
|
|
|
CATEGORIES = graphics
|
|
|
|
HOMEPAGE = http://www.opencsg.org/
|
|
|
|
# GPLv2 with CGAL exception
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += GL GLEW lib/qt4/QtGui m ${COMPILER_LIBCXX} pthread
|
|
WANTLIB += ICE SM X11 Xext Xi Xinerama Xrender fontconfig freetype
|
|
|
|
COMPILER = base-clang ports-gcc base-gcc
|
|
|
|
MODULES = devel/qmake x11/qt4
|
|
SEPARATE_BUILD = No
|
|
|
|
LIB_DEPENDS = graphics/glew
|
|
|
|
MASTER_SITES = http://www.opencsg.org/
|
|
|
|
WRKSRC = ${WRKDIST}/src
|
|
|
|
pre-configure:
|
|
${SUBST_CMD} ${WRKSRC}/src.pro
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKDIST}/lib/libopencsg.so.${LIBopencsg_VERSION} \
|
|
${PREFIX}/lib
|
|
${INSTALL_DATA} ${WRKDIST}/include/opencsg.h ${PREFIX}/include
|
|
|
|
.include <bsd.port.mk>
|