diff options
author | edwin <edwin@FreeBSD.org> | 2003-08-31 01:07:35 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-08-31 01:07:35 +0000 |
commit | 8cea6cab5ab4c2ef3b88ce29732935c897cc339a (patch) | |
tree | bf00017407db07e38b4e1893db068aeef5f01405 /print/apsfilter | |
parent | 95ea42d8f6d2da301345e8bbc2efb2e1c9a12682 (diff) | |
download | FreeBSD-ports-8cea6cab5ab4c2ef3b88ce29732935c897cc339a.zip FreeBSD-ports-8cea6cab5ab4c2ef3b88ce29732935c897cc339a.tar.gz |
[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>
Diffstat (limited to 'print/apsfilter')
-rw-r--r-- | print/apsfilter/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/print/apsfilter/Makefile b/print/apsfilter/Makefile index b105743..6dc7389 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 |