1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/graphics/gimp/Makefile

49 lines
1.5 KiB
Makefile
Raw Normal View History

1997-10-15 20:18:02 +00:00
# New ports collection makefile for: Gimp
# Version required: 0.99.13
# Date created: Mon Nov 18 21:28:43 CST 1996
# Whom: erich@FreeBSD.org
#
1997-10-15 20:18:02 +00:00
# $Id: Makefile,v 1.10 1997/07/14 22:19:04 erich Exp $
#
1997-10-15 20:18:02 +00:00
VERSION= 0.99.14
DISTNAME= gimp-${VERSION}
DISTFILES= ${DISTNAME}.tar.gz
1997-10-15 20:18:02 +00:00
DISTFILES+= gimp-data-min-${VERSION}.tar.gz \
gimp-data-extras-${VERSION}.tar.gz \
gimptcl-1.0.tar.gz
CATEGORIES= graphics
1997-10-15 20:18:02 +00:00
MASTER_SITES= ftp://ftp.cs.umn.edu/pub/gimp/gimp/devel/${VERSION}/ \
ftp://ftp.gimp.org/pub/gimp/devel/${VERSION}/ \
http://www.freebsd.org/~erich/
MAINTAINER= erich@FreeBSD.org
1997-10-15 20:18:02 +00:00
LIB_DEPENDS+= gtk\\.1\\.0:${PORTSDIR}/x11/gtk
LIB_DEPENDS+= png\\.0\\.[7-9]:${PORTSDIR}/graphics/png
1996-11-20 11:11:35 +00:00
LIB_DEPENDS+= jpeg\\.7\\.:${PORTSDIR}/graphics/jpeg
LIB_DEPENDS+= tiff\\.3\\.:${PORTSDIR}/graphics/tiff
LIB_DEPENDS+= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm
1997-10-15 20:18:02 +00:00
LIB_DEPENDS+= mpeg\\.1\\.2:${PORTSDIR}/graphics/mpeg-lib
LIB_DEPENDS+= tk80\\.1\\.:${PORTSDIR}/x11/tk80
USE_X11= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
1997-10-15 20:18:02 +00:00
CONFIGURE_ENV= CPPFLAGS=-I/usr/local/include LIBS=-L/usr/local/lib
1997-04-18 21:26:41 +00:00
DATASTUFF= brushes palettes gradients patterns
post-install:
1997-10-15 20:18:02 +00:00
cd ${WRKDIR}/gimp-data-min-${VERSION}; \
tar -cf - --exclude '*Makefile*' ${DATASTUFF} |\
(cd ${PREFIX}/share/gimp/${VERSION}; tar -xvf -)
cd ${WRKDIR}/gimp-data-extras-${VERSION}; \
1997-04-18 21:26:41 +00:00
tar -cf - --exclude '*Makefile*' ${DATASTUFF} |\
(cd ${PREFIX}/share/gimp/${VERSION}; tar -xvf -)
.include <bsd.port.mk>
1997-02-28 19:19:40 +00:00