From 989186de9e8e30ea545865cb1c3093b849b80fc7 Mon Sep 17 00:00:00 2001 From: dirk Date: Thu, 30 Dec 1999 11:13:37 +0000 Subject: Check wheather OpenSSL is installed in the base system already and skip openssl port if so. (I. e. check the existence of /usr/bin/openssl, /usr/lib/libcrypto.so and /usr/lib/libssl.so. If they exist set FORBIDDEN.) --- security/openssl/Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'security/openssl/Makefile') diff --git a/security/openssl/Makefile b/security/openssl/Makefile index ec5835514d83..70eef9eae29c 100644 --- a/security/openssl/Makefile +++ b/security/openssl/Makefile @@ -15,6 +15,10 @@ MASTER_SITES= http://www.openssl.org/source/ \ MAINTAINER= dirk@FreeBSD.org +.if exists(/usr/bin/openssl) && exists(/usr/lib/libcrypto.so) && exists(/usr/lib/libssl.so) +FORBIDDEN= "OpenSSL is already in the base system" +.endif + RESTRICTED= "Cryptography" USE_PERL5= yes ALL_TARGET= freebsd-shared all -- cgit