diff options
author | andreas <andreas@FreeBSD.org> | 2005-01-30 19:54:11 +0800 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 2005-01-30 19:54:11 +0800 |
commit | 180832dc009e333d2d9bc4c794ec0480d5680dbc (patch) | |
tree | 0134b5ffe938edb58c2dac7e3a55712019a88d2c /print | |
parent | 9170b16a98652d50b62a57bb2382143637a1bfa8 (diff) | |
download | freebsd-ports-gnome-180832dc009e333d2d9bc4c794ec0480d5680dbc.tar.gz freebsd-ports-gnome-180832dc009e333d2d9bc4c794ec0480d5680dbc.tar.zst freebsd-ports-gnome-180832dc009e333d2d9bc4c794ec0480d5680dbc.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 |