diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2009-08-07 17:04:10 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2009-08-07 17:04:10 +0000 |
commit | 00567a5048c91872c3a64ac16d8d34bc224f4dc4 (patch) | |
tree | 8d059d5838193febe5dda10fe6118dbfc7c604ea /math/vtk5 | |
parent | 79181787d79aa75e40f6edaa9d511e47feb79566 (diff) | |
download | ports-00567a5048c91872c3a64ac16d8d34bc224f4dc4.tar.gz ports-00567a5048c91872c3a64ac16d8d34bc224f4dc4.zip |
Add GL2PS knobs to OPTIONS, and default to it.
This knobs need to build Salome application:
http://www.salome-platform.org/ex/att/16_SALOME_4_1_5_Release_Notes.pdf, page 14
PR: ports/137162
Submitted by: Stas Timokhin <stast (at) bsdportal.ru>
Notes
Notes:
svn path=/head/; revision=239090
Diffstat (limited to 'math/vtk5')
-rw-r--r-- | math/vtk5/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/math/vtk5/Makefile b/math/vtk5/Makefile index 65a30a5a2c0a..9d8574d39ec3 100644 --- a/math/vtk5/Makefile +++ b/math/vtk5/Makefile @@ -8,7 +8,7 @@ PORTNAME= vtk PORTVERSION= 5.0.4 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= math graphics MASTER_SITES= http://www.vtk.org/files/release/${PORTVERSION:R}/ \ http://www.neuro.mcw.edu/Ports/distfiles/VTK5/ @@ -50,7 +50,8 @@ USE_GL= yes USE_LDCONFIG= yes OPTIONS= MANGLEDMESA "Use off-screen (Mangled) Mesa" Off \ - VTKMPEG2 "Install patented MPEG2 encoder module" Off + VTKMPEG2 "Install patented MPEG2 encoder module" Off \ + GL2PS "Install support conversion OpenGL to PostScript" On PLIST_SUB= VER=${PORTVERSION} VER1=${PORTVERSION:R} VER2=${PORTVERSION:R:R} @@ -107,6 +108,12 @@ CMAKE_ARGS+= -DvtkMPEG2Encode_INCLUDE_PATH=${LOCALBASE}/include/vtk-5.0 \ -DVTK_USE_MPEG2_ENCODER:BOOL=ON .endif +.if defined(WITH_GL2PS) +LIB_DEPENDS+= gl2ps.1:${PORTSDIR}/print/gl2ps +CMAKE_ARGS+= -DVTK_USE_GL2PS:BOOL=ON +PLIST_FILES+= include/vtk-5.0/vtkGL2PSExporter.h +.endif + post-extract: ${MKDIR} ${WRKSRC} ${REINPLACE_CMD} -e 's|malloc.h|stdlib.h|g' \ |