summaryrefslogtreecommitdiff
path: root/x11/lesstif
diff options
context:
space:
mode:
authorjlam <jlam>2001-02-26 17:01:59 +0000
committerjlam <jlam>2001-02-26 17:01:59 +0000
commitc2ad0bfa75a4dd3485a9fb98502bd79f16845b04 (patch)
tree8fdbb3c63e832e67baa59cc9e68d395640c19f7b /x11/lesstif
parent1f7bc8057aec4707a8ba2f8cf000845bae4ca5f5 (diff)
downloadpkgsrc-c2ad0bfa75a4dd3485a9fb98502bd79f16845b04.tar.gz
Mechanical changes to use the pkgsrc autoconf and automake by specifying
complete paths to these programs.
Diffstat (limited to 'x11/lesstif')
-rw-r--r--x11/lesstif/Makefile.common14
1 files changed, 9 insertions, 5 deletions
diff --git a/x11/lesstif/Makefile.common b/x11/lesstif/Makefile.common
index 2206bc6ae43..19482a2176c 100644
--- a/x11/lesstif/Makefile.common
+++ b/x11/lesstif/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.4 2000/12/22 17:26:18 jlam Exp $
+# $NetBSD: Makefile.common,v 1.5 2001/02/26 17:02:00 jlam Exp $
DISTNAME= lesstif-${LESSTIF_VERSION}
LESSTIF_VERSION= 0.92.6
@@ -13,8 +13,8 @@ MASTER_SITES= ftp://ftp.hungry.com/pub/hungry/lesstif/srcdist/ \
MAINTAINER= jlam@netbsd.org
HOMEPAGE= http://www.lesstif.org/
-BUILD_DEPENDS+= autoconf:../../devel/autoconf
-BUILD_DEPENDS+= automake:../../devel/automake
+BUILD_DEPENDS+= ${LOCALBASE}/bin/autoconf:../../devel/autoconf
+BUILD_DEPENDS+= ${LOCALBASE}/bin/automake:../../devel/automake
USE_X11BASE= # defined
USE_GMAKE= # defined
@@ -43,8 +43,12 @@ pre-configure:
${TOUCH} ${WRKDIR}/nonexecutable
${CHMOD} a-x ${WRKDIR}/nonexecutable
for dir in . lib/Xlt lib/Xbae test ; do \
- cd ${WRKSRC}/$$dir && libtoolize --force && aclocal \
- && autoheader && automake -a -i && autoconf; \
+ cd ${WRKSRC}/$$dir \
+ && ${LOCALBASE}/bin/libtoolize --force \
+ && ${LOCALBASE}/bin/aclocal \
+ && ${LOCALBASE}/bin/autoheader \
+ && ${LOCALBASE}/bin/automake -a -i \
+ && ${LOCALBASE}/bin/autoconf; \
done
.include "../../mk/bsd.pkg.mk"