openbsd-ports/security/stunnel/Makefile
jakob 926b54b583 update to v3.22 - urgency HIGH
* Format string bug fixed in protocol.c
  smtp, pop3 and nntp in client mode were affected.
  (stunnel clients could be attacked by malicious servers)
* Certificate chain can be supplied with -p option or in stunnel.pem.
* Problem with -r and -l options used together fixed.
* memmove() instead of memcpy() is used to move data in buffers.
* More detailed information about negotiated ciphers is printed.
* New ./configure options: "--enable-no-rsa" and "--enable-dh".
2001-12-24 22:36:00 +00:00

42 lines
1.1 KiB
Makefile

# $OpenBSD: Makefile,v 1.22 2001/12/24 22:36:00 jakob Exp $
COMMENT= SSL encryption wrapper for standard network daemons
DISTNAME= stunnel-3.22
CATEGORIES= security
NEED_VERSION= 1.500
MAINTAINER= Jakob Schlyter <jakob@openbsd.org>
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
HOMEPAGE= http://stunnel.mirt.net/
MASTER_SITES= ftp://stunnel.mirt.net/stunnel/ \
http://www.stunnel.org/download/stunnel/src/ \
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/
BUILD_DEPENDS= ::textproc/p5-sdf
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= --with-tcp-wrappers \
--with-pem-dir=${SYSCONFDIR}/ssl \
--with-random=/dev/arandom
ALL_TARGET= stunnel stunnel.8
post-configure:
rm ${WRKSRC}/stunnel.8
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/stunnel ${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/stunnel.8 ${PREFIX}/man/man8
.include <bsd.port.mk>