summaryrefslogtreecommitdiff
path: root/graphics/gimp-base/Makefile
blob: 2bef18b17b334b133467a7aedba6895416742f3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# $NetBSD: Makefile,v 1.1.1.1 2002/02/15 20:52:36 drochner Exp $

DISTNAME=		gimp-1.2.3
PKGNAME=		gimp-base-1.2.3
CATEGORIES=		graphics
MASTER_SITES=		ftp://ftp.gimp.org/pub/gimp/v1.2/v1.2.3/ \
		ftp://ftp.fu-berlin.de/unix/X11/graphics/gimp/v1.2/v1.2.3/ \
		ftp://ftp.cs.umn.edu/pub/gimp/gimp/v1.2/v1.2.3/
EXTRACT_SUFX=		.tar.bz2

MAINTAINER=		hubertf@netbsd.org
HOMEPAGE=		http://www.gimp.org/
COMMENT=		Image manipulation program similar to Photoshop[tm]

CONFLICTS+=		gimp<=1.2.3

USE_BUILDLINK_ONLY=	yes
USE_GMAKE=		yes
USE_LIBTOOL=		yes
LIBTOOL_OVERRIDE=	${WRKSRC}/libtool
BUILD_USES_MSGFMT=	yes

GNU_CONFIGURE=		yes
CONFIGURE_ARGS+=	--disable-perl
CONFIGURE_ARGS+=	--disable-python

# Add settings for MPEG, LIBMPEG, and GAP_DECODE_MPEG to properly support
# the MPEG library from graphics/mpeg-lib that changed it's name, as the
# configure script will default to searching from -lmpeg.
#
CONFIGURE_ENV+=		MPEG="mpeg"
CONFIGURE_ENV+=		LIBMPEG="-lmpeg_lib"
CONFIGURE_ENV+=		GAP_DECODE_MPEG="gap_decode_mpeg"

LDFLAGS+=		-Wl,--export-dynamic
MAKE_ENV+=		X11BASE=${X11BASE}

PLIST_SUBST+=		LOCALBASE=${LOCALBASE}

# make sure the installed "gimptool" doesn't refer to .buildlink
ORIG_GTK_CFLAGS!=	gtk-config --cflags
GIMPTOOL_SUBST=		-e "s|@ORIG_GTK_CFLAGS@|${ORIG_GTK_CFLAGS}|g"
ORIG_GTK_LIBS!=		gtk-config --libs
GIMPTOOL_SUBST+=	-e "s|@ORIG_GTK_LIBS@|${ORIG_GTK_LIBS}|g"
ORIG_GLIB_CFLAGS!=	glib-config --cflags
GIMPTOOL_SUBST+=	-e "s|@ORIG_GLIB_CFLAGS@|${ORIG_GLIB_CFLAGS}|g"
ORIG_GLIB_LIBS!=	glib-config --libs
GIMPTOOL_SUBST+=	-e "s|@ORIG_GLIB_LIBS@|${ORIG_GLIB_LIBS}|g"
ORIG_CFLAGS=		-I${PREFIX}/include -I${X11BASE}/include
GIMPTOOL_SUBST+=	-e "s|@ORIG_CFLAGS@|${ORIG_CFLAGS}|g"
ORIG_LDFLAGS=		-L${PREFIX}/lib -Wl,-R${PREFIX}/lib
ORIG_LDFLAGS+=		-L${X11BASE}/lib -Wl,-R${X11BASE}/lib
GIMPTOOL_SUBST+=	-e "s|@ORIG_LDFLAGS@|${ORIG_LDFLAGS}|g"

# Remove -I$(includedir) from the INCLUDES passed to the compiler as this
# defeats buildlink.
#
post-patch:
	cd ${WRKSRC};							\
	files=`${FIND} . -name "Makefile.in" -print`;			\
	for file in $${files}; do					\
		${MV} -f $${file} $${file}.fixme;			\
		${SED} -e "/^INCLUDES.*=.*/s|[ 	]*-I\$$(includedir)||"	\
			$${file}.fixme > $${file};			\
		${RM} $${file}.fixme;					\
	done

post-configure:
	${SED} ${GIMPTOOL_SUBST} <${WRKSRC}/gimptool-1.2 \
	 >${WRKSRC}/gimptool-1.2.tmp && \
	${MV} ${WRKSRC}/gimptool-1.2.tmp ${WRKSRC}/gimptool-1.2

pre-build:
	${LINK.c} -o ${WRKSRC}/docs/pdb_self_doc ${FILESDIR}/pdb_self_doc.c

post-install:
	${TEST} ${PREFIX} = ${LOCALBASE} ||				\
		${LN} -fs ${PREFIX}/share/aclocal/gimp.m4		\
			${LOCALBASE}/share/aclocal/gimp.m4

.include "../../devel/gettext-lib/buildlink.mk"
.include "../../graphics/mpeg-lib/buildlink.mk"
.include "../../x11/gnome-libs/buildlink.mk"
.include "../../mk/x11.buildlink.mk"
.include "../../mk/bsd.pkg.mk"