blob: 807da1cdd9fa985e6b546e46f41f5d445bd6a0ce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# New ports collection makefile for: rkhunter
# Date created: 15 May 2004
# Whom: Radim Kolar
#
# $FreeBSD$
#
PORTNAME= rkhunter
PORTVERSION= 1.3.0
CATEGORIES= security
MASTER_SITES= SF
MAINTAINER= farrokhi@FreeBSD.org
COMMENT= Rootkit detection tool
OPTIONS= LSOF "Use LSOF" on \
NMAP "Use NMAP" off
RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Digest/SHA1.pm:${PORTSDIR}/security/p5-Digest-SHA1 \
${LOCALBASE}/bin/wget:${PORTSDIR}/ftp/wget
USE_PERL5= yes
NO_BUILD= yes
SUB_FILES= 415.rkhunter
MAN8= rkhunter.8
MANCOMPRESSED= no
PORTDOCS= CHANGELOG README WISHLIST
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_LSOF)
RUN_DEPENDS+= lsof:${PORTSDIR}/sysutils/lsof
.endif
.if defined(WITH_NMAP)
RUN_DEPENDS+= nmap:${PORTSDIR}/security/nmap
.endif
do-install:
cd ${WRKSRC} && ./installer.sh --layout custom ${PREFIX} --install
${INSTALL_MAN} ${WRKSRC}/files/rkhunter.8 \
${MAN8PREFIX}/man/man8
@${MKDIR} ${PREFIX}/etc/periodic/security
${INSTALL_SCRIPT} ${WRKDIR}/415.rkhunter ${PREFIX}/etc/periodic/security
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/files/|} ${DOCSDIR}
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
|