diff options
author | tron <tron> | 2001-02-05 09:00:54 +0000 |
---|---|---|
committer | tron <tron> | 2001-02-05 09:00:54 +0000 |
commit | 732964d7838ca5e8355397759068795660c65368 (patch) | |
tree | 2c1d493d315c86d062bda624e834a3d6f66707c0 /print | |
parent | 81b3c0bc7a64ea4999e6fb86448d93a694ed442b (diff) | |
download | pkgsrc-732964d7838ca5e8355397759068795660c65368.tar.gz |
Use full pathname "${LOCALBASE}/bin/auto..." in dependences and make
targets. This includes a fix for PR pkg/12125 by Tomasz Luchowski.
Diffstat (limited to 'print')
-rw-r--r-- | print/cups/Makefile | 6 | ||||
-rw-r--r-- | print/xpp/Makefile | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/print/cups/Makefile b/print/cups/Makefile index e3195fc6d5c..ade0e3ae778 100644 --- a/print/cups/Makefile +++ b/print/cups/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2001/01/28 02:05:36 jlam Exp $ +# $NetBSD: Makefile,v 1.20 2001/02/05 09:01:02 tron Exp $ # DISTNAME= cups-${VERS}-1-source @@ -18,7 +18,7 @@ HOMEPAGE= http://www.cups.org/ CONFLICTS+= LPRng-[0-9]* LPRng-core-[0-9]* -BUILD_DEPENDS+= autoconf:../../devel/autoconf +BUILD_DEPENDS+= ${LOCALBASE}/bin/autoconf:../../devel/autoconf DEPENDS+= jpeg-6b:../../graphics/jpeg DEPENDS+= png>=1.0.6:../../graphics/png DEPENDS+= tiff-*:../../graphics/tiff @@ -85,7 +85,7 @@ post-patch: cd ${WRKSRC}/scripts; ${CHMOD} +x netbsd sysv pre-configure: - cd ${WRKSRC} && autoconf + cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf post-build: ${SED} -e "s,@CUPS_USER@,${CUPS_USER},g" \ diff --git a/print/xpp/Makefile b/print/xpp/Makefile index 97af83f51b9..fc83e8c5fa0 100644 --- a/print/xpp/Makefile +++ b/print/xpp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2001/01/30 16:37:55 jlam Exp $ +# $NetBSD: Makefile,v 1.5 2001/02/05 09:01:02 tron Exp $ DISTNAME= xpp-1.0 CATEGORIES= print x11 @@ -7,7 +7,7 @@ MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cups/} MAINTAINER= jlam@netbsd.org HOMEPAGE= http://cups.sourceforge.net/xpp/index.html -BUILD_DEPENDS+= autoconf:../../devel/autoconf +BUILD_DEPENDS+= ${LOCALBASE}/bin/autoconf:../../devel/autoconf DEPENDS+= cups>=1.1.1:../../print/cups DEPENDS+= fltk>=1.0.9:../../x11/fltk @@ -24,7 +24,7 @@ CPPFLAGS+= -I${LOCALBASE}/include # cups/cups.h DOCDIR= ${PREFIX}/share/doc/xpp pre-configure: - cd ${WRKSRC} && autoconf && touch aclocal.m4 Makefile.in + cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf && touch aclocal.m4 Makefile.in post-install: ${INSTALL_DATA_DIR} ${DOCDIR} |