summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2001-02-26 17:01:59 +0000
committerjlam <jlam@pkgsrc.org>2001-02-26 17:01:59 +0000
commite9dee5bd113bf0024e6d843d62060d88816b8e6c (patch)
tree8fdbb3c63e832e67baa59cc9e68d395640c19f7b /graphics
parent014b8a5dcedef93daf7b1ebbfb7cf7e7ee6001e6 (diff)
downloadpkgsrc-e9dee5bd113bf0024e6d843d62060d88816b8e6c.tar.gz
Mechanical changes to use the pkgsrc autoconf and automake by specifying
complete paths to these programs.
Diffstat (limited to 'graphics')
-rw-r--r--graphics/gdk-pixbuf/Makefile.common10
1 files changed, 6 insertions, 4 deletions
diff --git a/graphics/gdk-pixbuf/Makefile.common b/graphics/gdk-pixbuf/Makefile.common
index 9ba7dbd4679..b426b27be0f 100644
--- a/graphics/gdk-pixbuf/Makefile.common
+++ b/graphics/gdk-pixbuf/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.2 2000/12/08 17:32:16 wiz Exp $
+# $NetBSD: Makefile.common,v 1.3 2001/02/26 17:01:59 jlam Exp $
#
DISTNAME= gdk-pixbuf-0.9.0
@@ -8,8 +8,8 @@ MASTER_SITES= ${MASTER_SITE_GNOME:=unstable/sources/gdk-pixbuf/}
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.gnome.org/
-BUILD_DEPENDS+= autoreconf:../../devel/autoconf
-BUILD_DEPENDS+= automake:../../devel/automake
+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
@@ -30,4 +30,6 @@ FILESDIR= ${.CURDIR}/../gdk-pixbuf/files
PATCHDIR= ${.CURDIR}/../gdk-pixbuf/patches
pre-configure:
- cd ${WRKSRC} && ${SETENV} autoconf && ${SETENV} automake
+ cd ${WRKSRC} \
+ && ${SETENV} ${LOCALBASE}/bin/autoconf \
+ && ${SETENV} ${LOCALBASE}/bin/automake