7882271d50
- Critical section added around non MT-safe TCP Wrappers code. - Problem with "select: Interrupted system call" error fixed. - errno replaced with get_last_socket_error() for Win32. - Some FreeBSD/NetBSD patches to ./configure from Martti Kuparinen. - Local mode process pid logged. - Default FQDN (localhost) removed from stunnel.cnf - ./configure changed to recognize POSIX threads library on OSF. - New -O option to set socket options.
40 lines
1.0 KiB
Makefile
40 lines
1.0 KiB
Makefile
# $OpenBSD: Makefile,v 1.15 2001/08/11 21:14:48 jakob Exp $
|
|
|
|
COMMENT= SSL encryption wrapper for standard network daemons
|
|
|
|
DISTNAME= stunnel-3.19
|
|
CATEGORIES= security
|
|
NEED_VERSION= 1.363
|
|
|
|
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= sdf::textproc/p5-sdf
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --with-tcp-wrappers
|
|
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>
|