From 1688fafe7642e448b936a03690511bb621e605dd Mon Sep 17 00:00:00 2001 From: Edwin Groothuis Date: Sun, 31 Aug 2003 01:10:42 +0000 Subject: [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 --- print/magicfilter/Makefile | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'print') 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 -- cgit v1.2.3