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

(-)www/mod_security3/Makefile (-41 lines)
Lines 1-41 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	mod_security
4
DISTVERSIONPREFIX=	v
5
DISTVERSION=	3.0.2
6
CATEGORIES=	www security
7
PKGNAMESUFFIX=	3
8
9
MAINTAINER=	marius.halden@modirum.com
10
COMMENT=	Intrusion detection and prevention engine
11
12
LICENSE=	APACHE20
13
14
LIB_DEPENDS=	libcurl.so:ftp/curl \
15
		libpcre.so:devel/pcre \
16
		libyajl.so:devel/yajl \
17
		libGeoIP.so:net/GeoIP
18
19
USES=		gmake autoreconf libtool pkgconfig:build
20
USE_GNOME=	libxml2
21
# GCC because of https://github.com/SpiderLabs/ModSecurity/issues/1411
22
USE_GCC=	yes
23
USE_LDCONFIG=	yes
24
GNU_CONFIGURE=	yes
25
26
USE_GITHUB=	yes
27
GH_ACCOUNT=	SpiderLabs
28
GH_PROJECT=	ModSecurity
29
30
GH_TUPLE+=	SpiderLabs:secrules-language-tests:add8f63:secrules_language_tests/test/test-cases/secrules-language-tests
31
GH_TUPLE+=	client9:libinjection:da027ab:libinjection/others/libinjection
32
GH_TUPLE+=	SpiderLabs:ModSecurity-Python-bindings:bc625d5:modsecurity_python_bindings/bindings/python
33
34
ETCDIR=		${PREFIX}/etc/modsecurity
35
36
post-install:
37
	@${MKDIR}	${STAGEDIR}${ETCDIR}
38
	${INSTALL_DATA}	${WRKSRC}/modsecurity.conf-recommended \
39
		${STAGEDIR}${ETCDIR}/modsecurity.conf.sample
