summaryrefslogtreecommitdiff
path: root/print/apsfilter
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2003-08-31 01:07:35 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2003-08-31 01:07:35 +0000
commitd243790ded2143eebca7c63060fc74adc9e92983 (patch)
tree78363c940a7e049a278e91a59d0553e0c3e32c92 /print/apsfilter
parent[PATCH] print/font2svg: enable choose of ghostscript interpreter (diff)
[PATCH] print/apsfilter: enable choose of ghostscript interpreter
This patch allows the admin of the machine to choose either print/ghostscript-gnu or print/ghostscript-afp1 Please note that the wrong version of this patch (the one with afp1 instead of afpl) had already been applied by andreas@. I've updated this to fix it. PR: ports/54941 Submitted by: Jens Rehsack <rehsack@liwing.de>
Notes
Notes: svn path=/head/; revision=88138
Diffstat (limited to 'print/apsfilter')
-rw-r--r--print/apsfilter/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/print/apsfilter/Makefile b/print/apsfilter/Makefile
index b105743aade0..6dc7389c9b69 100644
--- a/print/apsfilter/Makefile
+++ b/print/apsfilter/Makefile
@@ -35,8 +35,8 @@ MAKE_ENV+= NO_X=true
# define WITH_GHOSTSCRIPT_AFP1=yes for AFPL Postscript interpreter
# instead of GNU one
#
-.if defined(WITH_GHOSTSCRIPT_AFP1)
-GSPORT?= print/ghostscript-afp1
+.if defined(WITH_GHOSTSCRIPT_AFPL)
+GSPORT?= print/ghostscript-afpl
.else
GSPORT?= print/ghostscript-gnu
.endif
@@ -134,7 +134,7 @@ PAPERSIZE?=letter
pre-fetch:
.if !defined(WITH_GHOSTSCRIPT_AFP1)
@${ECHO} ""
- @${ECHO} " Define WITH_GHOSTSCRIPT_AFP1=yes to use"
+ @${ECHO} " Define WITH_GHOSTSCRIPT_AFPL=yes to use"
@${ECHO} " AFPL Postscript interpreter instead of GNU one"
@${ECHO} ""
.endif