1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00
freebsd-ports/graphics/gimp/Makefile
Matthias Andree 515db2ed10 Upgrade OpenEXR and ilmbase to 2.2.0.
GCC 4.2 in FreeBSD 8.X/9.X base is now too old to compile OpenEXR, so
GCC-based systems will upgrade to the default ports compiler (GCC 4.7
currently.)

Add two patches to OpenEXR to permit building it in a live system with
the older OpenEXR version installed. Bug report filed to upstream Github
at https://github.com/openexr/openexr/issues/130

Couple OpenEXR more tightly to ilmbase and require its exact .so
version.

Add UPDATING note, and bump PORTREVISION of all dependent ports.

Proto-STAGE hugin-devel, and mark it IGNORE because hugin is newer.

Approved by:	portmgr (implicit for bumping PORTREVISION on unstaged ports)
2014-08-15 20:37:31 +00:00

45 lines
1.1 KiB
Makefile

# Created by: erich@FreeBSD.org
# $FreeBSD$
# $MCom: ports/graphics/gimp/Makefile,v 1.22 2012/11/26 13:31:16 kwm Exp $
PORTNAME= gimp
DISTVERSION?= 2.8.10
PORTREVISION?= 1
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.8:${PORTSDIR}/graphics/gimp-app
OPTIONS_DEFINE= PYTHON PRINT HELP
OPTIONS_DEFAULT=PYTHON PRINT HELP
PYTHON_DESC= Python-fu support
PRINT_DESC= Gutenprint (gimp-print) plugin
HELP_DESC= Gimp-Help (50+MB distfile)
NO_BUILD= yes
NO_INSTALL= yes
NO_MTREE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MHELP}
RUN_DEPENDS+= gimp-help*>0:${PORTSDIR}/graphics/gimp-help
.endif
.if ${PORT_OPTIONS:MPYTHON}
RUN_DEPENDS+= ${LOCALBASE}/libexec/gimp/2.2/environ/pygimp.env:${PORTSDIR}/graphics/py-gimp
.endif
.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
.include <bsd.port.mk>