diff options
author | steve <steve@FreeBSD.org> | 1999-06-06 16:55:02 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-06-06 16:55:02 +0000 |
commit | a7a0e127342f2cf9c7c0edacaa8b7e8d8d40845a (patch) | |
tree | aaef500d4c68bfcd5799e550c3570869609e2bea /security | |
parent | 290b6ab0ccbadf2981f20fb899284cca000ab5d6 (diff) | |
download | FreeBSD-ports-a7a0e127342f2cf9c7c0edacaa8b7e8d8d40845a.zip FreeBSD-ports-a7a0e127342f2cf9c7c0edacaa8b7e8d8d40845a.tar.gz |
Update to version 3.2.
PR: 12018
Submitted by: maintainer
Diffstat (limited to 'security')
-rw-r--r-- | security/stunnel/Makefile | 29 | ||||
-rw-r--r-- | security/stunnel/distinfo | 2 | ||||
-rw-r--r-- | security/stunnel/files/patch-ac | 13 |
3 files changed, 40 insertions, 4 deletions
diff --git a/security/stunnel/Makefile b/security/stunnel/Makefile index e8a6cd3..4b4c275 100644 --- a/security/stunnel/Makefile +++ b/security/stunnel/Makefile @@ -1,14 +1,15 @@ # New ports collection makefile for: stunnel -# Version required: 2.1 +# Version required: 3.2 # Date created: Mon Jan 11 11:53:54 EET 1999 # Whom: Martti Kuparinen <martti.kuparinen@ericsson.com> # -# $Id: Makefile,v 1.3 1999/03/29 14:54:37 dirk Exp $ +# $Id: Makefile,v 1.4 1999/05/03 02:10:08 steve Exp $ # -DISTNAME= stunnel-2.1 +DISTNAME= stunnel-3.2 CATEGORIES= security MASTER_SITES= http://mike.daewoo.com.pl/computer/stunnel/ \ + http://opensores.thebunker.net/pub/mirrors/stunnel/ \ ftp://ftp.fu-berlin.de/unix/security/stunnel/ \ ftp://ftp.uni-freiburg.de/pub/net/stunnel/ \ ftp://ftp.all.de/pub2/unix/security/stunnel/ @@ -29,4 +30,26 @@ GNU_CONFIGURE= yes WRKSRC= ${WRKDIR}/stunnel MAN8= stunnel.8 +cert: + @(cd ${WRKSRC}; make cert) + +post-build: + @${ECHO} "" + @${ECHO} "********************************************************************" + @${ECHO} "To create and install a real certificate, execute \"make cert\" before" + @${ECHO} "\"make install\"." + @${ECHO} "" + @${ECHO} "You can also create a real certificate later by executing" + @${ECHO} " # make cert" + @${ECHO} " # cp work/stunnel/stunnel.pem ${PREFIX}/certs/" + @${ECHO} "********************************************************************" + @${ECHO} "" + +post-install: + @${ECHO} "" + @${ECHO} "**************************************************************************" + @${ECHO} "Please check out the FAQ at http://mike.daewoo.com.pl/computer/stunnel/FAQ" + @${ECHO} "**************************************************************************" + @${ECHO} "" + .include <bsd.port.mk> diff --git a/security/stunnel/distinfo b/security/stunnel/distinfo index e798c1d..27bde30 100644 --- a/security/stunnel/distinfo +++ b/security/stunnel/distinfo @@ -1 +1 @@ -MD5 (stunnel-2.1.tar.gz) = 3409d14c4916be25fe88d5f24c90f7cf +MD5 (stunnel-3.2.tar.gz) = 16efa198ba58561fc835dc1b4bfdd63c diff --git a/security/stunnel/files/patch-ac b/security/stunnel/files/patch-ac new file mode 100644 index 0000000..a502f71 --- /dev/null +++ b/security/stunnel/files/patch-ac @@ -0,0 +1,13 @@ +*** configure.in.orig Tue Apr 27 18:38:28 1999 +--- configure.in Thu Jun 3 11:24:20 1999 +*************** +*** 16,21 **** +--- 16,23 ---- + SSLDIR="/usr/local/ssl" + test -f $SSLDIR/include/ssl.h || SSLDIR="/usr/lib/ssl" + test -f $SSLDIR/include/ssl.h || SSLDIR="/usr" ++ test -f $SSLDIR/include/ssl.h || SSLDIR="/usr/local" ++ test -f $SSLDIR/include/openssl/ssl.h || SSLDIR="/usr/local" + AC_MSG_RESULT($SSLDIR) + AC_SUBST(SSLDIR) + AC_DEFINE_UNQUOTED(SSLDIR, "$SSLDIR") |