diff options
author | jlam <jlam@pkgsrc.org> | 2004-10-07 02:01:37 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-10-07 02:01:37 +0000 |
commit | c83f47a4c9ec7ce3bb535777b59820a9a7479cb8 (patch) | |
tree | 15912261de9f656cabfa82bfc7708e5e4ee1ae67 /net | |
parent | a57c944c01a8d7eaa7989f88b72fa9b36a077982 (diff) | |
download | pkgsrc-c83f47a4c9ec7ce3bb535777b59820a9a7479cb8.tar.gz |
* Make PKGSRC_TOPDIR a private variable by renaming it to _PKGSRC_TOPDIR,
as it's only used internally by bsd.prefs.mk.
* Make _PKGSRCDIR a public variable by renaming it to PKGSRCDIR.
Also, generate its value from ${_PKGSRC_TOPDIR} so it's less fragile
than the old method of stripping off the last two components of
${.CURDIR}. PKGSRCDIR may now be used after bsd.prefs.mk is defined.
* Change all references to _PKGSRCDIR to PKGSRCDIR.
Diffstat (limited to 'net')
-rw-r--r-- | net/ppp-mppe/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ppp-mppe/Makefile b/net/ppp-mppe/Makefile index 5ba3e558791..21bb0a52a19 100644 --- a/net/ppp-mppe/Makefile +++ b/net/ppp-mppe/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2004/05/23 15:09:06 heinz Exp $ +# $NetBSD: Makefile,v 1.27 2004/10/07 02:01:38 jlam Exp $ DISTNAME= ppp-2.3.9 PKGNAME= ppp-mppe-2.3.9 @@ -14,9 +14,6 @@ CONFLICTS+= ppp-2.* ONLY_FOR_PLATFORM= NetBSD-*-* -OPENSSL_VERS= 0.9.6m -OPENSSL_SRC= ${_PKGSRCDIR}/security/openssl/${WRKDIR:T}/openssl-${OPENSSL_VERS} - HAS_CONFIGURE= yes MANCOMPRESSED_IF_MANZ= yes @@ -24,6 +21,9 @@ MANCOMPRESSED_IF_MANZ= yes BUILD_DEFS+= MANINSTALL +OPENSSL_VERS= 0.9.6m +OPENSSL_SRC= ${PKGSRCDIR}/security/openssl/${WRKDIR:T}/openssl-${OPENSSL_VERS} + post-extract: if [ ! -r ${OPENSSL_SRC}/crypto/rc4 ]; then \ cd ../../security/openssl && ${MAKE} extract; \ |