diff options
author | marcus <marcus@FreeBSD.org> | 2003-04-03 03:09:07 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-04-03 03:09:07 +0000 |
commit | 3ff1730196db0c313431f044fddc9d382cc3dcd2 (patch) | |
tree | 5cb04bfb17a1120dc9b23ba47a2bf7dc0ed37553 /graphics | |
parent | 74351658c918f609acece568d06b4351cb8ab4b1 (diff) | |
download | FreeBSD-ports-3ff1730196db0c313431f044fddc9d382cc3dcd2.zip FreeBSD-ports-3ff1730196db0c313431f044fddc9d382cc3dcd2.tar.gz |
Allow one to disable GIMP print support with the WITHOUT_PRINT macro.
PR: 48998
Submitted by: Seva Gluschenko <gvs@rinet.ru>
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/gimp-app-devel/Makefile | 10 | ||||
-rw-r--r-- | graphics/gimp-app/Makefile | 10 | ||||
-rw-r--r-- | graphics/gimp-devel/Makefile | 10 | ||||
-rw-r--r-- | graphics/gimp/Makefile | 10 | ||||
-rw-r--r-- | graphics/gimpshop/Makefile | 10 |
5 files changed, 40 insertions, 10 deletions
diff --git a/graphics/gimp-app-devel/Makefile b/graphics/gimp-app-devel/Makefile index a76ba2e..9f88952 100644 --- a/graphics/gimp-app-devel/Makefile +++ b/graphics/gimp-app-devel/Makefile @@ -19,7 +19,6 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= A GNU Image Manipulation Program (unstable development version) LIB_DEPENDS= gtk-x11-2.0.200:${PORTSDIR}/x11-toolkits/gtk20 \ - gimpprint.2:${PORTSDIR}/print/gimp-print \ art_lgpl_2.5:${PORTSDIR}/graphics/libart_lgpl2 \ aa.1:${PORTSDIR}/graphics/aalib \ jpeg.9:${PORTSDIR}/graphics/jpeg \ @@ -63,6 +62,12 @@ CONFIGURE_ARGS+= --disable-python PLIST_SUB+= PYTHON:="@comment " .endif +.if defined(WITHOUT_PRINT) +CONFIGURE_ARGS+= --disable-print +.else +LIB_DEPENDS+= gimpprint.2:${PORTSDIR}/print/gimp-print +.endif + .if exists(${X11BASE}/libdata/pkgconfig/libpanelapplet-2.0.pc) RUN_DEPENDS+= gnome-panel:${PORTSDIR}/x11/gnomepanel CONFIGURE_ARGS+= --with-gnome-datadir=${X11BASE}/share/gnome @@ -79,7 +84,8 @@ pre-everything:: @${ECHO_MSG} "" @${ECHO_MSG} "gimp-devel has the following tunable option(s):" @${ECHO_MSG} "" - @${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support" + @${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support" + @${ECHO_MSG} " WITHOUT_PRINT=yes Turns off GIMP printing" @${ECHO_MSG} "" .include <bsd.port.mk> diff --git a/graphics/gimp-app/Makefile b/graphics/gimp-app/Makefile index a76ba2e..9f88952 100644 --- a/graphics/gimp-app/Makefile +++ b/graphics/gimp-app/Makefile @@ -19,7 +19,6 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= A GNU Image Manipulation Program (unstable development version) LIB_DEPENDS= gtk-x11-2.0.200:${PORTSDIR}/x11-toolkits/gtk20 \ - gimpprint.2:${PORTSDIR}/print/gimp-print \ art_lgpl_2.5:${PORTSDIR}/graphics/libart_lgpl2 \ aa.1:${PORTSDIR}/graphics/aalib \ jpeg.9:${PORTSDIR}/graphics/jpeg \ @@ -63,6 +62,12 @@ CONFIGURE_ARGS+= --disable-python PLIST_SUB+= PYTHON:="@comment " .endif +.if defined(WITHOUT_PRINT) +CONFIGURE_ARGS+= --disable-print +.else +LIB_DEPENDS+= gimpprint.2:${PORTSDIR}/print/gimp-print +.endif + .if exists(${X11BASE}/libdata/pkgconfig/libpanelapplet-2.0.pc) RUN_DEPENDS+= gnome-panel:${PORTSDIR}/x11/gnomepanel CONFIGURE_ARGS+= --with-gnome-datadir=${X11BASE}/share/gnome @@ -79,7 +84,8 @@ pre-everything:: @${ECHO_MSG} "" @${ECHO_MSG} "gimp-devel has the following tunable option(s):" @${ECHO_MSG} "" - @${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support" + @${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support" + @${ECHO_MSG} " WITHOUT_PRINT=yes Turns off GIMP printing" @${ECHO_MSG} "" .include <bsd.port.mk> diff --git a/graphics/gimp-devel/Makefile b/graphics/gimp-devel/Makefile index a76ba2e..9f88952 100644 --- a/graphics/gimp-devel/Makefile +++ b/graphics/gimp-devel/Makefile @@ -19,7 +19,6 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= A GNU Image Manipulation Program (unstable development version) LIB_DEPENDS= gtk-x11-2.0.200:${PORTSDIR}/x11-toolkits/gtk20 \ - gimpprint.2:${PORTSDIR}/print/gimp-print \ art_lgpl_2.5:${PORTSDIR}/graphics/libart_lgpl2 \ aa.1:${PORTSDIR}/graphics/aalib \ jpeg.9:${PORTSDIR}/graphics/jpeg \ @@ -63,6 +62,12 @@ CONFIGURE_ARGS+= --disable-python PLIST_SUB+= PYTHON:="@comment " .endif +.if defined(WITHOUT_PRINT) +CONFIGURE_ARGS+= --disable-print +.else +LIB_DEPENDS+= gimpprint.2:${PORTSDIR}/print/gimp-print +.endif + .if exists(${X11BASE}/libdata/pkgconfig/libpanelapplet-2.0.pc) RUN_DEPENDS+= gnome-panel:${PORTSDIR}/x11/gnomepanel CONFIGURE_ARGS+= --with-gnome-datadir=${X11BASE}/share/gnome @@ -79,7 +84,8 @@ pre-everything:: @${ECHO_MSG} "" @${ECHO_MSG} "gimp-devel has the following tunable option(s):" @${ECHO_MSG} "" - @${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support" + @${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support" + @${ECHO_MSG} " WITHOUT_PRINT=yes Turns off GIMP printing" @${ECHO_MSG} "" .include <bsd.port.mk> diff --git a/graphics/gimp/Makefile b/graphics/gimp/Makefile index a76ba2e..9f88952 100644 --- a/graphics/gimp/Makefile +++ b/graphics/gimp/Makefile @@ -19,7 +19,6 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= A GNU Image Manipulation Program (unstable development version) LIB_DEPENDS= gtk-x11-2.0.200:${PORTSDIR}/x11-toolkits/gtk20 \ - gimpprint.2:${PORTSDIR}/print/gimp-print \ art_lgpl_2.5:${PORTSDIR}/graphics/libart_lgpl2 \ aa.1:${PORTSDIR}/graphics/aalib \ jpeg.9:${PORTSDIR}/graphics/jpeg \ @@ -63,6 +62,12 @@ CONFIGURE_ARGS+= --disable-python PLIST_SUB+= PYTHON:="@comment " .endif +.if defined(WITHOUT_PRINT) +CONFIGURE_ARGS+= --disable-print +.else +LIB_DEPENDS+= gimpprint.2:${PORTSDIR}/print/gimp-print +.endif + .if exists(${X11BASE}/libdata/pkgconfig/libpanelapplet-2.0.pc) RUN_DEPENDS+= gnome-panel:${PORTSDIR}/x11/gnomepanel CONFIGURE_ARGS+= --with-gnome-datadir=${X11BASE}/share/gnome @@ -79,7 +84,8 @@ pre-everything:: @${ECHO_MSG} "" @${ECHO_MSG} "gimp-devel has the following tunable option(s):" @${ECHO_MSG} "" - @${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support" + @${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support" + @${ECHO_MSG} " WITHOUT_PRINT=yes Turns off GIMP printing" @${ECHO_MSG} "" .include <bsd.port.mk> diff --git a/graphics/gimpshop/Makefile b/graphics/gimpshop/Makefile index a76ba2e..9f88952 100644 --- a/graphics/gimpshop/Makefile +++ b/graphics/gimpshop/Makefile @@ -19,7 +19,6 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= A GNU Image Manipulation Program (unstable development version) LIB_DEPENDS= gtk-x11-2.0.200:${PORTSDIR}/x11-toolkits/gtk20 \ - gimpprint.2:${PORTSDIR}/print/gimp-print \ art_lgpl_2.5:${PORTSDIR}/graphics/libart_lgpl2 \ aa.1:${PORTSDIR}/graphics/aalib \ jpeg.9:${PORTSDIR}/graphics/jpeg \ @@ -63,6 +62,12 @@ CONFIGURE_ARGS+= --disable-python PLIST_SUB+= PYTHON:="@comment " .endif +.if defined(WITHOUT_PRINT) +CONFIGURE_ARGS+= --disable-print +.else +LIB_DEPENDS+= gimpprint.2:${PORTSDIR}/print/gimp-print +.endif + .if exists(${X11BASE}/libdata/pkgconfig/libpanelapplet-2.0.pc) RUN_DEPENDS+= gnome-panel:${PORTSDIR}/x11/gnomepanel CONFIGURE_ARGS+= --with-gnome-datadir=${X11BASE}/share/gnome @@ -79,7 +84,8 @@ pre-everything:: @${ECHO_MSG} "" @${ECHO_MSG} "gimp-devel has the following tunable option(s):" @${ECHO_MSG} "" - @${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support" + @${ECHO_MSG} " WITH_PYTHON=yes Turns on Python-Fu support" + @${ECHO_MSG} " WITHOUT_PRINT=yes Turns off GIMP printing" @${ECHO_MSG} "" .include <bsd.port.mk> |