diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-05-15 14:00:59 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-05-15 14:00:59 +0000 |
commit | d1cfa44f005c7183819d450d9c985b0cfd204181 (patch) | |
tree | b6933827f2b9ca61b96ef26237dcd4200cd3af40 /security/rkhunter/Makefile | |
parent | 3538dd0e93298342b0e6c0a57be6cd23771ac299 (diff) | |
download | ports-d1cfa44f005c7183819d450d9c985b0cfd204181.tar.gz ports-d1cfa44f005c7183819d450d9c985b0cfd204181.zip |
Notes
Diffstat (limited to 'security/rkhunter/Makefile')
-rw-r--r-- | security/rkhunter/Makefile | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/security/rkhunter/Makefile b/security/rkhunter/Makefile new file mode 100644 index 000000000000..34d9f045ea18 --- /dev/null +++ b/security/rkhunter/Makefile @@ -0,0 +1,49 @@ +# New ports collection makefile for: rkhunter +# Date created: 15 May 2004 +# Whom: Radim Kolar +# +# $FreeBSD$ +# + +PORTNAME= rkhunter +PORTVERSION= 1.0.8 +CATEGORIES= security +MASTER_SITES= http://downloads.rootkit.nl/ + +MAINTAINER= ports@FreeBSD.org +COMMENT= Rootkit detection tool + +RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Digest/SHA1.pm:${PORTSDIR}/security/p5-Digest-SHA1 + +WRKSRC= ${WRKDIR}/${PORTNAME} +USE_PERL5= yes +NO_BUILD= yes +USE_REINPLACE= yes + +PLIST_DIRS= rkhunter/scripts rkhunter/db rkhunter/docs rkhunter/tmp rkhunter +PLIST_FILES= rkhunter/scripts/check_modules.pl \ + rkhunter/scripts/check_port.pl \ + rkhunter/scripts/filehashmd5.pl \ + rkhunter/scripts/filehashsha1.pl \ + bin/rkhunter \ + etc/rkhunter.conf \ + rkhunter/scripts/showfiles.pl \ + rkhunter/db/backdoorports.dat \ + rkhunter/db/mirrors.dat \ + rkhunter/db/os.dat \ + rkhunter/db/defaulthashes.dat \ + rkhunter/db/md5blacklist.dat \ + rkhunter/docs/CHANGELOG \ + rkhunter/docs/README \ + rkhunter/docs/WISHLIST + +MAN8= rkhunter.8 +MANCOMPRESSED= no + +pre-install: + ${REINPLACE_CMD} -e "s,/usr/local,${PREFIX},g" ${WRKSRC}/installer.sh +do-install: + cd ${WRKSRC} && ./installer.sh + ${INSTALL_MAN} ${WRKSRC}/files/development/rkhunter.8 ${MAN8PREFIX}/man/man8 + +.include <bsd.port.mk> |