diff options
Diffstat (limited to 'cad/meshlab/Makefile')
-rw-r--r-- | cad/meshlab/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/cad/meshlab/Makefile b/cad/meshlab/Makefile index a4586ff01716..4f98c1d1d2c6 100644 --- a/cad/meshlab/Makefile +++ b/cad/meshlab/Makefile @@ -7,22 +7,24 @@ # PORTNAME= meshlab -PORTVERSION= 1.2.3 -PORTREVISION= 2 +DISTVERSION= 1.3.0 CATEGORIES= cad MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/MeshLab%20v${PORTVERSION}/ -DISTNAME= MeshLabSrc_AllInc_v123a +DISTNAME= MeshLabSrc_AllInc_v${PORTVERSION:S/.//g} EXTRACT_SUFX= .tgz MAINTAINER= gahr@FreeBSD.org COMMENT= A tool for processing and editing 3D triangular meshes +LIB_DEPENDS= QtSolutions_SOAP-head:${PORTSDIR}/devel/qt4-qtsolutions-soap + USE_GL= glew glu USE_QT4= qmake corelib gui xml opengl network moc uic rcc +MAKE_ENV+= CXX=clang++ USE_LDCONFIG= yes -WRKSRC= ${WRKDIR}/${DISTNAME}/meshlab/src +WRKSRC= ${WRKDIR}/${PORTNAME}/src post-patch: ${FIND} ${WRKSRC} -name "*.pro" | ${XARGS} ${REINPLACE_CMD} -e 's|^linux-g++|freebsd-g++|' @@ -31,7 +33,7 @@ post-patch: do-configure: cd ${WRKSRC}/external && ${QMAKE} -recursive external.pro - cd ${WRKSRC} && ${QMAKE} -recursive meshlabv12.pro + cd ${WRKSRC} && ${QMAKE} -recursive meshlab_full.pro do-build: cd ${WRKSRC}/external && ${MAKE} |