1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

[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>
This commit is contained in:
Edwin Groothuis 2003-08-31 01:07:35 +00:00
parent a5975c2b1e
commit d243790ded
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=88138

View File

@ -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