diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-31 01:10:42 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-31 01:10:42 +0000 |
commit | 1688fafe7642e448b936a03690511bb621e605dd (patch) | |
tree | 6771843c2274691e9d944f2934e5e0af11c7b721 /print | |
parent | fd47b70a6234d2e1261923b00ebdf83be400534d (diff) |
[PATCH] print/magicfilter: enable choose of ghostscript interpreter
This patch allows the admin of the machine to choose either
print/ghostscript-gnu or print/ghostscript-afp1
PR: ports/54944
Submitted by: Jens Rehsack <rehsack@liwing.de>
Notes
Notes:
svn path=/head/; revision=88140
Diffstat (limited to 'print')
-rw-r--r-- | print/magicfilter/Makefile | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/print/magicfilter/Makefile b/print/magicfilter/Makefile index 5577231efe1a..8eba50918802 100644 --- a/print/magicfilter/Makefile +++ b/print/magicfilter/Makefile @@ -15,7 +15,13 @@ MAINTAINER= cjh@FreeBSD.org COMMENT= Customizable, extensible automatic printer filter # at least, gs must exist in many case -BUILD_DEPENDS= ${PREFIX}/bin/gs:${PORTSDIR}/print/ghostscript-gnu +.if defined(WITH_GHOSTSCRIPT_AFPL) && ${WITH_GHOSTSCRIPT_AFPL} == yes +GSPORT?= print/ghostscript-afpl +.else +GSPORT?= print/ghostscript-gnu +.endif + +BUILD_DEPENDS= ${PREFIX}/bin/gs:${PORTSDIR}/${GSPORT} # to give freedom to choose your favor gs.. #RUN_DEPENDS= gs:${PORTSDIR}/print/ghostscript-gnu @@ -23,6 +29,14 @@ GNU_CONFIGURE= yes USE_GMAKE= yes MAN8= magicfilter.8 +pre-fetch: +.if !defined(WITH_GHOSTSCRIPT_AFPL) || ${WITH_GHOSTSCRIPT_AFPL} != yes + @${ECHO} "" + @${ECHO} " Define WITH_GHOSTSCRIPT_AFPL=yes to use" + @${ECHO} " AFPL Postscript interpreter instead of GNU one" + @${ECHO} "" +.endif + # install filters and examples post-install: ${MKDIR} ${PREFIX}/libexec/magicfilter |