View | Details | Raw Unified | Return to bug 201323 | Differences between
and this patch

Collapse All | Expand All

(-)security/Makefile (+1 lines)
Lines 1000-1005 Link Here
1000
    SUBDIR += sshguard
1000
    SUBDIR += sshguard
1001
    SUBDIR += sshguard-ipfilter
1001
    SUBDIR += sshguard-ipfilter
1002
    SUBDIR += sshguard-ipfw
1002
    SUBDIR += sshguard-ipfw
1003
    SUBDIR += sshguard-null
1003
    SUBDIR += sshguard-pf
1004
    SUBDIR += sshguard-pf
1004
    SUBDIR += sshit
1005
    SUBDIR += sshit
1005
    SUBDIR += sshpass
1006
    SUBDIR += sshpass
(-)security/sshguard/Makefile (-1 / +1 lines)
Lines 12-18 Link Here
12
12
13
LICENSE=	BSD2CLAUSE
13
LICENSE=	BSD2CLAUSE
14
14
15
CONFLICTS?=	sshguard-ipfilter-1.* sshguard-ipfw-1.* sshguard-pf-1.*
15
CONFLICTS?=	sshguard-ipfilter-1.* sshguard-ipfw-1.* sshguard-pf-1.* sshguard-null-1.*
16
16
17
USES=		autoreconf tar:xz
17
USES=		autoreconf tar:xz
18
18
(-)security/sshguard-ipfilter/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PKGNAMESUFFIX=	-ipfilter
4
PKGNAMESUFFIX=	-ipfilter
5
CONFLICTS=	sshguard-1.* sshguard-ipfw-1.* sshguard-pf-1.*
5
CONFLICTS=	sshguard-1.* sshguard-ipfw-1.* sshguard-pf-1.* sshguard-null-1.*
6
6
7
COMMENT=	Protect hosts from brute force attacks against ssh and other services using ipfilter
7
COMMENT=	Protect hosts from brute force attacks against ssh and other services using ipfilter
8
8
(-)security/sshguard-ipfw/Makefile (-1 / +1 lines)
Lines 5-11 Link Here
5
5
6
COMMENT=	Protect hosts from brute force attacks against ssh and other services using ipfw
6
COMMENT=	Protect hosts from brute force attacks against ssh and other services using ipfw
7
7
8
CONFLICTS=	sshguard-1.* sshguard-ipfilter-1.* sshguard-pf-1.*
8
CONFLICTS=	sshguard-1.* sshguard-ipfilter-1.* sshguard-pf-1.* sshguard-null-1.*
9
9
10
SSHGUARDFW=	ipfw
10
SSHGUARDFW=	ipfw
11
MASTERDIR=	${.CURDIR}/../sshguard
11
MASTERDIR=	${.CURDIR}/../sshguard
(-)security/sshguard-null/Makefile (+13 lines)
Line 0 Link Here
1
# Created by: Mij <mij@bitchx.it>
2
# $FreeBSD$
3
4
PKGNAMESUFFIX=	-null
5
6
COMMENT=	Protect hosts from brute force attacks against ssh and other services
7
8
CONFLICTS=	sshguard-1.* sshguard-ipfilter-1.* sshguard-ipfw-1.* sshguard-pf-1.*
9
10
SSHGUARDFW=	null
11
MASTERDIR=	${.CURDIR}/../sshguard
12
13
.include "${MASTERDIR}/Makefile"
(-)security/sshguard-pf/Makefile (-1 / +1 lines)
Lines 5-11 Link Here
5
5
6
COMMENT=	Protect hosts from brute force attacks against ssh and other services using pf
6
COMMENT=	Protect hosts from brute force attacks against ssh and other services using pf
7
7
8
CONFLICTS=	sshguard-1.* sshguard-ipfilter-1.* sshguard-ipfw-1.*
8
CONFLICTS=	sshguard-1.* sshguard-ipfilter-1.* sshguard-ipfw-1.* sshguard-null-1.*
9
9
10
SSHGUARDFW=	pf
10
SSHGUARDFW=	pf
11
MASTERDIR=	${.CURDIR}/../sshguard
11
MASTERDIR=	${.CURDIR}/../sshguard

Return to bug 201323