diff options
Diffstat (limited to 'security/stunnel/Makefile')
-rw-r--r-- | security/stunnel/Makefile | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/security/stunnel/Makefile b/security/stunnel/Makefile index e8a6cd38ac9b..4b4c2759f52b 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> |