mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
29ac2c96cd
Submitted by: se While here, add error checking in pkg-install before replacing syslog.conf with an unknown file!
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
# Created by: Mij <mij@bitchx.it>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sshguard
|
|
PORTVERSION= 1.5
|
|
PORTREVISION= 4
|
|
CATEGORIES= security
|
|
MASTER_SITES= SF/sshguard/sshguard/sshguard-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT?= Protect hosts from brute force attacks against ssh and other services
|
|
|
|
CONFLICTS?= sshguard-ipfilter-1.* sshguard-ipfw-1.* sshguard-pf-1.*
|
|
|
|
USES= tar:bzip2
|
|
|
|
PLIST_FILES= sbin/sshguard man/man8/sshguard.8.gz
|
|
|
|
USE_RC_SUBR= sshguard
|
|
MAKE_ARGS+= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}"
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--with-firewall=${SSHGUARDFW}
|
|
|
|
SUB_LIST+= PKGMSG_FWBLOCK=${PKGMSG_FWBLOCK}
|
|
SUB_FILES= pkg-message
|
|
|
|
# backend type in { hosts, ipfw, pf }
|
|
SSHGUARDFW?= hosts
|
|
|
|
.if ${SSHGUARDFW} == pf
|
|
PKGMSG_FWBLOCK=" To activate or configure PF see http://sshguard.sf.net/doc/setup/blockingpf.html"
|
|
.elif ${SSHGUARDFW} == ipfw
|
|
PKGMSG_FWBLOCK=" Verify that IPFW is active with \"ipfw show\"."
|
|
.elif ${SSHGUARDFW} == hosts
|
|
PKGMSG_FWBLOCK=" Sshguard is going to use /etc/hosts.allow, I have touched it for you."
|
|
.elif ${SSHGUARDFW} == ipfilter
|
|
PKGMSG_FWBLOCK=" Sshguard will use /etc/ipf.rules as ruleset."
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|