blob: b426b27be0f3bf8b53906675f9a4947c5cd12435 (
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
|
# $NetBSD: Makefile.common,v 1.3 2001/02/26 17:01:59 jlam Exp $
#
DISTNAME= gdk-pixbuf-0.9.0
CATEGORIES= graphics devel
MASTER_SITES= ${MASTER_SITE_GNOME:=unstable/sources/gdk-pixbuf/}
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.gnome.org/
BUILD_DEPENDS+= ${LOCALBASE}/bin/autoreconf:../../devel/autoconf
BUILD_DEPENDS+= ${LOCALBASE}/bin/automake:../../devel/automake
DEPENDS+= gtk+>=1.2.8:../../x11/gtk
DEPENDS+= png>=1.0.8:../../graphics/png
DEPENDS+= tiff>=3.5.5:../../graphics/tiff
DEPENDS+= jpeg-6b:../../graphics/jpeg
USE_GMAKE= # defined
USE_X11BASE= # defined
USE_LIBTOOL= # defined
LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig
GNU_CONFIGURE= # defined
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}"
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -Wl,-R${LOCALBASE}/lib -L${LOCALBASE}/lib
PLIST_SUBST+= LOCALBASE=${LOCALBASE}
FILESDIR= ${.CURDIR}/../gdk-pixbuf/files
PATCHDIR= ${.CURDIR}/../gdk-pixbuf/patches
pre-configure:
cd ${WRKSRC} \
&& ${SETENV} ${LOCALBASE}/bin/autoconf \
&& ${SETENV} ${LOCALBASE}/bin/automake
|