freebsd-ports/sysutils/py-stdiff/Makefile
Marcelo Araujo a8c1d5b9db Spot The Difference is a file integrity checker. Its goal is to detect signs of
intrusion by looking for suspicious changes in system files. Crackers, in fact,
to do their evil or just to make sure they can work their way back into the
system, often change some configuration files, executables and/or log files
(usually with rootkits); thus leaving signs of the break-in.

WWW: http://www.kernel-panic.it/software/stdiff/
2010-12-11 21:09:43 +00:00

33 lines
828 B
Makefile

# New ports collection makefile for: py-stdiff
# Date created: 11 Dec 2010
# Whom: Marcelo Araujo <araujo@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= stdiff
PORTVERSION= 0.2.1
CATEGORIES= sysutils python
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}/
MAINTAINER= araujo@FreeBSD.org
COMMENT= Spot The Difference is a file integrity checker.
USE_PYTHON= yes
USE_PYDISTUTILS= yes
.if !defined(NOPORTDOCS)
PORTDOCS= *
.endif
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
$(INSTALL_MAN) ${WRKSRC}/INSTALL.txt ${DOCSDIR}/
$(INSTALL_MAN) ${WRKSRC}/LICENSE.txt ${DOCSDIR}/
(cd ${WRKSRC}/ && ${COPYTREE_SHARE} docs ${DOCSDIR}/)
.endif
@if [ ! -f ${PREFIX}/etc/stdiff.conf ]; then \
${CP} -p ${PREFIX}/etc/stdiff.conf.sample \
${PREFIX}/etc/stdiff.conf; fi
.include <bsd.port.mk>