2000-02-24 07:32:36 +00:00
|
|
|
# New ports collection makefile for: The GIMP
|
1996-11-19 03:36:29 +00:00
|
|
|
# Date created: Mon Nov 18 21:28:43 CST 1996
|
|
|
|
# Whom: erich@FreeBSD.org
|
|
|
|
#
|
1999-08-25 06:16:32 +00:00
|
|
|
# $FreeBSD$
|
1996-11-19 03:36:29 +00:00
|
|
|
#
|
|
|
|
|
2000-04-14 10:48:02 +00:00
|
|
|
PORTNAME= gimp
|
2003-06-20 16:43:52 +00:00
|
|
|
PORTVERSION= 1.2.5
|
2004-02-04 05:21:48 +00:00
|
|
|
PORTREVISION= 1
|
2002-04-11 16:41:52 +00:00
|
|
|
PORTEPOCH= 1
|
2000-06-01 16:25:45 +00:00
|
|
|
CATEGORIES= graphics gnome
|
2001-03-26 20:07:47 +00:00
|
|
|
MASTER_SITES= ftp://ftp.gimp.org/pub/%SUBDIR%/ \
|
2005-12-21 18:15:18 +00:00
|
|
|
http://ftp.man.poznan.pl/pub/%SUBDIR%/ \
|
|
|
|
http://fresh.t-systems-sfr.com/unix/src/misc/:mpeg \
|
|
|
|
http://ftp.sayclub.com/pub/X/gimp/libs/:mpeg
|
2001-03-26 20:07:47 +00:00
|
|
|
MASTER_SITE_SUBDIR= gimp/v${PORTVERSION:R}/v${PORTVERSION}
|
2002-08-12 18:15:20 +00:00
|
|
|
DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \
|
|
|
|
mpeg_lib-1.3.1.tar.gz:mpeg
|
1996-11-19 03:36:29 +00:00
|
|
|
|
2002-05-18 02:55:13 +00:00
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
2003-06-01 04:01:52 +00:00
|
|
|
COMMENT= The GNU Image Manipulation Program
|
1996-11-19 03:36:29 +00:00
|
|
|
|
(1) Add new variable, XFREE86_VERSION, to specify which version of
XFree86 (3 or 4) to depend to when USE_XLIB is set.
XFREE86_VERSION defaults to 3 for now, but adventurous users can
override it in /etc/make.conf. When XFREE86_VERSION=3, USE_XLIB
will add a dependency to x11/XFree86; when it is set to 4, the
dependency will be to x11/XFree86-4-libraries. When
XFREE86_VERSION=4, the PKG_IGNORE_DEPENDS and ALWAYS_BUILD_DEPENDS
hacks to avoid messing with XFree86 are turned off.
Since XFree86 version 4 includes some software that used to be
separate ports, when XFREE86_VERSION=3 the following variables are
provided:
USE_DGS LIB_DEPENDS on x11/dgs
USE_FREETYPE LIB_DEPENDS on print/freetype
USE_MESA LIB_DEPENDS on graphics/Mesa3
USE_XPM LIB_DEPENDS on graphics/xpm
When XFREE86_VERSION=4, these variables have no effect. The
LIB_DEPENDS in the tree for the above four ports have all been
converted to the USE_* counterparts. For your information, this
is the count of the number of ports:
USE_DGS 0
USE_FREETYPE 16
USE_MESA 36
USE_XPM 236
There is a new variable, XAWVER, which is set to 6 when
XFREE86_VERSION=3 and 7 when XFREE86_VERSION=4. This is also
passed to PLIST_SUB so ports that build Xaw based shared libraries
can use this variable to substitute the shlib version number.
There is also a provision of using a separate mtree file for
XFREE86_VERSION=4, but that part is not enabled yet.
Reviewed by: the ports list
Tested by: make index (XFREE86_VERSION=3 only)
(2) Add hebrew to list of valid categories.
Submitted by: nbm
2000-08-03 09:28:57 +00:00
|
|
|
LIB_DEPENDS= aa.1:${PORTSDIR}/graphics/aalib \
|
1999-02-20 19:31:51 +00:00
|
|
|
jpeg.9:${PORTSDIR}/graphics/jpeg \
|
2001-09-11 02:22:51 +00:00
|
|
|
png.5:${PORTSDIR}/graphics/png \
|
2000-05-30 06:47:14 +00:00
|
|
|
tiff.4:${PORTSDIR}/graphics/tiff
|
2000-02-24 07:32:36 +00:00
|
|
|
|
2004-03-27 18:25:17 +00:00
|
|
|
DEPRECATED= New stable release 2.0 can be installed via graphics/gimp port
|
|
|
|
|
2004-03-29 13:03:41 +00:00
|
|
|
NO_LATEST_LINK= yes
|
|
|
|
|
2006-02-22 04:15:08 +00:00
|
|
|
CONFLICTS= gimp-2.* gimp-gnome-2.* gimpshop-[0-9]*
|
2004-03-24 09:16:45 +00:00
|
|
|
|
2002-04-11 01:37:32 +00:00
|
|
|
#SHLIBVER?= ${PORTVERSION:S/1.2.//g}
|
|
|
|
SHLIBVER?= 2
|
1999-05-29 04:17:00 +00:00
|
|
|
|
1999-10-23 07:59:42 +00:00
|
|
|
USE_BZIP2= yes
|
1998-08-05 09:31:52 +00:00
|
|
|
USE_X_PREFIX= yes
|
(1) Add new variable, XFREE86_VERSION, to specify which version of
XFree86 (3 or 4) to depend to when USE_XLIB is set.
XFREE86_VERSION defaults to 3 for now, but adventurous users can
override it in /etc/make.conf. When XFREE86_VERSION=3, USE_XLIB
will add a dependency to x11/XFree86; when it is set to 4, the
dependency will be to x11/XFree86-4-libraries. When
XFREE86_VERSION=4, the PKG_IGNORE_DEPENDS and ALWAYS_BUILD_DEPENDS
hacks to avoid messing with XFree86 are turned off.
Since XFree86 version 4 includes some software that used to be
separate ports, when XFREE86_VERSION=3 the following variables are
provided:
USE_DGS LIB_DEPENDS on x11/dgs
USE_FREETYPE LIB_DEPENDS on print/freetype
USE_MESA LIB_DEPENDS on graphics/Mesa3
USE_XPM LIB_DEPENDS on graphics/xpm
When XFREE86_VERSION=4, these variables have no effect. The
LIB_DEPENDS in the tree for the above four ports have all been
converted to the USE_* counterparts. For your information, this
is the count of the number of ports:
USE_DGS 0
USE_FREETYPE 16
USE_MESA 36
USE_XPM 236
There is a new variable, XAWVER, which is set to 6 when
XFREE86_VERSION=3 and 7 when XFREE86_VERSION=4. This is also
passed to PLIST_SUB so ports that build Xaw based shared libraries
can use this variable to substitute the shlib version number.
There is also a provision of using a separate mtree file for
XFREE86_VERSION=4, but that part is not enabled yet.
Reviewed by: the ports list
Tested by: make index (XFREE86_VERSION=3 only)
(2) Add hebrew to list of valid categories.
Submitted by: nbm
2000-08-03 09:28:57 +00:00
|
|
|
USE_XPM= yes
|
1996-11-19 03:36:29 +00:00
|
|
|
USE_GMAKE= yes
|
2002-07-20 11:04:45 +00:00
|
|
|
USE_GNOME= gtk12
|
2005-11-15 06:52:12 +00:00
|
|
|
USE_AUTOTOOLS= libtool:13:inc
|
2002-08-12 18:15:20 +00:00
|
|
|
USE_REINPLACE= yes
|
2000-06-16 21:52:40 +00:00
|
|
|
INSTALLS_SHLIB= yes
|
2000-02-24 07:32:36 +00:00
|
|
|
LIBTOOLFLAGS= --disable-ltlibs --release-ignore
|
2000-06-26 16:06:17 +00:00
|
|
|
PLIST_SUB= SHLIBVER="${SHLIBVER}"
|
2000-11-13 01:20:57 +00:00
|
|
|
CONFIGURE_ARGS= --disable-perl
|
2002-08-12 18:15:20 +00:00
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${MPEG_WRKSRC}" \
|
2003-06-01 04:01:52 +00:00
|
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
1996-11-19 03:36:29 +00:00
|
|
|
|
2002-08-12 18:15:20 +00:00
|
|
|
GIMP_DISTFILE= ${DISTDIR}/${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
|
|
|
|
MPEG_DISTFILE= ${DISTDIR}/mpeg_lib-1.3.1.tar.gz
|
|
|
|
MPEG_WRKSRC= ${WRKDIR}/mpeg_lib-1.3.1
|
|
|
|
MPEG_CONFIGURE_ENV= OPTIMIZE="${CFLAGS}"
|
|
|
|
MPEG_CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
|
|
--target=${ARCH}-unknown-freebsd${OSREL}
|
|
|
|
|
2003-06-01 04:01:52 +00:00
|
|
|
MAN1= gimp.1 gimptool.1 gimp-remote.1 \
|
|
|
|
gimp-1.2.1 gimp-remote-1.2.1 gimptool-1.2.1
|
2002-05-20 08:26:07 +00:00
|
|
|
MAN5= gimprc.5 gimprc-1.2.5
|
1997-12-16 22:06:42 +00:00
|
|
|
|
2003-06-01 04:01:52 +00:00
|
|
|
.if defined(WITHOUT_PRINT)
|
|
|
|
CONFIGURE_ARGS+= --disable-print
|
2003-06-09 04:12:20 +00:00
|
|
|
PLIST_SUB+= PRINT="@comment "
|
2003-06-01 04:01:52 +00:00
|
|
|
.else
|
|
|
|
LIB_DEPENDS+= gimpprint.2:${PORTSDIR}/print/gimp-print
|
2003-06-09 04:12:20 +00:00
|
|
|
PLIST_SUB+= PRINT=""
|
2003-06-01 04:01:52 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
pre-everything::
|
|
|
|
@${ECHO_MSG} ""
|
|
|
|
@${ECHO_MSG} "The Gimp has the following tunable option(s):"
|
|
|
|
@${ECHO_MSG} ""
|
|
|
|
@${ECHO_MSG} " WITHOUT_PRINT=yes Turns off GIMP printing"
|
|
|
|
@${ECHO_MSG} ""
|
|
|
|
|
2002-08-12 18:15:20 +00:00
|
|
|
do-extract:
|
|
|
|
@${MKDIR} ${WRKDIR}
|
|
|
|
@(cd ${WRKDIR} && ${BZIP2_CMD} -dc ${GIMP_DISTFILE} | ${TAR} -xf -)
|
|
|
|
@(cd ${WRKDIR} && ${GZIP_CMD} -dc ${MPEG_DISTFILE} | ${TAR} -xf -)
|
|
|
|
@(${FIND} ${MPEG_WRKSRC} -type f | ${XARGS} ${CHMOD} u+w)
|
|
|
|
|
|
|
|
pre-configure:
|
|
|
|
@(cd ${MPEG_WRKSRC} && \
|
|
|
|
${SETENV} CC="${CC}" CXX="${CXX}" \
|
|
|
|
CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
|
|
|
|
INSTALL="/usr/bin/install -c -o ${BINOWN} -g ${BINGRP}" \
|
|
|
|
INSTALL_DATA="${INSTALL_DATA}" \
|
|
|
|
INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
|
|
|
|
INSTALL_SCRIPT="${INSTALL_SCRIPT}" \
|
|
|
|
${MPEG_CONFIGURE_ENV} ./configure ${MPEG_CONFIGURE_ARGS})
|
|
|
|
@(cd ${MPEG_WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
|
|
|
|
|
|
|
|
post-patch:
|
|
|
|
@${REINPLACE_CMD} -e 's|-lmpeg|${MPEG_WRKSRC}/libmpeg.a|g' \
|
|
|
|
${WRKSRC}/configure
|
|
|
|
@(cd ${MPEG_WRKSRC} ; \
|
|
|
|
${GREP} -r -l "<malloc.h>" * | \
|
|
|
|
${XARGS} ${REINPLACE_CMD} -e "s/<malloc.h>/<stdlib.h>/")
|
|
|
|
|
2000-02-24 07:32:36 +00:00
|
|
|
post-install:
|
|
|
|
${INSTALL_SCRIPT} ${FILESDIR}/gimp.setfont ${PREFIX}/bin
|
2000-10-08 10:23:48 +00:00
|
|
|
@${CAT} ${PKGMESSAGE}
|
2000-02-24 07:32:36 +00:00
|
|
|
|
2000-11-13 01:20:57 +00:00
|
|
|
.include <bsd.port.mk>
|