aboutsummaryrefslogtreecommitdiff
path: root/graphics/gimp
diff options
context:
space:
mode:
authorKoop Mast <kwm@FreeBSD.org>2013-03-11 12:19:08 +0000
committerKoop Mast <kwm@FreeBSD.org>2013-03-11 12:19:08 +0000
commitce48c74dd8e20daf4041b58043ae69047971b8f3 (patch)
tree7ba41bfbf65fce1e70aed0ace4f5a90b19df3b1f /graphics/gimp
parent9e7c5b0e4340081733dbfa0cee9441300412afe1 (diff)
downloadports-ce48c74dd8e20daf4041b58043ae69047971b8f3.tar.gz
ports-ce48c74dd8e20daf4041b58043ae69047971b8f3.zip
Update to 2.8.4.
Convert to OptionsNG, remove shlib versions, update Makefile header. Disable helpbrowser for now, need newer webkit. Use USE_PKGCONFIG and switch to pathfix instead of gnomehack Requested by many. Obtained from: gnome team repo
Notes
Notes: svn path=/head/; revision=313872
Diffstat (limited to 'graphics/gimp')
-rw-r--r--graphics/gimp/Makefile30
1 files changed, 14 insertions, 16 deletions
diff --git a/graphics/gimp/Makefile b/graphics/gimp/Makefile
index 199b636d3d09..c6d78671264b 100644
--- a/graphics/gimp/Makefile
+++ b/graphics/gimp/Makefile
@@ -1,13 +1,9 @@
-# New ports collection makefile for: The GIMP
-# Date created: Mon Nov 18 21:28:43 CST 1996
-# Whom: erich@FreeBSD.org
-#
+# Created by: erich@FreeBSD.org
# $FreeBSD$
-# $MCom: ports/graphics/gimp/Makefile,v 1.18 2010/10/08 08:29:33 kwm Exp $
-#
+# $MCom: ports/graphics/gimp/Makefile,v 1.22 2012/11/26 13:31:16 kwm Exp $
PORTNAME= gimp
-DISTVERSION?= 2.6.12
+DISTVERSION?= 2.8.4
PORTREVISION?= 0
PORTEPOCH?= 2
CATEGORIES= graphics gnome
@@ -18,29 +14,31 @@ EXTRACT_ONLY?= # empty
MAINTAINER= gnome@FreeBSD.org
COMMENT= The "meta-port" for The Gimp
-RUN_DEPENDS= gimp-2.6:${PORTSDIR}/graphics/gimp-app
+RUN_DEPENDS= gimp-2.8:${PORTSDIR}/graphics/gimp-app
-OPTIONS= PYTHON "Python-fu support" Off \
- PRINT "Gutenprint (gimp-print) plugin" On \
- HELP "Install Gimp-Help (50+MB distfile)" Off
+OPTIONS_DEFINE= PYTHON PRINT HELP
+OPTIONS_DEFAULT=PRINT PYTHON
+PYTHON_DESC= Python-fu support
+PRINT_DESC= Gutenprint (gimp-print) plugin
+HELP_DESC= Gimp-Help (50+MB distfile)
NO_BUILD= yes
-.include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
-.if defined(WITH_HELP)
+.if ${PORT_OPTIONS:MHELP}
RUN_DEPENDS+= gimp-help*>0:${PORTSDIR}/graphics/gimp-help
.endif
-.if defined(WITH_PYTHON)
+.if ${PORT_OPTIONS:MPYTHON}
RUN_DEPENDS+= ${LOCALBASE}/libexec/gimp/2.2/environ/pygimp.env:${PORTSDIR}/graphics/py-gimp
.endif
-.if !defined(WITHOUT_PRINT)
+.if ${PORT_OPTIONS:MPRINT}
RUN_DEPENDS+= ${LOCALBASE}/libexec/gimp/2.2/plug-ins/gutenprint:${PORTSDIR}/print/gimp-gutenprint
RUN_DEPENDS+= gutenprint>0:${PORTSDIR}/print/gutenprint
.endif
do-install: # empty
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>