mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
1319425832
Maintainers had more than 4 years to fix them With hat: portmgr
66 lines
1.6 KiB
Makefile
66 lines
1.6 KiB
Makefile
# Created by: 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= Tool to locally check for signs of a rootkit
|
|
|
|
DEPRECATED= Fails to build with new utmpx
|
|
EXPIRATION_DATE= 2014-07-23
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
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
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} > 900007
|
|
BROKEN= fails to build with new utmpx
|
|
.endif
|
|
|
|
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}/,} ${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_PROGRAM} ${PROG_FILES:C,^,${WRKSRC}/,} ${STAGEDIR}${PREFIX}/sbin
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:C,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.post.mk>
|