Changes: http://www.boost.org/users/history/version_1_71_0.html PR: 238827 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D20774
48 lines
1.4 KiB
Makefile
48 lines
1.4 KiB
Makefile
# Created by: Michael Reifenberger <mr@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= openscad
|
|
PORTVERSION= 2019.05.10
|
|
PORTREVISION= 3
|
|
#PORTREVISION= 1
|
|
CATEGORIES= cad
|
|
|
|
MAINTAINER= mr@FreeBSD.org
|
|
COMMENT= Programmer's solid 3D CAD modeller #'
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libzip.so:archivers/libzip \
|
|
libhidapi.so:comms/hidapi \
|
|
libboost_regex.so:devel/boost-libs \
|
|
libqscintilla2_qt5.so:devel/qscintilla2-qt5 \
|
|
libopencsg.so:graphics/opencsg \
|
|
libCGAL.so:math/cgal \
|
|
libgmp.so:math/gmp \
|
|
libmpfr.so:math/mpfr \
|
|
libfreetype.so:print/freetype2 \
|
|
libharfbuzz.so:print/harfbuzz \
|
|
libfontconfig.so:x11-fonts/fontconfig \
|
|
libdouble-conversion.so:devel/double-conversion
|
|
|
|
CONFLICTS= openscad
|
|
|
|
USES= bison compiler:c++11-lib desktop-file-utils eigen:3 gettext \
|
|
pkgconfig qmake qt:5 shared-mime-info
|
|
USE_GITHUB= yes
|
|
USE_GL= gl glu glew
|
|
USE_GNOME= glib20 libxml2
|
|
USE_QT= buildtools_build core concurrent_build dbus gui multimedia widgets
|
|
USE_XORG= x11
|
|
GH_TAGNAME= 0f6d569b57112b79f657a82b0809dc420fbff163
|
|
QMAKE_ARGS= CONFIG+="experimental" VERSION=${PORTVERSION}
|
|
# Avoid overlinking: kvm, procstat, boost(thread, system), Qt5(concurrent, network, printsupport)
|
|
LDFLAGS+= -Wl,--as-needed
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's/-libusb//' ${WRKSRC}/features/hidapi.prf
|
|
@${REINPLACE_CMD} -e 's,share/man,man,' \
|
|
${WRKSRC}/openscad.pro
|
|
|
|
.include <bsd.port.mk>
|