blob: a89e8a5b0bb8109856e59b2eb7a30eb179a884ff (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# $NetBSD: Makefile,v 1.17 2005/02/21 10:10:04 adam Exp $
DISTNAME= nessus-plugins-GPL-${VERS}
PKGNAME= nessus-plugins-${VERS}
.include "../nessus/Makefile.common"
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}
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "NetBSD"
CONFIGURE_ARGS+= --with-fetchcmd=/usr/bin/ftp
.else
CONFIGURE_ARGS+= --with-fetchcmd=${PREFIX}/bin/ftp
.endif
SUBST_CLASSES+= fetch
SUBST_STAGE.fetch= post-configure
SUBST_FILES.fetch= nessus-update-plugins
SUBST_SED.fetch= -e "s|fetch_args=\"\"|fetch_args=\"-o -\"|g"
SUBST_MESSAGE.fetch= "Fixing fetch parameters."
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"
|