summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2001-02-05 09:00:54 +0000
committertron <tron@pkgsrc.org>2001-02-05 09:00:54 +0000
commitf2d262e0bef754371e35855c069d92d11d7759bb (patch)
tree2c1d493d315c86d062bda624e834a3d6f66707c0 /security
parent338eba73e20d12e6e7ee7489e26135aaeaef3369 (diff)
downloadpkgsrc-f2d262e0bef754371e35855c069d92d11d7759bb.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 'security')
-rw-r--r--security/cyrus-sasl/Makefile6
-rw-r--r--security/openssh/Makefile6
-rw-r--r--security/pakemon/Makefile4
-rw-r--r--security/srp_client/Makefile6
-rw-r--r--security/stunnel/Makefile6
-rw-r--r--security/sudo/Makefile6
6 files changed, 17 insertions, 17 deletions
diff --git a/security/cyrus-sasl/Makefile b/security/cyrus-sasl/Makefile
index dd4791aba56..e9a5f2867dc 100644
--- a/security/cyrus-sasl/Makefile
+++ b/security/cyrus-sasl/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2001/01/31 22:52:21 jlam Exp $
+# $NetBSD: Makefile,v 1.11 2001/02/05 09:01:03 tron Exp $
DISTNAME= cyrus-sasl-1.5.24
PKGNAME= ${DISTNAME}nb3
@@ -9,7 +9,7 @@ MASTER_SITES= ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/ \
MAINTAINER= jlam@netbsd.org
HOMEPAGE= http://asg2.web.cmu.edu/sasl/
-BUILD_DEPENDS+= automake:../../devel/automake
+BUILD_DEPENDS+= ${LOCALBASE}/bin/automake:../../devel/automake
GNU_CONFIGURE= # defined
USE_SSL= # defined
@@ -93,7 +93,7 @@ post-extract:
${CP} ${FILESDIR}/sasl-config.in ${WRKSRC}/plugins
pre-configure:
- cd ${WRKSRC} && autoheader && autoconf && automake --gnu
+ cd ${WRKSRC} && ${LOCALBASE}/bin/autoheader && ${LOCALBASE}/bin/autoconf && ${LOCALBASE}/bin/automake --gnu
post-build:
${SED} -e "s,@PREFIX@,${PREFIX},g" \
diff --git a/security/openssh/Makefile b/security/openssh/Makefile
index 2427e92f471..31fe684abf4 100644
--- a/security/openssh/Makefile
+++ b/security/openssh/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.35 2001/01/29 11:34:41 wiz Exp $
+# $NetBSD: Makefile,v 1.36 2001/02/05 09:01:03 tron Exp $
DISTNAME= openssh-2.3.0p1
CATEGORIES= security
@@ -16,7 +16,7 @@ MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.openssh.com/
BUILD_DEPENDS+= ${PERL5}:../../lang/perl5-base
-BUILD_DEPENDS+= autoreconf:../../devel/autoconf
+BUILD_DEPENDS+= ${LOCALBASE}/bin/autoremake:../../devel/autoconf
CRYPTO= yes
@@ -81,7 +81,7 @@ PLIST_SRC= ${PKGDIR}/PLIST.SunOS
.endif
pre-configure:
- cd ${WRKSRC} && autoreconf
+ cd ${WRKSRC} && ${LOCALBASE}/bin/autoremake
post-build:
for FILE in \
diff --git a/security/pakemon/Makefile b/security/pakemon/Makefile
index 30a635546dd..8f29e1ab390 100644
--- a/security/pakemon/Makefile
+++ b/security/pakemon/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1.1.1 2001/01/09 06:32:42 itojun Exp $
+# $NetBSD: Makefile,v 1.2 2001/02/05 09:01:03 tron Exp $
DISTNAME= pakemon-0.3.1
CATEGORIES= security
@@ -12,7 +12,7 @@ DEPENDS+= libnet-*:../../devel/libnet
# only at compile-time.
#
BUILD_DEPENDS+= ${LOCALBASE}/lib/libnids.a:../../net/libnids
-BUILD_DEPENDS+= autoreconf:../../devel/autoconf
+BUILD_DEPENDS+= ${LOCALBASE}/bin/autoremake:../../devel/autoconf
GNU_CONFIGURE= yes
diff --git a/security/srp_client/Makefile b/security/srp_client/Makefile
index 2235c02a53b..271f694527e 100644
--- a/security/srp_client/Makefile
+++ b/security/srp_client/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2000/09/09 20:23:49 fredb Exp $
+# $NetBSD: Makefile,v 1.10 2001/02/05 09:01:03 tron Exp $
#
DISTNAME= srp-1.4.4
@@ -9,8 +9,8 @@ MASTER_SITES= ftp://ftp.win.or.jp/pub/network/security/srp/
MAINTAINER= jlam@netbsd.org
#HOMEPAGE= http://srp.stanford.edu/srp/
-BUILD_DEPENDS+= autoconf:../../devel/autoconf
-BUILD_DEPENDS+= automake:../../devel/automake
+BUILD_DEPENDS+= ${LOCALBASE}/bin/autoconf:../../devel/autoconf
+BUILD_DEPENDS+= ${LOCALBASE}/bin/automake:../../devel/automake
DEPENDS+= gmp>=2.0.2:../../devel/gmp
CRYPTO= yes
diff --git a/security/stunnel/Makefile b/security/stunnel/Makefile
index 92fdb50c2d4..9ce6042c363 100644
--- a/security/stunnel/Makefile
+++ b/security/stunnel/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2001/01/29 20:42:41 martin Exp $
+# $NetBSD: Makefile,v 1.12 2001/02/05 09:01:03 tron Exp $
#
DISTNAME= stunnel-3.13
@@ -8,7 +8,7 @@ MASTER_SITES= http://www.stunnel.org/download/stunnel/src/
MAINTAINER= martin@NetBSD.ORG
HOMEPAGE= http://www.stunnel.org/
-BUILD_DEPENDS+= autoconf:../../devel/autoconf
+BUILD_DEPENDS+= ${LOCALBASE}/bin/autoconf:../../devel/autoconf
DEPENDS+= pth>=1.3.5:../../devel/pth
USE_SSL= # defined
@@ -18,6 +18,6 @@ CONFIGURE_ARGS+= --with-ssl=${SSLBASE} \
--with-pem-dir="${SSLCERTS}"
pre-configure:
- cd ${WRKSRC} && autoreconf
+ cd ${WRKSRC} && ${LOCALBASE}/bin/autoremake
.include "../../mk/bsd.pkg.mk"
diff --git a/security/sudo/Makefile b/security/sudo/Makefile
index a29f34823b2..c4a96639ed9 100644
--- a/security/sudo/Makefile
+++ b/security/sudo/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.29 2001/01/29 11:34:42 wiz Exp $
+# $NetBSD: Makefile,v 1.30 2001/02/05 09:01:03 tron Exp $
# FreeBSD Id: Makefile,v 1.9 1997/11/12 03:24:41 obrien Exp
#
@@ -13,7 +13,7 @@ MASTER_SITES= http://www.courtesan.com/sudo/dist/ \
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.courtesan.com/sudo/
-BUILD_DEPENDS+= autoconf:../../devel/autoconf
+BUILD_DEPENDS+= ${LOCALBASE}/bin/autoconf:../../devel/autoconf
.include "../../mk/bsd.prefs.mk"
@@ -48,7 +48,7 @@ DOCDIR= ${PREFIX}/share/doc/sudo
EGDIR= ${PREFIX}/share/examples/sudo
pre-configure:
- cd ${WRKSRC} && autoconf
+ cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf
post-install:
${INSTALL_DATA_DIR} ${DOCDIR}