blob: 02cfa32e388f03d11373c394f92ce84cfb8999ff (
plain)
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
|
# $NetBSD: Makefile,v 1.19 2005/04/05 22:15:55 adrianp Exp $
.include "../nessus/Makefile.common"
DISTNAME= nessus-plugins-GPL-${VERS}
PKGNAME= nessus-plugins-${VERS}
COMMENT= Plugins for the Nessus Network Security Scanner
DEPENDS+= nmap>=2.0:../../net/nmap
WRKSRC= ${WRKDIR}/nessus-plugins
USE_BUILDLINK3= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --localstatedir=${VARBASE}
PLIST_SRC= ${WRKDIR}/PLIST PLIST
# auto-generate PLIST of plug-ins
post-install:
${RM} -f ${WRKDIR}/PLIST
cd ${PREFIX} && \
${FIND} lib/nessus/plugins -type f -print >>${WRKDIR}/PLIST
.include "../../security/nessus-core/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|