diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-01-02 04:37:37 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-01-02 04:37:37 +0800 |
commit | 2ef9a49281b128c7210b434e70d218cdb210f5a2 (patch) | |
tree | 10bdfb3f2e3bf82b1e370bf4cf91ee2fb8b0fa2d /graphics/gimp | |
parent | 12dbcd3ba718e8e191faa2e246ea639639e54023 (diff) | |
download | marcuscom-ports-2ef9a49281b128c7210b434e70d218cdb210f5a2.tar marcuscom-ports-2ef9a49281b128c7210b434e70d218cdb210f5a2.tar.gz marcuscom-ports-2ef9a49281b128c7210b434e70d218cdb210f5a2.tar.bz2 marcuscom-ports-2ef9a49281b128c7210b434e70d218cdb210f5a2.tar.lz marcuscom-ports-2ef9a49281b128c7210b434e70d218cdb210f5a2.tar.xz marcuscom-ports-2ef9a49281b128c7210b434e70d218cdb210f5a2.tar.zst marcuscom-ports-2ef9a49281b128c7210b434e70d218cdb210f5a2.zip |
(graphics/gimp)
- graphics/gimp is now a meta-port, this will allow a work around from the
chicken and egg problem with guttenprint and gimp
(graphics/py-gimp)
- Splt python plug-in out of gimp, this will make updating gimp a bit
easier since we won't have to worry about PLIST_SUB as much =)
(graphics/gimp-app)
- Update gimp to 2.3.13 (if we move to ports before 2.14 we can just move
gimp -> gimp-devel)
- Remove gnome print support
- Add support for guttenprint (gimp-print) plug-in
- Always install .desktop files and icons
- Only install GNOME-specific files in share/gnome
Repocopied from: graphics/gimp
Repocopied by: marcus
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8128 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'graphics/gimp')
-rw-r--r-- | graphics/gimp/Makefile | 39 | ||||
-rw-r--r-- | graphics/gimp/pkg-descr | 21 |
2 files changed, 60 insertions, 0 deletions
diff --git a/graphics/gimp/Makefile b/graphics/gimp/Makefile new file mode 100644 index 000000000..2d1db94f9 --- /dev/null +++ b/graphics/gimp/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: The GIMP +# Date created: Mon Nov 18 21:28:43 CST 1996 +# Whom: erich@FreeBSD.org +# +# $FreeBSD: ports/graphics/gimp-devel/Makefile,v 1.161 2006/11/04 22:31:00 mezz Exp $ +# $MCom: ports/graphics/gimp-devel/Makefile,v 1.24 2006/10/13 23:42:43 marcus Exp $ +# + +PORTNAME= gimp +PORTVERSION?= 2.3 +PORTEPOCH?= 2 +CATEGORIES= graphics gnome +MASTER_SITES?= # empty +DISTFILES?= # empty +EXTRACT_ONLY?= # empty + +MAINTAINER= gnome@FreeBSD.org +COMMENT= The "meta-port" for The Gimp + +RUN_DEPENDS= gimp-2.3:${PORTSDIR}/graphics/gimp-app + +OPTIONS= PYTHON "Python-fu support" Off \ + PRINT "Gutenprint (gimp-print) plugin" On + +NO_BUILD= yes + +.include <bsd.port.pre.mk> + +.if defined(WITH_PYTHON) +RUN_DEPENDS+= ${LOCALBASE}/libexec/gimp/2.2/environ/pygimp.env:${PORTSDIR}/graphics/py-gimp +.endif + +.if !defined(WITHOUT_PRINT) +RUN_DEPENDS+= ${LOCALBASE}/libexec/gimp/2.2/plug-ins/print:${PORTSDIR}/print/gimp-gutenprint +.endif + +do-install: # empty + +.include <bsd.port.post.mk> diff --git a/graphics/gimp/pkg-descr b/graphics/gimp/pkg-descr new file mode 100644 index 000000000..35939f2a6 --- /dev/null +++ b/graphics/gimp/pkg-descr @@ -0,0 +1,21 @@ +The GIMP is designed to provide an intuitive graphical interface to a +variety of image editing operations. Here is a list of the GIMP's +major features: + + Image editing + ------------- + + * Selection tools including rectangle, ellipse, free, fuzzy, bezier + and intelligent. + * Transformation tools including rotate, scale, shear and flip. + * Painting tools including bucket, brush, airbrush, clone, convolve, + blend and text. + * Effects filters (such as blur, edge detect). + * Channel & color operations (such as add, composite, decompose). + * Plug-ins which allow for the easy addition of new file formats and + new effect filters. + * Multiple undo/redo. + +This is "The Gimp" meta-port, see ports/graphics/gimp-app for more details + +WWW: http://www.gimp.org/ |