From matthias.andree@gmx.de  Tue May 31 15:22:56 2005
Return-Path: <matthias.andree@gmx.de>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 15D4616A41C
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 31 May 2005 15:22:56 +0000 (GMT)
	(envelope-from matthias.andree@gmx.de)
Received: from mail.dt.e-technik.uni-dortmund.de (krusty.dt.E-Technik.uni-dortmund.de [129.217.163.1])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 5EB3943D48
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 31 May 2005 15:22:55 +0000 (GMT)
	(envelope-from matthias.andree@gmx.de)
Received: from localhost (localhost [127.0.0.1])
	by mail.dt.e-technik.uni-dortmund.de (Postfix) with ESMTP id 4E6C844013
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 31 May 2005 17:22:54 +0200 (CEST)
Received: from mail.dt.e-technik.uni-dortmund.de ([127.0.0.1])
 by localhost (krusty [127.0.0.1]) (amavisd-new, port 10024) with ESMTP
 id 09181-01 for <FreeBSD-gnats-submit@freebsd.org>;
 Tue, 31 May 2005 17:22:53 +0200 (CEST)
Received: from m2a2.dyndns.org (p5091513C.dip.t-dialin.net [80.145.81.60])
	by mail.dt.e-technik.uni-dortmund.de (Postfix) with ESMTP id D6E2B4400B
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 31 May 2005 17:22:52 +0200 (CEST)
Received: from localhost (localhost [127.0.0.1])
	by merlin.emma.line.org (Postfix) with ESMTP id 058AB77A4A;
	Tue, 31 May 2005 17:22:52 +0200 (CEST)
Received: from m2a2.dyndns.org ([127.0.0.1])
 by localhost (m2a2.dyndns.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id 32643-08; Tue, 31 May 2005 17:22:51 +0200 (CEST)
Received: from libertas.emma.line.org (libertas.emma.line.org [192.168.0.2])
	by merlin.emma.line.org (Postfix) with ESMTP id 19E6B775D9;
	Tue, 31 May 2005 17:22:51 +0200 (CEST)
Received: from emma by libertas.emma.line.org with local (Exim 4.51 (FreeBSD))
	id 1Dd8Zu-0000E9-Mq; Tue, 31 May 2005 17:22:50 +0200
Message-Id: <E1Dd8Zu-0000E9-Mq@libertas.emma.line.org>
Date: Tue, 31 May 2005 17:22:50 +0200
From: Matthias Andree <matthias.andree@gmx.de>
Sender: Matthias Andree <matthias.andree@gmx.de>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [MAINTAINER] mail/bogofilter: revise OPTIONS parser, remove obs. file
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         81719
>Category:       ports
>Synopsis:       [MAINTAINER] mail/bogofilter: revise OPTIONS parser, remove obs. file
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    flz
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Tue May 31 15:30:01 GMT 2005
>Closed-Date:    Tue May 31 17:33:24 GMT 2005
>Last-Modified:  Tue May 31 17:33:24 GMT 2005
>Originator:     Matthias Andree
>Release:        FreeBSD 4.11-RELEASE-p9 i386
>Organization:
>Environment:
System: FreeBSD libertas.emma.line.org 4.11-RELEASE-p9 FreeBSD 4.11-RELEASE-p9 #1: Tue May 31 16:56:46 CEST 2005
>Description:
- revise OPTIONS parser to it checks for WITHOUT_* for options that default to on,
  to support automated build environments; patch submitted by: Thomas-Martin Seck.
- remove obsolete files/ChangeLog.port

Removed file(s):
- files/ChangeLog.port

Generated with FreeBSD Port Tools 0.63
>How-To-Repeat:
>Fix:

--- bogofilter-0.94.13.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/mail/bogofilter/Makefile /usr/home/emma/ports/mail/bogofilter/Makefile
--- /usr/ports/mail/bogofilter/Makefile	Tue May 31 16:14:44 2005
+++ /usr/home/emma/ports/mail/bogofilter/Makefile	Tue May 31 17:19:15 2005
@@ -31,7 +31,7 @@
 
 .include <bsd.port.pre.mk>
 
-.if defined(WITH_BASH)
+.if !defined(WITHOUT_BASH)
 RUN_DEPENDS=	bash:${PORTSDIR}/shells/bash
 .endif
 
@@ -43,7 +43,7 @@
 USE_ICONV=		yes
 BF_LIBS+=		-liconv
 .endif
-.if defined(WITH_GSL)
+.if !defined(WITHOUT_GSL)
 LIB_DEPENDS+=		gsl:${PORTSDIR}/math/gsl
 .else
 CONFIGURE_ARGS+=	--with-included-gsl
@@ -105,7 +105,7 @@
 	${INSTALL_DATA} ${WRKSRC}/doc/programmer/README.freebsd ${DOCSDIR}/programmer
 	${INSTALL_DATA} ${FILESDIR}/ChangeLog.port ${DOCSDIR}
 .endif
-.if defined(WITH_BASH)
+.if !defined(WITHOUT_BASH)
 .for i in randomtrain scramble trainbogo.sh
 	${INSTALL_SCRIPT} ${WRKSRC}/contrib/${i} ${DOCSDIR}/contrib/
 .endfor
diff -ruN --exclude=CVS /usr/ports/mail/bogofilter/files/ChangeLog.port /usr/home/emma/ports/mail/bogofilter/files/ChangeLog.port
--- /usr/ports/mail/bogofilter/files/ChangeLog.port	Thu Oct 14 10:01:50 2004
+++ /usr/home/emma/ports/mail/bogofilter/files/ChangeLog.port	Thu Jan  1 01:00:00 1970
@@ -1,36 +0,0 @@
-FreeBSD's port ChangeLog for mail/bogofilter
-------------------------
-
-0.92.7, 0.92.6, 0.92.5, 0.92.4
-- just building new upstream versions
-
-0.92.3
-- regression tests for %A, %I and %Q revised
-- internal cleanups
-- no longer depend on a particular gsl version, to avoid chasing the
-  GSL library after future GSL updates
-
-0.92.2
-- drop patch-ac, merged upstream
-- %I is now really the Message-ID
-- %Q is the queue idea
-- %A is the message injector's IP address
-
-2004-07-07
-- add patch-ac to fix bogus test failure in bogofilter-tdb and bogofilter-qdbm
-
-0.92.1
-- pick up bugfixes, dropping patch-aa and patch-ab from 0.92.0_1
-- update GSL dependency to gsl.6 (GNU GSL v1.5)
-
-0.92.0_1
-- [patch-ab] fix SIGSEGV (NULL dereferenced pointer read) when %I is used
-  and no IP address had been found (reported by Clemens Fischer)
-  
-- [patch-aa] fix data base shutdown in multiple-wordlists mode
-  when BOGOFILTER_CONCURRENT_DATA_STORE is set in the environment
-
-0.92.0
-- update to next stable release 0.92.0
-
--- Matthias Andree <matthias.andree@gmx.de>, port maintainer
--- bogofilter-0.94.13.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->flz 
Responsible-Changed-By: flz 
Responsible-Changed-When: Tue May 31 16:43:54 GMT 2005 
Responsible-Changed-Why:  
Grab. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=81719 
State-Changed-From-To: open->closed 
State-Changed-By: flz 
State-Changed-When: Tue May 31 17:33:10 GMT 2005 
State-Changed-Why:  
Committed, thanks! 

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