d3425eb712
PR: ports/70451, ports/70452 Submitted by: maintainer
76 lines
2.1 KiB
Makefile
76 lines
2.1 KiB
Makefile
# New ports collection makefile for: nessus
|
|
# Date created: 1 May 1999
|
|
# Whom: Anders Nordby <anders@fix.no>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# If you want to only have the command-line client even if gtk is already
|
|
# installed define one of these:
|
|
# WITHOUT_GNOME
|
|
# WITHOUT_GTK
|
|
# WITHOUT_NESSUS_GTK
|
|
|
|
PORTNAME= nessus
|
|
PORTVERSION= 2.0.12
|
|
PORTREVISION= 1
|
|
CATEGORIES= security
|
|
MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \
|
|
ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \
|
|
http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \
|
|
ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${PORTVERSION}/src/ \
|
|
ftp://ftp.au.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \
|
|
ftp://ftp.ayamura.org/pub/nessus/nessus-${PORTVERSION}/src/
|
|
DISTNAME= nessus-core-${PORTVERSION}
|
|
|
|
MAINTAINER= udo.schweigert@siemens.com
|
|
COMMENT= A security scanner: looks for vulnerabilities in a given network
|
|
|
|
CONFLICTS= nessus-devel-[0-9]* nessus-devel-gtk-[0-9]* \
|
|
nessus-devel-gtk2-[0-9]*
|
|
LIB_DEPENDS= nasl.2:${PORTSDIR}/security/nessus-libnasl
|
|
|
|
DIST_SUBDIR= nessus
|
|
WRKSRC= ${WRKDIR}/nessus-core
|
|
|
|
USE_LIBTOOL_VER=13
|
|
USE_REINPLACE= YES
|
|
USE_RC_SUBR= YES
|
|
WANT_GNOME= yes
|
|
.if defined(WITHOUT_NESSUS_GTK) || defined(WITHOUT_GTK)
|
|
WITHOUT_GNOME= yes
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${HAVE_GNOME:Mgtk20}!=""
|
|
USE_GNOME+= gtk20
|
|
PKGNAMESUFFIX= -gtk2
|
|
.elif ${HAVE_GNOME:Mgtk12}!=""
|
|
USE_GNOME+= gtk12
|
|
PKGNAMESUFFIX= -gtk
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-gtk
|
|
.endif
|
|
|
|
MAN1= nessus.1 nessus-mkrand.1 nessus-mkcert-client.1
|
|
MAN8= nessusd.8 nessus-adduser.8 nessus-mkcert.8 nessus-rmuser.8
|
|
|
|
RC_SCRIPTS_SUB= PREFIX=${PREFIX} \
|
|
RC_SUBR=${RC_SUBR}
|
|
|
|
post-install:
|
|
@${SED} ${RC_SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \
|
|
${FILESDIR}/nessusd.sh > ${LOCALBASE}/etc/rc.d/nessusd.sh
|
|
@${CHMOD} +x ${LOCALBASE}/etc/rc.d/nessusd.sh
|
|
@${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/move_nessus
|
|
.if ! exists(${PREFIX}/var/CA/serverkey.pem)
|
|
.if ! defined(BATCH)
|
|
${PREFIX}/sbin/nessus-mkcert
|
|
.else
|
|
${PREFIX}/sbin/nessus-mkcert -q
|
|
.endif
|
|
.endif
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|