diff options
author | adam <adam@pkgsrc.org> | 2008-10-17 07:31:58 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2008-10-17 07:31:58 +0000 |
commit | a88a64a4cca4cc987efabf2941ff3f4d1f7762e5 (patch) | |
tree | 655df9dd9099f1b8f17f69b36e6c0ecbb64338b4 /security | |
parent | 09c8161ab9c4d60ae9c719197bfbc21fdf12d245 (diff) | |
download | pkgsrc-a88a64a4cca4cc987efabf2941ff3f4d1f7762e5.tar.gz |
Changes 4.26:
* libwrap related fixes, better debugging messages, MS Visual C++ support
Changes 4.25:
* delay libwrap process spawning after dropping privs, other improvements
Diffstat (limited to 'security')
-rw-r--r-- | security/stunnel/Makefile | 15 | ||||
-rw-r--r-- | security/stunnel/distinfo | 10 | ||||
-rw-r--r-- | security/stunnel/options.mk | 4 | ||||
-rw-r--r-- | security/stunnel/patches/patch-aa | 6 |
4 files changed, 17 insertions, 18 deletions
diff --git a/security/stunnel/Makefile b/security/stunnel/Makefile index acb02e62a95..cf551e69ce7 100644 --- a/security/stunnel/Makefile +++ b/security/stunnel/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.64 2008/10/01 14:34:32 obache Exp $ +# $NetBSD: Makefile,v 1.65 2008/10/17 07:31:58 adam Exp $ -DISTNAME= stunnel-4.24 -PKGREVISION= 1 +DISTNAME= stunnel-4.26 CATEGORIES= security MASTER_SITES= ftp://ftp.fu-berlin.de/unix/security/stunnel/ \ ftp://stunnel.mirt.net/stunnel/ \ @@ -15,11 +14,11 @@ PKG_DESTDIR_SUPPORT= user-destdir USE_LIBTOOL= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-ssl=${SSLBASE:Q} \ - --with-cert-dir=${SSLCERTS:Q} \ - --with-pem-dir=${SSLCERTS:Q} \ - --sysconfdir=${PKG_SYSCONFDIR:Q} \ - --localstatedir=${VARBASE:Q} +CONFIGURE_ARGS+= --localstatedir=${VARBASE} +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} +CONFIGURE_ARGS+= --with-cert-dir=${SSLCERTS:Q} +CONFIGURE_ARGS+= --with-pem-dir=${SSLCERTS:Q} +CONFIGURE_ARGS+= --with-ssl=${SSLBASE:Q} PKG_SYSCONFSUBDIR= stunnel diff --git a/security/stunnel/distinfo b/security/stunnel/distinfo index ea35ba98828..d63b2a54e8b 100644 --- a/security/stunnel/distinfo +++ b/security/stunnel/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.25 2008/05/29 00:44:30 schmonz Exp $ +$NetBSD: distinfo,v 1.26 2008/10/17 07:31:58 adam Exp $ -SHA1 (stunnel-4.24.tar.gz) = ec6db4080199d11e020b780da0f1cc37d37d9233 -RMD160 (stunnel-4.24.tar.gz) = a397ba5dd51d5224f2458948ef985e0785ef8fbb -Size (stunnel-4.24.tar.gz) = 531714 bytes -SHA1 (patch-aa) = 70dfbc793ec882715d2ddaa7b4248b8f238701b6 +SHA1 (stunnel-4.26.tar.gz) = 1c9f5dd6b21f354c356cd9100899a90a83068c68 +RMD160 (stunnel-4.26.tar.gz) = 09e0f60357a90b66f66a1f4cda1b04872c087d0d +Size (stunnel-4.26.tar.gz) = 531804 bytes +SHA1 (patch-aa) = 322721b50487cd0eb795df2e3cd45beb86cd95e6 SHA1 (patch-ac) = 7b4c4331e97f575b0bb82e6ce8a2b7d9a1483da6 diff --git a/security/stunnel/options.mk b/security/stunnel/options.mk index 32368913857..23aa6d2c54d 100644 --- a/security/stunnel/options.mk +++ b/security/stunnel/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.5 2008/10/01 14:34:32 obache Exp $ +# $NetBSD: options.mk,v 1.6 2008/10/17 07:31:58 adam Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.stunnel PKG_SUPPORTED_OPTIONS= inet6 pthread libwrap @@ -8,7 +8,7 @@ CHECK_BUILTIN.pthread:= yes CHECK_BUILTIN.pthread:= no .if !empty(BUILTIN_LIB_FOUND.pthread:M[yY][eE][sS]) -PKG_SUGGESTED_OPTIONS+= pthread +PKG_SUGGESTED_OPTIONS+= pthread .endif .include "../../mk/bsd.options.mk" diff --git a/security/stunnel/patches/patch-aa b/security/stunnel/patches/patch-aa index 18c0db5d52f..61914e752b2 100644 --- a/security/stunnel/patches/patch-aa +++ b/security/stunnel/patches/patch-aa @@ -1,10 +1,10 @@ -$NetBSD: patch-aa,v 1.20 2008/05/27 11:51:32 tnn Exp $ +$NetBSD: patch-aa,v 1.21 2008/10/17 07:31:58 adam Exp $ ---- tools/Makefile.in.orig 2008-05-18 13:46:07.000000000 +0200 +--- tools/Makefile.in.orig 2008-09-20 22:32:29.000000000 +0200 +++ tools/Makefile.in @@ -167,7 +167,7 @@ target_alias = @target_alias@ EXTRA_DIST = ca.html ca.pl importCA.html importCA.sh script.sh \ - stunnel.spec stunnel.mak stunnel.cnf stunnel.nsi stunnel.conf + stunnel.spec stunnel.cnf stunnel.nsi stunnel.conf -confdir = $(sysconfdir)/stunnel +confdir = $(datadir)/examples/stunnel |