From edwin@mavetju.org  Tue Mar  7 11:27:48 2006
Return-Path: <edwin@mavetju.org>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id DDFC516A444
	for <FreeBSD-gnats-submit@freebsd.org>; Tue,  7 Mar 2006 11:27:48 +0000 (GMT)
	(envelope-from edwin@mavetju.org)
Received: from mail2out.barnet.com.au (mail2out.barnet.com.au [202.83.176.14])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 6418543D46
	for <FreeBSD-gnats-submit@freebsd.org>; Tue,  7 Mar 2006 11:27:47 +0000 (GMT)
	(envelope-from edwin@mavetju.org)
Received: by mail2out.barnet.com.au (Postfix, from userid 27)
	id 1CEC07073BA; Tue,  7 Mar 2006 22:27:46 +1100 (EST)
Received: from mail2-auth.barnet.com.au (mail2.barnet.com.au [202.83.176.13])
	(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
	(Client CN "*.barnet.com.au", Issuer "BarNet Root Certificate Authority" (verified OK))
	by mail2.barnet.com.au (Postfix) with ESMTP id D780B7073B6
	for <FreeBSD-gnats-submit@freebsd.org>; Tue,  7 Mar 2006 22:27:45 +1100 (EST)
Received: from k7.mavetju (edwin-3.int.barnet.com.au [10.10.12.2])
	(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
	(Client did not present a certificate)
	by mail2-auth.barnet.com.au (Postfix) with ESMTP id 5F06C7073B4
	for <FreeBSD-gnats-submit@freebsd.org>; Tue,  7 Mar 2006 22:27:45 +1100 (EST)
Received: by k7.mavetju (Postfix, from userid 1001)
	id 7DD443C; Tue,  7 Mar 2006 22:27:44 +1100 (EST)
Message-Id: <20060307112744.7DD443C@k7.mavetju>
Date: Tue,  7 Mar 2006 22:27:44 +1100 (EST)
From: Edwin Groothuis <edwin@mavetju.org>
Reply-To: Edwin Groothuis <edwin@mavetju.org>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [patch (kind of)] security/nessus should honour WITHOUT_X11
X-Send-Pr-Version: 3.113
X-GNATS-Notify: udo.schweigert@siemens.com

>Number:         94165
>Category:       ports
>Synopsis:       [patch (kind of)] security/nessus should honour WITHOUT_X11
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Mar 07 11:30:08 GMT 2006
>Closed-Date:    Fri Mar 17 01:20:35 GMT 2006
>Last-Modified:  Fri Mar 17 01:20:35 GMT 2006
>Originator:     Edwin Groothuis
>Release:        FreeBSD 6.0-RELEASE i386
>Organization:
-
>Environment:
System: FreeBSD k7.mavetju 6.0-RELEASE FreeBSD 6.0-RELEASE #0: Thu Nov 3 09:36:13 UTC 2005 root@x64.samsco.home:/usr/obj/usr/src/sys/GENERIC i386


>Description:

Despite that I have "WITHOUT_X11=yes" in my /etc/make.conf, security/nessus 
is still trying to install gtk and friends

>How-To-Repeat:
>Fix:

Add:

.if defined(WIHTOUT_X11)
WITHOUT_GNOME=		yes
WITHOUT_NESSUS_GTK=	yes
WITHOUT_GTK=		yes
.endif

to security/nessus Makefile
>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Tue Mar 7 11:32:10 UTC 2006 
State-Changed-Why:  
Awaiting maintainers feedback 

http://www.freebsd.org/cgi/query-pr.cgi?pr=94165 

From: Udo Schweigert <Udo.Schweigert@siemens.com>
To: bug-followup@FreeBSD.org
Cc: Edwin Groothuis <edwin@FreeBSD.org>
Subject: Re: ports/94165: [patch (kind of)] security/nessus should honour WITHOUT_X11
Date: Tue, 7 Mar 2006 13:28:25 +0100

 On Tue, Mar 07, 2006 at 11:32:05 +0000, Edwin Groothuis wrote:
 > Maintainer of security/nessus,
 > 
 > Please note that PR ports/94165 has just been submitted.
 > 
 > If it contains a patch for an upgrade, an enhancement or a bug fix
 > you agree on, reply to this email stating that you approve the patch
 > and a committer will take care of it.
 > 
 > The full text of the PR can be found at:
 >     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/94165
 
 Here are two patches (security/nessus and security/nessus-devel) which solve
 that issue (tested here on 6.1-PRERELEASE).
 
 
 Best regards
 
 -- 
 Udo Schweigert, Siemens AG   | Voice      : +49 89 636 42170
 CT IC CERT, Siemens CERT     | Fax        : +49 89 636 41166
 D-81730 Muenchen / Germany   | email      : udo.schweigert@siemens.com
 
 diff -ru /usr/ports/security/nessus/Makefile nessus/Makefile
 --- /usr/ports/security/nessus/Makefile	Fri Feb 24 06:09:57 2006
 +++ nessus/Makefile	Tue Mar  7 13:18:26 2006
 @@ -36,6 +36,9 @@
  USE_REINPLACE=	YES
  USE_RC_SUBR=	YES
  WANT_GNOME=	yes
 +.if defined(WIHTOUT_X11)
 +WITHOUT_NESSUS_GTK=	yes
 +.endif
  .if defined(WITHOUT_NESSUS_GTK) || defined(WITHOUT_GTK)
  WITHOUT_GNOME=	yes
  .endif
 
 diff -ru /usr/ports/security/nessus-devel/Makefile nessus-devel/Makefile
 --- /usr/ports/security/nessus-devel/Makefile	Fri Feb 24 06:09:57 2006
 +++ nessus-devel/Makefile	Tue Mar  7 13:18:51 2006
 @@ -36,6 +36,9 @@
  USE_REINPLACE=	YES
  USE_RC_SUBR=	YES
  WANT_GNOME=	yes
 +.if defined(WIHTOUT_X11)
 +WITHOUT_NESSUS_GTK=	yes
 +.endif
  .if defined(WITHOUT_NESSUS_GTK) || defined(WITHOUT_GTK)
  WITHOUT_GNOME=	yes
  .endif

From: Udo Schweigert <Udo.Schweigert@siemens.com>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/94165: [patch (kind of)] security/nessus should honour WITHOUT_X11
Date: Thu, 16 Mar 2006 16:51:26 +0100

 This PR can be closed, as the patches have been committed on March 7.
 
 
 Best regards
 
 -- 
 Udo Schweigert, Siemens AG   | Voice      : +49 89 636 42170
 CT IC CERT, Siemens CERT     | Fax        : +49 89 636 41166
 D-81730 Muenchen / Germany   | email      : udo.schweigert@siemens.com
State-Changed-From-To: feedback->closed 
State-Changed-By: linimon 
State-Changed-When: Fri Mar 17 01:19:45 UTC 2006 
State-Changed-Why:  
Patches have been committed. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=94165 
>Unformatted:
