View | Details | Raw Unified | Return to bug 218505
Collapse All | Expand All

(-)squid-devel/Makefile (-7 / +4 lines)
Lines 1-8 Link Here
1
# $FreeBSD: head/www/squid-devel/Makefile 437439 2017-04-01 15:23:30Z gerald $
1
# $FreeBSD: head/www/squid-devel/Makefile 437439 2017-04-01 15:23:30Z gerald $
2
2
3
PORTNAME=	squid
3
PORTNAME=	squid
4
PORTVERSION=	4.0.18
4
PORTVERSION=	4.0.19
5
PORTREVISION=	3
6
CATEGORIES=	www ipv6
5
CATEGORIES=	www ipv6
7
MASTER_SITES=	http://www.squid-cache.org/Versions/v4/ \
6
MASTER_SITES=	http://www.squid-cache.org/Versions/v4/ \
8
		http://www2.us.squid-cache.org/Versions/v4/ \
7
		http://www2.us.squid-cache.org/Versions/v4/ \
Lines 29-39 Link Here
29
28
30
CONFLICTS=	squid*-3.*
29
CONFLICTS=	squid*-3.*
31
30
32
USES=		compiler:c++11-lib cpe perl5 shebangfix tar:xz
31
USES=		compiler:c++11-lib cpe perl5 shebangfix tar:xz bdb
33
CPE_VENDOR=	squid-cache
32
CPE_VENDOR=	squid-cache
34
SHEBANG_FILES=	scripts/*.pl contrib/*.pl tools/*.pl
33
SHEBANG_FILES=	scripts/*.pl contrib/*.pl tools/*.pl
35
GNU_CONFIGURE=	yes
34
GNU_CONFIGURE=	yes
36
USE_RC_SUBR=	squid
35
USE_RC_SUBR=	squid
36
CPPFLAGS+=	-I${BDB_INCLUDE_DIR}
37
LDFLAGS+=	-L${BDB_LIB_DIR}
37
38
38
USERS=		squid
39
USERS=		squid
39
GROUPS=		squid
40
GROUPS=		squid
Lines 304-313 Link Here
304
305
305
.include <bsd.port.pre.mk>
306
.include <bsd.port.pre.mk>
306
307
307
.if ${PORT_OPTIONS:MSSL} && ${SSL_DEFAULT:Mopenssl-devel}
308
BROKEN=		Does not build with openssl-devel
309
.endif
310
311
.if ${CHOSEN_COMPILER_TYPE} == clang
308
.if ${CHOSEN_COMPILER_TYPE} == clang
312
#CXXFLAGS+=	-Wno-unused-private-field
309
#CXXFLAGS+=	-Wno-unused-private-field
313
CXXFLAGS+=	-Wno-unknown-warning-option
310
CXXFLAGS+=	-Wno-unknown-warning-option
(-)squid-devel/distinfo (-2 / +2 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1467941699
1
TIMESTAMP = 1467941699
2
SHA256 (squid4.0/squid-4.0.18.tar.xz) = 6e5d2dd9477085b023c4c8ebfc2124ed2bc9795fdc74d190c9273c70ba6f2560
2
SHA256 (squid4.0/squid-4.0.19.tar.xz) = 355a7f816afd8b9b5d0d785e9c80c28a7e4c6edb8832ac865ad267d5e3360050
3
SIZE (squid4.0/squid-4.0.18.tar.xz) = 2411340
3
SIZE (squid4.0/squid-4.0.19.tar.xz) = 2414764
(-)squid-devel/files/squid.in (+9 lines)
Lines 42-47 Link Here
42
# squid_krb5_ktname:
42
# squid_krb5_ktname:
43
#		Alternative Kerberos 5 Key Table.
43
#		Alternative Kerberos 5 Key Table.
44
#		Default: none
44
#		Default: none
45
# squid_krb5_config:
46
#		Alternative Kerberos 5 config file
47
#		Default: none
45
48
46
. /etc/rc.subr
49
. /etc/rc.subr
47
50
Lines 90-95 Link Here
90
		export KRB5_KTNAME=${squid_krb5_ktname}
93
		export KRB5_KTNAME=${squid_krb5_ktname}
91
	fi
94
	fi
92
95
96
	# setup KRB5_CONFIG:
97
	squid_krb5_config=${squid_krb5_config:-"NONE"}
98
	if [ "${squid_krb5_config}" != "NONE" ]; then
99
		export KRB5_CONFIG=${squid_krb5_config}
100
	fi
101
93
	# setup FIB tables:
102
	# setup FIB tables:
94
	if command -v check_namevarlist > /dev/null 2>&1; then
103
	if command -v check_namevarlist > /dev/null 2>&1; then
95
		check_namevarlist fib && return 0
104
		check_namevarlist fib && return 0

Return to bug 218505