aboutsummaryrefslogtreecommitdiff
path: root/print/texvc
diff options
context:
space:
mode:
authorMax Brazhnikov <makc@FreeBSD.org>2012-07-27 11:03:38 +0000
committerMax Brazhnikov <makc@FreeBSD.org>2012-07-27 11:03:38 +0000
commit52e8b487f6dc73b0d0baafc955c59e83ab33c41a (patch)
tree167ee4bd8c4cd737246cf4e2c40f36e42042084e /print/texvc
parentdbe27c5fd4471209e8b77eecbae08f3a2ad57040 (diff)
downloadports-52e8b487f6dc73b0d0baafc955c59e83ab33c41a.tar.gz
ports-52e8b487f6dc73b0d0baafc955c59e83ab33c41a.zip
- Convert my ports to new options framework
- use CONFLICTS_INSTALL - other minor changes
Notes
Notes: svn path=/head/; revision=301600
Diffstat (limited to 'print/texvc')
-rw-r--r--print/texvc/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/print/texvc/Makefile b/print/texvc/Makefile
index 5208d91177b7..b42599d107e0 100644
--- a/print/texvc/Makefile
+++ b/print/texvc/Makefile
@@ -22,11 +22,13 @@ BUILD_WRKSRC= ${WRKSRC}/src
PLIST_FILES= bin/texvc
-OPTIONS= RASTER "rasterization support" on
+OPTIONS_DEFINE= RASTER
+OPTIONS_DEFAULT= ${OPTIONS_DEFINE}
+RASTER_DESC= rasterization support
-.include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
-.if !defined(WITHOUT_RASTER)
+.if ${PORT_OPTIONS:MRASTER}
USE_GHOSTSCRIPT_RUN= yes
RUN_DEPENDS+= latex:${PORTSDIR}/print/teTeX-base \
dvips:${PORTSDIR}/print/dvipsk-tetex \
@@ -36,4 +38,4 @@ RUN_DEPENDS+= latex:${PORTSDIR}/print/teTeX-base \
do-install:
${INSTALL_PROGRAM} ${BUILD_WRKSRC}/texvc ${PREFIX}/bin
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>