40
41
.include <bsd.port.mk>
(-)www/mod_security3/distinfo (-9 lines)
Lines 1-9 Link Here
1
TIMESTAMP = 1524855265
2
SHA256 (SpiderLabs-ModSecurity-v3.0.2_GH0.tar.gz) = a27c48a410870627c5d07aa8822b6459afff925b81b649905c7383bdee8fc1ce
3
SIZE (SpiderLabs-ModSecurity-v3.0.2_GH0.tar.gz) = 550800
4
SHA256 (SpiderLabs-secrules-language-tests-add8f63_GH0.tar.gz) = 18894cf90d6a1ade441053b2aa89fff495a50eec0c632d346cc223c692973cba
5
SIZE (SpiderLabs-secrules-language-tests-add8f63_GH0.tar.gz) = 58901
6
SHA256 (client9-libinjection-da027ab_GH0.tar.gz) = 7eaa6306d13427e002f976d4ce1bf3aaa3f94e7dd4ada02a69354fa482e6afca
7
SIZE (client9-libinjection-da027ab_GH0.tar.gz) = 1656633
8
SHA256 (SpiderLabs-ModSecurity-Python-bindings-bc625d5_GH0.tar.gz) = 7b10d90ec76985ddbdc4ca15c0675254cb6d10af6eaba620d1785d1b24b017eb
9
SIZE (SpiderLabs-ModSecurity-Python-bindings-bc625d5_GH0.tar.gz) = 2647
(-)www/mod_security3/pkg-descr (-9 lines)
Lines 1-9 Link Here
1
ModSecurity is an embeddable web application firewall. It provides
2
protection from a range of attacks against web applications and allows
3
for HTTP traffic monitoring and real-time analysis with no changes to
4
existing infrastructure.
5
6
It is also an open source project that aims to make the web application
7
firewall technology available to everyone.
8
9
WWW: https://www.modsecurity.org/
(-)www/mod_security3/pkg-plist (-24 lines)
Lines 1-24 Link Here
1
bin/modsec-rules-check
2
include/modsecurity/actions/action.h
3
include/modsecurity/anchored_set_variable.h
4
include/modsecurity/anchored_variable.h
5
include/modsecurity/audit_log.h
6
include/modsecurity/collection/collection.h
7
include/modsecurity/collection/collections.h
8
include/modsecurity/debug_log.h
9
include/modsecurity/intervention.h
10
include/modsecurity/modsecurity.h
11
include/modsecurity/reading_logs_via_rule_message.h
12
include/modsecurity/rule.h
13
include/modsecurity/rule_message.h
14
include/modsecurity/rules.h
15
include/modsecurity/rules_exceptions.h
16
include/modsecurity/rules_properties.h
17
include/modsecurity/transaction.h
18
include/modsecurity/variable_origin.h
19
include/modsecurity/variable_value.h
20
lib/libmodsecurity.a
21
lib/libmodsecurity.so
22
lib/libmodsecurity.so.3
23
lib/libmodsecurity.so.3.0.2
24
@sample %%ETCDIR%%/modsecurity.conf.sample
(-)www/modsecurity3/Makefile (+41 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	modsecurity
4
DISTVERSIONPREFIX=	v
5
DISTVERSION=	3.0.2
6
CATEGORIES=	www security
7
PKGNAMESUFFIX=	3
8
9
MAINTAINER=	marius.halden@modirum.com
10
COMMENT=	Intrusion detection and prevention engine
11
12
LICENSE=	APACHE20
13
14
LIB_DEPENDS=	libcurl.so:ftp/curl \
15
		libpcre.so:devel/pcre \
16
		libyajl.so:devel/yajl \
17
		libGeoIP.so:net/GeoIP
18
19
USES=		gmake autoreconf libtool pkgconfig:build
20
USE_GNOME=	libxml2
21
# GCC because of https://github.com/SpiderLabs/ModSecurity/issues/1411
22
USE_GCC=	yes
23
USE_LDCONFIG=	yes
24
GNU_CONFIGURE=	yes
25
26
USE_GITHUB=	yes
27
GH_ACCOUNT=	SpiderLabs
28
GH_PROJECT=	ModSecurity
29
30
GH_TUPLE+=	SpiderLabs:secrules-language-tests:add8f63:secrules_language_tests/test/test-cases/secrules-language-tests
31
GH_TUPLE+=	client9:libinjection:da027ab:libinjection/others/libinjection
32
GH_TUPLE+=	SpiderLabs:ModSecurity-Python-bindings:bc625d5:modsecurity_python_bindings/bindings/python
33
34
ETCDIR=		${PREFIX}/etc/modsecurity
35
36
post-install:
37
	@${MKDIR}	${STAGEDIR}${ETCDIR}
38
	${INSTALL_DATA}	${WRKSRC}/modsecurity.conf-recommended \
39
		${STAGEDIR}${ETCDIR}/modsecurity.conf.sample
40
41
.include <bsd.port.mk>
(-)www/modsecurity3/distinfo (+9 lines)
Line 0 Link Here
1
TIMESTAMP = 1524855265
2
SHA256 (SpiderLabs-ModSecurity-v3.0.2_GH0.tar.gz) = a27c48a410870627c5d07aa8822b6459afff925b81b649905c7383bdee8fc1ce
3
SIZE (SpiderLabs-ModSecurity-v3.0.2_GH0.tar.gz) = 550800
4
SHA256 (SpiderLabs-secrules-language-tests-add8f63_GH0.tar.gz) = 18894cf90d6a1ade441053b2aa89fff495a50eec0c632d346cc223c692973cba
5
SIZE (SpiderLabs-secrules-language-tests-add8f63_GH0.tar.gz) = 58901
6
SHA256 (client9-libinjection-da027ab_GH0.tar.gz) = 7eaa6306d13427e002f976d4ce1bf3aaa3f94e7dd4ada02a69354fa482e6afca
7
SIZE (client9-libinjection-da027ab_GH0.tar.gz) = 1656633
8
SHA256 (SpiderLabs-ModSecurity-Python-bindings-bc625d5_GH0.tar.gz) = 7b10d90ec76985ddbdc4ca15c0675254cb6d10af6eaba620d1785d1b24b017eb
9
SIZE (SpiderLabs-ModSecurity-Python-bindings-bc625d5_GH0.tar.gz) = 2647
(-)www/modsecurity3/pkg-descr (+9 lines)
Line 0 Link Here
1
ModSecurity is an embeddable web application firewall. It provides
2
protection from a range of attacks against web applications and allows
3
for HTTP traffic monitoring and real-time analysis with no changes to
4
existing infrastructure.
5
6
It is also an open source project that aims to make the web application
7
firewall technology available to everyone.
8
9
WWW: https://www.modsecurity.org/
(-)www/modsecurity3/pkg-plist (+24 lines)
Line 0 Link Here
1
bin/modsec-rules-check
2
include/modsecurity/actions/action.h
3
include/modsecurity/anchored_set_variable.h
4
include/modsecurity/anchored_variable.h
5
include/modsecurity/audit_log.h
6
include/modsecurity/collection/collection.h
7
include/modsecurity/collection/collections.h
8
include/modsecurity/debug_log.h
9
include/modsecurity/intervention.h
10
include/modsecurity/modsecurity.h
11
include/modsecurity/reading_logs_via_rule_message.h
12
include/modsecurity/rule.h
13
include/modsecurity/rule_message.h
14
include/modsecurity/rules.h
15
include/modsecurity/rules_exceptions.h
16
include/modsecurity/rules_properties.h
17
include/modsecurity/transaction.h
18
include/modsecurity/variable_origin.h
19
include/modsecurity/variable_value.h
20
lib/libmodsecurity.a
21
lib/libmodsecurity.so
22
lib/libmodsecurity.so.3
23
lib/libmodsecurity.so.3.0.2
24
@sample %%ETCDIR%%/modsecurity.conf.sample
(-)www/nginx/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	nginx
4
PORTNAME=	nginx
5
PORTVERSION=	1.14.0
5
PORTVERSION=	1.14.0
6
PORTREVISION?=	0
6
PORTREVISION?=	1
7
PORTEPOCH=	2
7
PORTEPOCH=	2
8
CATEGORIES=	www
8
CATEGORIES=	www
9
MASTER_SITES=	http://nginx.org/download/ \
9
MASTER_SITES=	http://nginx.org/download/ \
(-)www/nginx/Makefile.extmod (-1 / +1 lines)
Lines 219-225 Link Here
219
				${PATCHDIR}/extra-patch-ngx_http_modsecurity.c
219
				${PATCHDIR}/extra-patch-ngx_http_modsecurity.c
220
MODSECURITY_VARS=		WRKSRC_modsecurity=${WRKDIR}/modsecurity-2.9.1
220
MODSECURITY_VARS=		WRKSRC_modsecurity=${WRKDIR}/modsecurity-2.9.1
221
221
222
MODSECURITY3_LIB_DEPENDS=	libmodsecurity.so:www/mod_security3
222
MODSECURITY3_LIB_DEPENDS=	libmodsecurity.so:www/modsecurity3
223
MODSECURITY3_GH_TUPLE=		SpiderLabs:ModSecurity-nginx:4cde86b:modsec
223
MODSECURITY3_GH_TUPLE=		SpiderLabs:ModSecurity-nginx:4cde86b:modsec
224
MODSECURITY3_CONFIGURE_ON=	--add-module=${WRKSRC_modsec}
224
MODSECURITY3_CONFIGURE_ON=	--add-module=${WRKSRC_modsec}
225
225
(-)www/nginx-devel/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	nginx
4
PORTNAME=	nginx
5
PORTVERSION=	1.14.0
5
PORTVERSION=	1.14.0
6
PORTREVISION=	3
6
PORTREVISION=	4
7
CATEGORIES=	www
7
CATEGORIES=	www
8
MASTER_SITES=	http://nginx.org/download/ \
8
MASTER_SITES=	http://nginx.org/download/ \
9
		LOCAL/osa
9
		LOCAL/osa
(-)www/nginx-devel/Makefile.extmod (-1 / +1 lines)
Lines 213-219 Link Here
213
MODSECURITY_EXTRA_PATCHES=	${PATCHDIR}/extra-patch-nginx-modsecurity-configure
213
MODSECURITY_EXTRA_PATCHES=	${PATCHDIR}/extra-patch-nginx-modsecurity-configure
214
MODSECURITY_VARS=		WRKSRC_modsecurity=${WRKDIR}/modsecurity-2.9.2
214
MODSECURITY_VARS=		WRKSRC_modsecurity=${WRKDIR}/modsecurity-2.9.2
215
215
216
MODSECURITY3_LIB_DEPENDS=	libmodsecurity.so:www/mod_security3
216
MODSECURITY3_LIB_DEPENDS=	libmodsecurity.so:www/modsecurity3
217
MODSECURITY3_GH_TUPLE=		SpiderLabs:ModSecurity-nginx:4cde86b:modsec
217
MODSECURITY3_GH_TUPLE=		SpiderLabs:ModSecurity-nginx:4cde86b:modsec
218
MODSECURITY3_CONFIGURE_ON=	--add-module=${WRKSRC_modsec}
218
MODSECURITY3_CONFIGURE_ON=	--add-module=${WRKSRC_modsec}
219
219

Return to bug 227917