3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
# New ports collection makefile for: nessus-devel
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nessus-devel
|
|
PORTVERSION= 2.0.10a
|
|
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
|
|
|
|
LIB_DEPENDS= nasl.2:${PORTSDIR}/security/nessus-libnasl-devel
|
|
|
|
DIST_SUBDIR= nessus
|
|
WRKSRC= ${WRKDIR}/nessus-core
|
|
|
|
USE_LIBTOOL_VER=13
|
|
WANT_GNOME= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${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
|
|
|
|
post-install:
|
|
@${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
|
|
|
|
.include <bsd.port.post.mk>
|