diff options
author | Michael Scheidell <scheidell@FreeBSD.org> | 2012-07-03 15:36:20 +0000 |
---|---|---|
committer | Michael Scheidell <scheidell@FreeBSD.org> | 2012-07-03 15:36:20 +0000 |
commit | 0bcd213f10b29f87f1cd8262b5224329a24db9a3 (patch) | |
tree | 966a72dde56e6d5c9deb6a1a7b023587d6d5fff9 /print/gutenprint/Makefile | |
parent | 3e5eb05150beac6bd9b1d8bd469763f173435381 (diff) | |
download | ports-0bcd213f10b29f87f1cd8262b5224329a24db9a3.tar.gz ports-0bcd213f10b29f87f1cd8262b5224329a24db9a3.zip |
Notes
Diffstat (limited to 'print/gutenprint/Makefile')
-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 |