mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
6d44b14ed0
ChangeLog: - Handle local logins properly [1] - Honor allow_on_error in setcred() [1] - Use the default (*) rule if we can't resolve the hostname [2] PR: ports/104946 Submitted by: Dan Lukes <dan@obluda.cz> [1] Reported by: Tsurutani Naoki <turutani@scphys.kyoto-u.ac.jp> [2]
33 lines
745 B
Makefile
33 lines
745 B
Makefile
# Ports collection makefile for: pam_af
|
|
# Date created: 5 Marth 2006
|
|
# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pam_af
|
|
PORTVERSION= 1.0.1
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://mbsd.msk.ru/dist/
|
|
|
|
MAINTAINER= stas@FreeBSD.org
|
|
COMMENT= Anti-bruteforce PAM module
|
|
|
|
USE_BZIP2= yes
|
|
|
|
MAN8= pam_af.8 pam_af_tool.8
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/pam_af.so ${PREFIX}/lib
|
|
${INSTALL_PROGRAM} ${WRKSRC}/pam_af_tool/pam_af_tool ${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/pam_af.8 ${PREFIX}/man/man8
|
|
${INSTALL_MAN} ${WRKSRC}/pam_af_tool/pam_af_tool.8 ${PREFIX}/man/man8
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|