diff options
author | Andreas Klemm <andreas@FreeBSD.org> | 2005-01-30 19:54:11 +0800 |
---|---|---|
committer | Andreas Klemm <andreas@FreeBSD.org> | 2005-01-30 19:54:11 +0800 |
commit | d0bf4096040d8a454bed8e687079753c7dfcfde2 (patch) | |
tree | fd73f77cd050ffe8b4124ad66f23caddd0ca4722 /print | |
parent | d6d4d32c1d8bb7314a75c3b2314d70b52e18b6cd (diff) | |
download | freebsd-ports-gnome-d0bf4096040d8a454bed8e687079753c7dfcfde2.tar.gz freebsd-ports-gnome-d0bf4096040d8a454bed8e687079753c7dfcfde2.tar.zst freebsd-ports-gnome-d0bf4096040d8a454bed8e687079753c7dfcfde2.zip |
- added suggested patch to use bash3 as default dependency for bash
- while being here trimmed COMMENT according to portlint
- providing backward compatibility if needed via WITH_BASH2 make env var
- bumping port revision
- closing 76805
PR: 76805
Submitted by: Michael C.Shultz <reso3w83@verizon.net>
Diffstat (limited to 'print')
-rw-r--r-- | print/apsfilter/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/print/apsfilter/Makefile b/print/apsfilter/Makefile index be98e1291151..e09a00161895 100644 --- a/print/apsfilter/Makefile +++ b/print/apsfilter/Makefile @@ -7,12 +7,12 @@ PORTNAME= apsfilter PORTVERSION= 7.2.5 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= print MASTER_SITES= http://www.apsfilter.org/download/ MAINTAINER= andreas@FreeBSD.org -COMMENT= Magic print filter with file type recognition, print preview, duplex printing +COMMENT= Magic print filter with print preview, duplex printing and more DIST_SUBDIR= apsfilter @@ -112,8 +112,12 @@ RUN_DEPENDS+= a2ps:${PORTSDIR}/print/a2ps-${PAPERSIZE} RUN_DEPENDS+= psnup:${PORTSDIR}/print/psutils-${PAPERSIZE} .endif -# needed for aps2file :-/ +# needed for aps2file +.if defined(WITH_BASH2) RUN_DEPENDS+= bash:${PORTSDIR}/shells/bash2 +.else +RUN_DEPENDS+= bash:${PORTSDIR}/shells/bash +.endif # HP IJS driver is not automatically part of ghostscript port anymore RUN_DEPENDS+= hpijs:${PORTSDIR}/print/hpijs |