1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-30 01:15:52 +00:00
freebsd-ports/security/chkrootkit/Makefile
Marcelo Araujo 62c5f24409 - Update to 0.49.
PR:		ports/137853
Submitted by:	Sylvio Cesar <scjamorim@bsd.com.br>
Approved by:	Luiz Eduardo Roncato Cordeiro <cordeiro@cert.br> (maintainer)
2009-08-19 00:33:23 +00:00

61 lines
1.5 KiB
Makefile

# Ports collection makefile for: chkrootkit
# Date created: 13 Mar 2001
# Whom: Luiz Eduardo R. Cordeiro
#
# $FreeBSD$
#
PORTNAME= chkrootkit
PORTVERSION= 0.49
CATEGORIES= security
MASTER_SITES= ftp://ftp.pangeia.com.br/pub/seg/pac/ \
ftp://gd.tuwien.ac.at/infosys/security/chkrootkit/ \
ftp://ftp.digitalvoodoo.org/pub/mirrors/chkrootkit/ \
http://www.spenneberg.org/chkrootkit-mirror/files/ \
http://www.mirrors.wiretapped.net/security/host-security/chkrootkit/ \
http://ftp.uni-stuttgart.de/pub/security/unix/forensics/chkrootkit/ \
http://ftp.bit.nl/mirror/chkrootkit/ \
http://chkrootkit.mirror.fr/
MAINTAINER= cordeiro@nic.br
COMMENT= A tool to locally check for signs of a rootkit
SCRIPT_FILES= chkrootkit
PROG_FILES= chklastlog \
chkwtmp \
chkutmp \
chkproc \
chkdirs \
ifpromisc \
check_wtmpx \
strings
ALL_TARGET= ${SCRIPT_FILES} ${PROG_FILES}
PORTDOCS= ACKNOWLEDGMENTS \
COPYRIGHT \
README \
README.chklastlog \
README.chkwtmp
PLIST_FILES= ${ALL_TARGET:C,^,sbin/,}
BINMODE= 0700
post-patch:
@${REINPLACE_CMD} -E "s/^(CC|CFLAGS)[^a-zA-Z]*=/\1 ?=/" \
${WRKSRC}/Makefile
.for prog in ${PROG_FILES}
@${REINPLACE_CMD} -E 's,\./(${prog}),${PREFIX}/sbin/\1,g' \
${WRKSRC}/chkrootkit
.endfor
do-install:
${INSTALL_SCRIPT} ${SCRIPT_FILES:C,^,${WRKSRC}/,} ${PREFIX}/sbin
${INSTALL_PROGRAM} ${PROG_FILES:C,^,${WRKSRC}/,} ${PREFIX}/sbin
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:C,^,${WRKSRC}/,} ${DOCSDIR}
.endif
.include <bsd.port.mk>