ports/51870: Update port: sysutils/anteater to 0.4.1

KATO Tsuguru tkato at prontomail.com
Tue May 6 14:40:45 UTC 2003


>Number:         51870
>Category:       ports
>Synopsis:       Update port: sysutils/anteater to 0.4.1
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue May 06 07:40:21 PDT 2003
>Closed-Date:
>Last-Modified:
>Originator:     KATO Tsuguru
>Release:        FreeBSD 4.8-RELEASE i386
>Organization:
>Environment:
>Description:
- Update to version 0.4.1

Remove file:
files/patch-anteater_asciireport.cpp
files/patch-anteater_clp.cpp
files/patch-anteater_htmlreport.cpp
files/patch-anteater_report.cpp

>How-To-Repeat:
>Fix:

diff -urN /usr/ports/sysutils/anteater/Makefile sysutils/anteater/Makefile
--- /usr/ports/sysutils/anteater/Makefile	Sat Apr 12 23:27:13 2003
+++ sysutils/anteater/Makefile	Sat May  3 10:02:52 2003
@@ -7,21 +7,17 @@
 #
 
 PORTNAME=	anteater
-PORTVERSION=	0.4
+PORTVERSION=	0.4.1
 CATEGORIES=	sysutils
 MASTER_SITES=	ftp://ftp.profzone.ch/drzoom/anteater/
 
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	A MTA log analyzer
 
+USE_BZIP2=	yes
 GNU_CONFIGURE=	yes
+CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
 
-.include <bsd.port.pre.mk>
+MAN1=		anteater.1
 
-# You will still get configure errors on -STABLE
-#  if you set CXX to a GCC3 incarnation!
-.if ${OSVERSION} < 500035
-CONFIGURE_ARGS=	--enable-strstream
-.endif
-
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
diff -urN /usr/ports/sysutils/anteater/distinfo sysutils/anteater/distinfo
--- /usr/ports/sysutils/anteater/distinfo	Mon Aug 13 13:00:41 2001
+++ sysutils/anteater/distinfo	Sat May  3 09:51:35 2003
@@ -1 +1 @@
-MD5 (anteater-0.4.tar.gz) = b6e5438ae0255760af8e49013d900d3a
+MD5 (anteater-0.4.1.tar.bz2) = fbd67606469359ea696b28352414e784
diff -urN /usr/ports/sysutils/anteater/files/patch-anteater_asciireport.cpp sysutils/anteater/files/patch-anteater_asciireport.cpp
--- /usr/ports/sysutils/anteater/files/patch-anteater_asciireport.cpp	Tue Nov  5 21:32:05 2002
+++ sysutils/anteater/files/patch-anteater_asciireport.cpp	Thu Jan  1 09:00:00 1970
@@ -1,31 +0,0 @@
-
-$FreeBSD: ports/sysutils/anteater/files/patch-anteater_asciireport.cpp,v 1.1 2002/11/05 12:32:05 naddy Exp $
-
---- anteater/asciireport.cpp.orig	Thu May 24 19:35:02 2001
-+++ anteater/asciireport.cpp	Tue Nov  5 13:20:12 2002
-@@ -297,7 +297,7 @@
- 	if( !nextField() ) printSpace();	
- }
- 
--void asciiReport::skipField( const bool realline = true )
-+void asciiReport::skipField( const bool realline)
- {
-   if( col_list.size() == 0 ) return; // Fehler.
-   if( realline ) checkAutoField();
-@@ -366,14 +366,14 @@
- }
- 
- /** Gibt width anzahl spaces aus. */
--void asciiReport::printSpace( const int width = 1 )
-+void asciiReport::printSpace( const int width)
- {
-   int i;
-   for( i = 0; i < width; i++ ) (*os).put( ' ' );
- }
- 
- /** Zeichnet eine Linie __er die gesammte Breite mit zeichen ch. */
--void asciiReport::printLine( const char ch = '-', const int size = -1 )
-+void asciiReport::printLine( const char ch, const int size)
- {
-   int i;
-   for( i = 0; i < ( size == -1 ? ScreenWidth : size ) ; i++ ) (*os).put( ch );
diff -urN /usr/ports/sysutils/anteater/files/patch-anteater_clp.cpp sysutils/anteater/files/patch-anteater_clp.cpp
--- /usr/ports/sysutils/anteater/files/patch-anteater_clp.cpp	Tue Nov  5 21:32:05 2002
+++ sysutils/anteater/files/patch-anteater_clp.cpp	Thu Jan  1 09:00:00 1970
@@ -1,14 +0,0 @@
-
-$FreeBSD: ports/sysutils/anteater/files/patch-anteater_clp.cpp,v 1.1 2002/11/05 12:32:05 naddy Exp $
-
---- anteater/clp.cpp.orig	Thu May 24 19:28:50 2001
-+++ anteater/clp.cpp	Tue Nov  5 13:20:12 2002
-@@ -502,7 +502,7 @@
-   return true;
- };
- 
--bool clp::parseError( const std::string &wrong, const long line = 0 )
-+bool clp::parseError( const std::string &wrong, const long line)
- {
-   std::cerr << "Ooops! I don't understand your parameter \"" << wrong << "\"..." << std::endl;
-   std::cerr << "Please check the syntax or read the manual." << std::endl << std::endl;
diff -urN /usr/ports/sysutils/anteater/files/patch-anteater_htmlreport.cpp sysutils/anteater/files/patch-anteater_htmlreport.cpp
--- /usr/ports/sysutils/anteater/files/patch-anteater_htmlreport.cpp	Tue Nov  5 21:32:05 2002
+++ sysutils/anteater/files/patch-anteater_htmlreport.cpp	Thu Jan  1 09:00:00 1970
@@ -1,14 +0,0 @@
-
-$FreeBSD: ports/sysutils/anteater/files/patch-anteater_htmlreport.cpp,v 1.1 2002/11/05 12:32:05 naddy Exp $
-
---- anteater/htmlreport.cpp.orig	Thu May 24 19:14:00 2001
-+++ anteater/htmlreport.cpp	Tue Nov  5 13:20:12 2002
-@@ -244,7 +244,7 @@
- 	nextField();	
- }
- 
--void htmlReport::skipField( const bool realline = true )
-+void htmlReport::skipField( const bool realline)
- {
-   if( col_list.size() == 0 ) return; // Fehler.
-   if( realline ) checkAutoField();
diff -urN /usr/ports/sysutils/anteater/files/patch-anteater_report.cpp sysutils/anteater/files/patch-anteater_report.cpp
--- /usr/ports/sysutils/anteater/files/patch-anteater_report.cpp	Tue Nov  5 21:32:05 2002
+++ sysutils/anteater/files/patch-anteater_report.cpp	Thu Jan  1 09:00:00 1970
@@ -1,14 +0,0 @@
-
-$FreeBSD: ports/sysutils/anteater/files/patch-anteater_report.cpp,v 1.1 2002/11/05 12:32:05 naddy Exp $
-
---- anteater/report.cpp.orig	Thu May 24 19:43:41 2001
-+++ anteater/report.cpp	Tue Nov  5 13:20:12 2002
-@@ -132,7 +132,7 @@
- }
- 
- void Report::addCol( const int colSize, const colTyp_e colTyp, const colAlign_e colAlign,
-- const std::string &colTitle, const colStyle_e colStyle, const unsigned long colFlags = 0 )
-+ const std::string &colTitle, const colStyle_e colStyle, const unsigned long colFlags)
- {
- 	if( Type == TABLE )
- 	{
>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list