diff options
author | edwin <edwin@FreeBSD.org> | 2003-08-31 09:30:02 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-08-31 09:30:02 +0800 |
commit | ce9946f271a9c77c89338a55a7c4b675c46162c1 (patch) | |
tree | 8875ad0ebdf4922f552a5a415951e17d5d797df2 /mail/courier | |
parent | d98115cf1760f114b4c9f2a0017a41c910ceb68d (diff) | |
download | freebsd-ports-gnome-ce9946f271a9c77c89338a55a7c4b675c46162c1.tar.gz freebsd-ports-gnome-ce9946f271a9c77c89338a55a7c4b675c46162c1.tar.zst freebsd-ports-gnome-ce9946f271a9c77c89338a55a7c4b675c46162c1.zip |
[PATCH] mail/courier: 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/54957
Submitted by: Jens Rehsack <rehsack@liwing.de>
Diffstat (limited to 'mail/courier')
-rw-r--r-- | mail/courier/Makefile | 9 | ||||
-rw-r--r-- | mail/courier/scripts/configure.courier | 9 |
2 files changed, 16 insertions, 2 deletions
diff --git a/mail/courier/Makefile b/mail/courier/Makefile index 7dfd310775f0..a6a792e3b611 100644 --- a/mail/courier/Makefile +++ b/mail/courier/Makefile @@ -109,6 +109,7 @@ SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ WITH_SENDFAX="${WITH_SENDFAX:L}" \ WITH_IPV6="${WITH_IPV6:L}" \ WITH_TRANSPORT="${WITH_TRANSPORT}" \ + WITH_GHOSTSCRIPT_AFPL="${WITH_GHOSTSCRIPT_AFPL:no}" \ TOUCH="${TOUCH}" \ MKDIR="${MKDIR}" @@ -122,6 +123,14 @@ SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ pre-everything:: @${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.${PORTNAME} +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 + post-patch: @${PERL} -pi -e 's:\@datadir\@:\@sysconfdir\@:g;' \ ${WRKSRC}/*/mk*cert.* \ diff --git a/mail/courier/scripts/configure.courier b/mail/courier/scripts/configure.courier index 524ca5e5d3ed..c719caf51e6c 100644 --- a/mail/courier/scripts/configure.courier +++ b/mail/courier/scripts/configure.courier @@ -1,5 +1,5 @@ #!/bin/sh -# $FreeBSD: /tmp/pcvs/ports/mail/courier/scripts/Attic/configure.courier,v 1.9 2003-08-28 12:57:51 edwin Exp $ +# $FreeBSD: /tmp/pcvs/ports/mail/courier/scripts/Attic/configure.courier,v 1.10 2003-08-31 01:30:02 edwin Exp $ [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ] && exit @@ -251,7 +251,12 @@ while [ "$1" ]; do echo "BUILD_DEPENDS+= procmail:\${PORTSDIR}/mail/procmail" ;; \"SendFax\") - echo "BUILD_DEPENDS+= gs:\${PORTSDIR}/print/ghostscript-gnu" + if [ "x${WITH_GHOSTSCRIPT_AFPL}" = "xyes" ] + then + echo "BUILD_DEPENDS+= gs:\${PORTSDIR}/print/ghostscript-afpl" + else + echo "BUILD_DEPENDS+= gs:\${PORTSDIR}/print/ghostscript-gnu" + fi echo "BUILD_DEPENDS+= pnmscale:\${PORTSDIR}/graphics/netpbm" echo "BUILD_DEPENDS+= giftopnm:\${PORTSDIR}/graphics/netpbm" echo "BUILD_DEPENDS+= jpegtopnm:\${PORTSDIR}/graphics/netpbm" |