diff options
author | scheidell <scheidell@FreeBSD.org> | 2012-07-03 23:36:20 +0800 |
---|---|---|
committer | scheidell <scheidell@FreeBSD.org> | 2012-07-03 23:36:20 +0800 |
commit | d06c40c7cf17fd58ff17654b71bf14098049aef1 (patch) | |
tree | d90da47a7113cf6408bfe9d9f23609ef22e44d5d /print/gutenprint | |
parent | 4d49dd761162f06d6f9edd8136c8c175cba078bf (diff) | |
download | freebsd-ports-gnome-d06c40c7cf17fd58ff17654b71bf14098049aef1.tar.gz freebsd-ports-gnome-d06c40c7cf17fd58ff17654b71bf14098049aef1.tar.zst freebsd-ports-gnome-d06c40c7cf17fd58ff17654b71bf14098049aef1.zip |
- print/gutenprint-cups build prompts unprivileged user [1]
- Upgrade related porrs to 5.2.8 [2]
- Convert to OptionsNG [2]
- Add GPL license information [2]
- pet portlint (minor re-arrancement of COMMENT/LICENSE to shut portlint up)
PR: ports/169026 [1]
Submitted by: dougb@ [1]
Submitted by: Christoph Moench-Tegeder <cmt@burggraben.net> (maintainer) [2]
Diffstat (limited to 'print/gutenprint')
-rw-r--r-- | print/gutenprint/Makefile | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/print/gutenprint/Makefile b/print/gutenprint/Makefile index 22abc0cef978..a80ac94be6a0 100644 --- a/print/gutenprint/Makefile +++ b/print/gutenprint/Makefile @@ -7,7 +7,7 @@ # PORTNAME= gutenprint -PORTVERSION= 5.2.7 +PORTVERSION= 5.2.8 CATEGORIES= print MASTER_SITES= # empty DISTFILES= # empty @@ -18,27 +18,30 @@ COMMENT= The "meta-port" for GutenPrint RUN_DEPENDS= gutenprint-base>0:${PORTSDIR}/print/gutenprint-base -OPTIONS= CUPS "GutenPrint (gimp-print) Cups Drivers" Off \ - IJS "IJS GhostScript Drivers" On \ - FOOMATIC "Foomatic data files" Off +OPTIONS_DEFINE= CUPS GIMP IJS FOOMATIC +OPTIONS_DEFAULT= IJS +CUPS_DESC= GutenPrint (gimp-print) Cups Drivers +GIMP_DESC= GIMP Gutenprint printing plugin +IJS_DESC= IJS GhostScript Drivers +FOOMATIC_DESC= Foomatic data files NO_BUILD= yes .include <bsd.port.pre.mk> -.if defined(WITH_CUPS) +.if ${PORT_OPTIONS:MCUPS} RUN_DEPENDS+= gutenprint-cups>0:${PORTSDIR}/print/gutenprint-cups .endif -.if defined(WITH_GIMP) +.if ${PORT_OPTIONS:MGIMP} RUN_DEPENDS+= gimp-gutenprint>0:${PORTSDIR}/print/gimp-gutenprint .endif -.if !defined(WITHOUT_IJS) +.if ${PORT_OPTIONS:MIJS} RUN_DEPENDS+= gutenprint-ijs>0:${PORTSDIR}/print/gutenprint-ijs .endif -.if defined(WITH_FOOMATIC) +.if ${PORT_OPTIONS:MFOOMATIC} RUN_DEPENDS+= gutenprint-foomatic>0:${PORTSDIR}/print/gutenprint-foomatic .endif |