svn commit: r381426 - head/security/py-fail2ban

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Mon Mar 16 17:00:06 UTC 2015


Author: sunpoet
Date: Mon Mar 16 17:00:05 2015
New Revision: 381426
URL: https://svnweb.freebsd.org/changeset/ports/381426
QAT: https://qat.redports.org/buildarchive/r381426/

Log:
  - Fix build with python3*
  - Do not silence installation message
  
  PR:		196336
  Submitted by:	Kevin Zheng <kevinz5000 at gmail.com>
  Approved by:	<theis at gmx.at> (maintainer)

Modified:
  head/security/py-fail2ban/Makefile

Modified: head/security/py-fail2ban/Makefile
==============================================================================
--- head/security/py-fail2ban/Makefile	Mon Mar 16 16:17:30 2015	(r381425)
+++ head/security/py-fail2ban/Makefile	Mon Mar 16 17:00:05 2015	(r381426)
@@ -18,8 +18,8 @@ GH_PROJECT=	${PORTNAME}
 GH_COMMIT=	2ab2bd8
 GH_TAGNAME=	${PORTVERSION}
 
-USES=		python:2
-USE_PYTHON=	distutils
+USES=		python
+USE_PYTHON=	distutils py3kplist
 
 USE_RC_SUBR=	fail2ban
 SUB_LIST+=	PYTHON_CMD=${PYTHON_CMD}
@@ -50,8 +50,8 @@ post-install:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 	(cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
 .for file in fail2ban-client fail2ban-regex fail2ban-server fail2ban
-	@${INSTALL_MAN} ${WRKSRC}/man/${file}.1 ${STAGEDIR}${MANPREFIX}/man/man1
+	${INSTALL_MAN} ${WRKSRC}/man/${file}.1 ${STAGEDIR}${MANPREFIX}/man/man1
 .endfor
-	@${INSTALL_MAN} ${WRKSRC}/man/jail.conf.5 ${STAGEDIR}${MANPREFIX}/man/man5/fail2ban-jail.conf.5
+	${INSTALL_MAN} ${WRKSRC}/man/jail.conf.5 ${STAGEDIR}${MANPREFIX}/man/man5/fail2ban-jail.conf.5
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list