summaryrefslogtreecommitdiff
path: root/www/squid3
diff options
context:
space:
mode:
authorsborrill <sborrill@pkgsrc.org>2017-02-10 08:41:25 +0000
committersborrill <sborrill@pkgsrc.org>2017-02-10 08:41:25 +0000
commit53f851efe83796b1e727aed0f2aafcffcd572a2c (patch)
treed10d3bc42f78e3c64f4286c6de512b9bd79b9f3f /www/squid3
parent3e86d5eba31cd1eba6ac1a7df43f84f2c116d525 (diff)
downloadpkgsrc-53f851efe83796b1e727aed0f2aafcffcd572a2c.tar.gz
Enable build of ssl_crtd if ssl option selected. This is required for dynamic
certificate generation when using SSL Bump. http://wiki.squid-cache.org/ConfigExamples/Intercept/SslBumpExplicit
Diffstat (limited to 'www/squid3')
-rw-r--r--www/squid3/Makefile3
-rw-r--r--www/squid3/PLIST4
-rw-r--r--www/squid3/options.mk3
3 files changed, 7 insertions, 3 deletions
diff --git a/www/squid3/Makefile b/www/squid3/Makefile
index 1c626596e11..86eb2acf38a 100644
--- a/www/squid3/Makefile
+++ b/www/squid3/Makefile
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.72 2017/01/30 14:17:33 adam Exp $
+# $NetBSD: Makefile,v 1.73 2017/02/10 08:41:25 sborrill Exp $
DISTNAME= squid-3.5.24
+PKGREVISION= 1
CATEGORIES= www
MASTER_SITES= http://www.squid-cache.org/Versions/v3/${PKGVERSION_NOREV:R}/
MASTER_SITES+= ftp://ftp.squid-cache.org/pub/squid/
diff --git a/www/squid3/PLIST b/www/squid3/PLIST
index 982017c30d9..23568473c25 100644
--- a/www/squid3/PLIST
+++ b/www/squid3/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.12 2016/10/10 09:01:39 adam Exp $
+@comment $NetBSD: PLIST,v 1.13 2017/02/10 08:41:25 sborrill Exp $
bin/purge
bin/squidclient
${PLIST.ba_getpwnam}libexec/basic_getpwnam_auth
@@ -7,6 +7,7 @@ ${PLIST.ba_NCSA}libexec/basic_ncsa_auth
${PLIST.ba_PAM}libexec/basic_pam_auth
libexec/cachemgr.cgi
${PLIST.ssl}libexec/cert_valid.pl
+${PLIST.ssl}libexec/ssl_crtd
${PLIST.da_file}libexec/digest_file_auth
${PLIST.da_LDAP}libexec/digest_ldap_auth
${PLIST.diskd}libexec/diskd
@@ -37,6 +38,7 @@ ${PLIST.eacl_LDAP_group}man/man8/ext_ldap_group_acl.8
${PLIST.eacl_unix_group}man/man8/ext_unix_group_acl.8
man/man8/log_db_daemon.8
${PLIST.ta_kerberos}man/man8/negotiate_kerberos_auth.8
+${PLIST.ssl}man/man8/ssl_crtd.8
man/man8/squid.8
man/man8/storeid_file_rewrite.8
sbin/squid
diff --git a/www/squid3/options.mk b/www/squid3/options.mk
index cfa8d50c7a5..d239d204028 100644
--- a/www/squid3/options.mk
+++ b/www/squid3/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.21 2016/10/10 09:01:39 adam Exp $
+# $NetBSD: options.mk,v 1.22 2017/02/10 08:41:25 sborrill Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.squid
PKG_SUPPORTED_OPTIONS= ecap inet6 snmp ssl squid-backend-aufs \
@@ -132,6 +132,7 @@ CONFIGURE_ARGS+= --disable-snmp
.if !empty(PKG_OPTIONS:Mssl)
CONFIGURE_ARGS+= --enable-ssl --with-openssl=${SSLBASE:Q}
+CONFIGURE_ARGS+= --enable-ssl-crtd
. include "../../security/openssl/buildlink3.mk"
PLIST.ssl= yes
.endif