diff options
author | Pietro Cerutti <gahr@FreeBSD.org> | 2014-02-14 14:00:04 +0000 |
---|---|---|
committer | Pietro Cerutti <gahr@FreeBSD.org> | 2014-02-14 14:00:04 +0000 |
commit | a021f2cad5e80974c7b6e02a8b141c2585f88f20 (patch) | |
tree | 55b47f6b487167edff1807fea95830af40a0858f /x11-toolkits | |
parent | f40e8a010d2af803a80f9534a9449e4a399b0d34 (diff) | |
download | ports-a021f2cad5e80974c7b6e02a8b141c2585f88f20.tar.gz ports-a021f2cad5e80974c7b6e02a8b141c2585f88f20.zip |
Notes
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/vtkfox/Makefile | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/x11-toolkits/vtkfox/Makefile b/x11-toolkits/vtkfox/Makefile index 4e98a11245f8..c865fb461612 100644 --- a/x11-toolkits/vtkfox/Makefile +++ b/x11-toolkits/vtkfox/Makefile @@ -10,8 +10,9 @@ MASTER_SITES= http://www.gahr.ch/vtkfox/ MAINTAINER= gahr@FreeBSD.org COMMENT= FOX/VTK Widget and Interactor -LIB_DEPENDS= vtkCommon.5:${PORTSDIR}/math/vtk5 +LIB_DEPENDS= libvtkCommon.so.5:${PORTSDIR}/math/vtk5 +OPTIONS_DEFINE= EXAMPLES OPTIONS_SINGLE= FOX OPTIONS_SINGLE_FOX= FOX16 FOX17 FOX16_DESC= Link against FOX-1.6 @@ -22,20 +23,21 @@ USE_GITHUB= yes GH_ACCOUNT= gahr GH_COMMIT= 378836c -NO_STAGE= yes .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MFOX16} -LIB_DEPENDS+= FOX-1.6:${PORTSDIR}/x11-toolkits/fox16 +LIB_DEPENDS+= libFOX-1.6.so:${PORTSDIR}/x11-toolkits/fox16 +CMAKE_ARGS+= -DFOX17:BOOL=FALSE .endif .if ${PORT_OPTIONS:MFOX17} -LIB_DEPENDS+= FOX-1.7:${PORTSDIR}/x11-toolkits/fox17 +LIB_DEPENDS+= libFOX-1.7.so:${PORTSDIR}/x11-toolkits/fox17 CMAKE_ARGS+= -DFOX17:BOOL=TRUE .endif USES= cmake:outsource pkgconfig USE_LDCONFIG= yes +CMAKE_ARGS+= -DVTK_DIR:PATH=${LOCALBASE}/lib/vtk-5.10 PLIST_FILES= include/vtkfox/FXVTKCanvas.h \ include/vtkfox/vtkFXRenderWindowInteractor.h \ @@ -45,20 +47,18 @@ PLIST_FILES= include/vtkfox/FXVTKCanvas.h \ libdata/pkgconfig/vtkfox.pc PLIST_DIRS= include/vtkfox -post-patch: -.if defined(NOPORTEXAMPLES) - ${REINPLACE_CMD} -e 's| tests||' ${WRKSRC}/CMakeLists.txt -.endif - -.if !defined(NOPORTEXAMPLES) SAMPLE_FILES= imgsurf double cone quad xyplot simple PORTEXAMPLES= * +.if !${PORT_OPTIONS:MEXAMPLES} +post-patch: + ${REINPLACE_CMD} -e 's| tests||' ${WRKSRC}/CMakeLists.txt +.else post-install: - @${MKDIR} ${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .for sample_file in ${SAMPLE_FILES} - @${INSTALL_DATA} ${WRKSRC}/tests/${sample_file}.cpp ${EXAMPLESDIR} - @${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/tests/${sample_file} ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/tests/${sample_file}.cpp ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/tests/${sample_file} ${STAGEDIR}${EXAMPLESDIR} .endfor .endif |