diff options
author | Boris Samorodov <bsam@FreeBSD.org> | 2014-04-25 11:49:42 +0000 |
---|---|---|
committer | Boris Samorodov <bsam@FreeBSD.org> | 2014-04-25 11:49:42 +0000 |
commit | 40beeb3a0a3448e9801b546b198b70ad172bce4e (patch) | |
tree | 58de79ea04faf598bebf2b62104518926c9f50f4 | |
parent | Like r351970 removed an extra USES+=desktop-file-utils from the Makefile, (diff) |
print/foo2zjs: add run time dependency upon textproc/gsed
. assumig the following code is intended, add a run time dependency
upon textproc/gsed:
----- foo2zjs-pstops.sh -----
case `uname -s` in
FreeBSD) sed=gsed;;
-----
. bump PORTREVISION.
Reported by: stb@ (at freebsd-ports@)
MFH: 2014Q2
Notes
Notes:
svn path=/head/; revision=352107
-rw-r--r-- | print/foo2zjs/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/print/foo2zjs/Makefile b/print/foo2zjs/Makefile index c705286c2d19..cf8d27976326 100644 --- a/print/foo2zjs/Makefile +++ b/print/foo2zjs/Makefile @@ -3,6 +3,7 @@ PORTNAME= foo2zjs PORTVERSION= 20140401 +PORTREVISION= 1 CATEGORIES= print MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} \ ${MASTER_SITE_LOCAL:S,$,bsam/${PORTNAME}/,} \ @@ -13,7 +14,8 @@ COMMENT= Driver for printers that use the ZjStream wire protocol LIB_DEPENDS= libcups.so:${PORTSDIR}/print/cups-client RUN_DEPENDS= ${LOCALBASE}/share/foomatic/db/oldprinterids:${PORTSDIR}/print/foomatic-db \ - foomatic-rip:${PORTSDIR}/print/foomatic-filters + foomatic-rip:${PORTSDIR}/print/foomatic-filters \ + gsed:${PORTSDIR}/textproc/gsed PROJECTHOST= bsdistfiles USE_GHOSTSCRIPT=yes |