diff options
author | edwin <edwin@FreeBSD.org> | 2003-08-31 01:28:00 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-08-31 01:28:00 +0000 |
commit | dcc922b45d4234c97f2d12b006e52074226f4c9c (patch) | |
tree | 7a38205237fc810ca30a63cc3e9605039957951f /print/pstotext | |
parent | decec8e343b0a2f5d5eac7e0a04845400ae545a3 (diff) | |
download | FreeBSD-ports-dcc922b45d4234c97f2d12b006e52074226f4c9c.zip FreeBSD-ports-dcc922b45d4234c97f2d12b006e52074226f4c9c.tar.gz |
[PATCH] print/pstotext: 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/54955
Submitted by: Jens Rehsack <rehsack@liwing.de>
Diffstat (limited to 'print/pstotext')
-rw-r--r-- | print/pstotext/Makefile | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/print/pstotext/Makefile b/print/pstotext/Makefile index ebef96c..d6a70be 100644 --- a/print/pstotext/Makefile +++ b/print/pstotext/Makefile @@ -15,10 +15,24 @@ EXTRACT_SUFX= .tar.Z MAINTAINER= ob@breuninger.org COMMENT= A PostScript to Text converter -RUN_DEPENDS= gs:${PORTSDIR}/print/ghostscript-gnu +.if defined(WITH_GHOSTSCRIPT_AFPL) && ${WITH_GHOSTSCRIPT_AFPL} == yes +GSPORT?= print/ghostscript-afpl +.else +GSPORT?= print/ghostscript-gnu +.endif + +RUN_DEPENDS= gs:${PORTSDIR}/${GSPORT} MAN1= pstotext.1 +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 + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/pstotext ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/pstotext.1 ${PREFIX}/man/man1 |