aboutsummaryrefslogtreecommitdiffstats
path: root/security/stunnel/Makefile
blob: 8b41f3b2f710182f25ccbfe5aac7d0de4212aa7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# New ports collection makefile for:    stunnel
# Date created:     Mon Jan 11 11:53:54 EET 1999
# Whom:         Martti Kuparinen <martti.kuparinen@ericsson.com>
#
# $FreeBSD$
#

PORTNAME=   stunnel
PORTVERSION=    3.10
CATEGORIES= security
MASTER_SITES=   http://www.stunnel.org/download/stunnel/src/ \
        ftp://opensores.thebunker.net/pub/mirrors/stunnel/ \
        ftp://mike.daewoo.com.pl/pub/stunnel/ \
        ftp://ftp.cryptoarchive.net/pub/cryptoarchive/mirrors/opensores.thebunker.net/pub/mirrors/stunnel/

MAINTAINER= martti.kuparinen@ericsson.com

USE_OPENSSL=    YES

USE_AUTOCONF=   yes
CONFIGURE_ARGS= --localstatedir=/var/run

MAN8=       stunnel.8

post-install:
    @${SED} "s+!!PREFIX!!+${PREFIX}+g" < ${FILESDIR}/stunnel.sh \
        > ${PREFIX}/etc/rc.d/stunnel.sh.sample
    @${CHMOD} 755 ${PREFIX}/etc/rc.d/stunnel.sh.sample
    @${ECHO} ""
    @${ECHO} "**************************************************************************"
    @${ECHO} "To create and install a new certificate, type \"make cert\""
    @${ECHO} ""
    @${ECHO} "And don't forget to check out the FAQ at http://www.stunnel.org/"
    @${ECHO} "**************************************************************************"
    @${ECHO} ""

cert:
    @${ECHO} ""
    @${ECHO} "**************************************************************************"
    @${ECHO} "The new certificate will be saved into ${PREFIX}/etc/stunnel.pem"
    @${ECHO} "**************************************************************************"
    @${ECHO} ""
    @(cd ${WRKSRC}; make cert)
    ${INSTALL} -m 600 ${WRKSRC}/stunnel.pem ${PREFIX}/etc/

.include <bsd.port.mk>