diff options
author | thorpej <thorpej> | 2000-04-25 19:10:10 +0000 |
---|---|---|
committer | thorpej <thorpej> | 2000-04-25 19:10:10 +0000 |
commit | b4c7915d607565368b123e6f75aec326661bafe0 (patch) | |
tree | 2dec0fd5dd8867677f0d2df3ba384c1efd439cbe /security | |
parent | 8240ded2f6f33f10d1a5c087634f3522d5ffd3f6 (diff) | |
download | pkgsrc-b4c7915d607565368b123e6f75aec326661bafe0.tar.gz |
If PATENTEDOPENSSLSRC is present in the build environment, then
assume that a full (i.e. "with RSA") OpenSSL installation already
exists on the system (and thus a dependency on ../security/openssl
is not needed).
Diffstat (limited to 'security')
-rw-r--r-- | security/isakmpd/Makefile | 7 | ||||
-rw-r--r-- | security/racoon/Makefile | 7 |
2 files changed, 12 insertions, 2 deletions
diff --git a/security/isakmpd/Makefile b/security/isakmpd/Makefile index 74f0e415074..43255cac86c 100644 --- a/security/isakmpd/Makefile +++ b/security/isakmpd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2000/04/12 15:09:50 itojun Exp $ +# $NetBSD: Makefile,v 1.3 2000/04/25 19:10:11 thorpej Exp $ # DISTNAME= isakmpd-000220 @@ -17,7 +17,12 @@ MAINTAINER= itojun@kame.net IGNORE+= "requires ipsec-ready NetBSD" .endif +# if PATENTEDOPENSSLSRC is defined, then we assume that +# RSA already exists in the OpenSSL built as part of the +# base distribution. +.if !defined(PATENTEDOPENSSLSRC) DEPENDS+= openssl-0.9.4:../../security/openssl +.endif DEPENDS+= gmp-*:../../devel/gmp RESTRICTED= "Crypto; export-controlled" diff --git a/security/racoon/Makefile b/security/racoon/Makefile index 4125d6075e3..880120586c1 100644 --- a/security/racoon/Makefile +++ b/security/racoon/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2000/04/21 02:34:43 explorer Exp $ +# $NetBSD: Makefile,v 1.6 2000/04/25 19:10:10 thorpej Exp $ # DISTNAME= racoon-0.0 @@ -13,7 +13,12 @@ IGNORE+= "requires ipsec-ready NetBSD" .endif # openssl is necessary for RSA libraries +# if PATENTEDOPENSSLSRC is defined, then we assume that +# RSA already exists in the OpenSSL built as part of the +# base distribution. +.if !defined(PATENTEDOPENSSLSRC) DEPENDS+= openssl-0.9.*:../../security/openssl +.endif BUILD_DEPENDS+= cvs:../../devel/cvs CONFLICTS+= racoon-* |