diff options
author | jeh <jeh@FreeBSD.org> | 2001-01-05 11:10:15 +0800 |
---|---|---|
committer | jeh <jeh@FreeBSD.org> | 2001-01-05 11:10:15 +0800 |
commit | 129a123b49ba9abe11b5370da36d98bc931de429 (patch) | |
tree | f2f0701ccea5f7b5fb07caa9a40836d8f48c7f90 /security/nessus-devel | |
parent | ba92394ffbf643a3bc35bc6b6ff05cdf5aee9d32 (diff) | |
download | freebsd-ports-gnome-129a123b49ba9abe11b5370da36d98bc931de429.tar.gz freebsd-ports-gnome-129a123b49ba9abe11b5370da36d98bc931de429.tar.zst freebsd-ports-gnome-129a123b49ba9abe11b5370da36d98bc931de429.zip |
This patch enables the compilation of a text-only nessus client.
PR: 23808
Submitted by: Jimmy Olgeni <olgeni@uli.it> MAINTAINER
Diffstat (limited to 'security/nessus-devel')
-rw-r--r-- | security/nessus-devel/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/security/nessus-devel/Makefile b/security/nessus-devel/Makefile index df3069e5a8d5..7e4e12a1f6de 100644 --- a/security/nessus-devel/Makefile +++ b/security/nessus-devel/Makefile @@ -27,9 +27,13 @@ LIB_DEPENDS= nasl.1:${PORTSDIR}/security/nessus-libnasl DIST_SUBDIR= nessus WRKSRC= ${WRKDIR}/nessus-core +.if defined(WITHOUT_GTK) +CONFIGURE_ARGS+= --disable-gtk +.else USE_GTK= yes -USE_LIBTOOL= yes CONFIGURE_ENV= GTKCONFIG="${GTK_CONFIG}" +.endif +USE_LIBTOOL= yes MAN1= nessus.1 MAN8= nessusd.8 nessus-adduser.8 |