diff options
author | wiz <wiz> | 2001-04-22 19:48:52 +0000 |
---|---|---|
committer | wiz <wiz> | 2001-04-22 19:48:52 +0000 |
commit | a3fd47823735d2d1e6b99d27280f9e3bdd1e300d (patch) | |
tree | 5b7becaa53920c8a3748a1363d3e70fce51179ed /net/ppp-mppe/Makefile | |
parent | 966192ad8a013dfef0c273bf9c78bba01ff7d6ee (diff) | |
download | pkgsrc-a3fd47823735d2d1e6b99d27280f9e3bdd1e300d.tar.gz |
Now using openssl 0.9.6, and move the openssl extraction earlier.
Diffstat (limited to 'net/ppp-mppe/Makefile')
-rw-r--r-- | net/ppp-mppe/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/net/ppp-mppe/Makefile b/net/ppp-mppe/Makefile index b97c85fb230..bde119f48e9 100644 --- a/net/ppp-mppe/Makefile +++ b/net/ppp-mppe/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2001/04/02 22:52:25 wiz Exp $ +# $NetBSD: Makefile,v 1.9 2001/04/22 19:48:52 wiz Exp $ DISTNAME= ppp-2.3.9 PKGNAME= ppp-mppe-2.3.9 @@ -9,13 +9,16 @@ MAINTAINER= dbj@netbsd.org HOMEPAGE= http://www.moretonbay.com/vpn/releases/ COMMENT= PPP daemon and LKM with MPPE - Microsoft Point-to-Point Encryption -OPENSSL_VERS= 0.9.5a +OPENSSL_VERS= 0.9.6 OPENSSL_SRC= ${BUILD_ROOT}/security/openssl/${WRKDIR:T}/openssl-${OPENSSL_VERS} HAS_CONFIGURE= yes MANCOMPRESSED_IF_MANZ= yes post-extract: + if [ ! -e ${OPENSSL_SRC}/crypto/rc4 ]; then \ + cd ../../security/openssl && ${MAKE} extract; \ + fi @${LN} -sf ${OPENSSL_SRC}/include/openssl ${WRKSRC}/pppd/openssl @${CP} ${OPENSSL_SRC}/crypto/md32_common.h ${WRKSRC}/pppd/md32_common.h @${CP} ${OPENSSL_SRC}/crypto/sha/sha.h ${WRKSRC}/pppd/sha.h @@ -33,11 +36,6 @@ post-extract: @${CP} ${OPENSSL_SRC}/crypto/sha/sha_locl.h ${WRKSRC}/netbsd-1.4/sha_locl.h @${CP} ${OPENSSL_SRC}/crypto/sha/sha.h ${WRKSRC}/netbsd-1.4/sha.h -pre-configure: - if [ ! -e ${OPENSSL_SRC}/crypto/rc4 ]; then \ - cd ../../security/openssl && ${MAKE} extract; \ - fi - pre-install: ${INSTALL_PROGRAM_DIR} ${PREFIX}/lkm |