From sw@gegenunendlich.de  Sat May 29 09:39:39 2004
Return-Path: <sw@gegenunendlich.de>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B2A7B16A4CE
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 29 May 2004 09:39:39 -0700 (PDT)
Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.173])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 9E7F743D39
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 29 May 2004 09:39:38 -0700 (PDT)
	(envelope-from sw@gegenunendlich.de)
Received: from [212.227.126.209] (helo=mrelayng.kundenserver.de)
	by moutng.kundenserver.de with esmtp (Exim 3.35 #1)
	id 1BU6rY-0002w6-00; Sat, 29 May 2004 18:39:12 +0200
Received: from [80.142.220.159] (helo=kyuzo.dunkelkammer.void)
	by mrelayng.kundenserver.de with asmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
	(Exim 3.35 #1)
	id 1BU6rW-0007JI-00; Sat, 29 May 2004 18:39:11 +0200
Received: by kyuzo.dunkelkammer.void (Postfix, from userid 1002)
	id 4AAEA3D4E; Sat, 29 May 2004 18:39:09 +0200 (CEST)
Message-Id: <20040529163909.4AAEA3D4E@kyuzo.dunkelkammer.void>
Date: Sat, 29 May 2004 18:39:09 +0200 (CEST)
From: Stefan Walter <sw@gegenunendlich.de>
To: FreeBSD-gnats-submit@freebsd.org
Cc: todd@thisisa.com
Subject: [PATCH] www/http-analyze: unbreak
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         67349
>Category:       ports
>Synopsis:       [PATCH] www/http-analyze: unbreak
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    pav
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sat May 29 09:40:26 PDT 2004
>Closed-Date:    Fri Jun 11 08:37:17 GMT 2004
>Last-Modified:  Fri Jun 11 08:37:17 GMT 2004
>Originator:     Stefan Walter
>Release:        FreeBSD 5.2-CURRENT i386
>Organization:
Infinity Approximation Task Force
>Environment:
System: FreeBSD kyuzo.dunkelkammer.void 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Sat May 29 11:30:50 CEST 2004
>Description:
- Unbreak: s/BUILD_DEPENDS/PATCH_DEPENDS/
- Unconditionally convert GIFs to PNGs: merge the patch from the
  post-patch script into patch-ac and add a post-patch target to the
  Makefile. gif2png is an unconditional dependency, anyway, so there's
  no need to check for it again. (-> remove scripts/post-patch)

Port maintainer (todd@thisisa.com) is cc'd. (Please reply/followup to
approve/comment on the changes suggested in this PR. Thanks!)

Generated with FreeBSD Port Tools 0.50
>How-To-Repeat:
>Fix:
--- http-analyze-2.01_4.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/www/http-analyze.old/Makefile /usr/ports/www/http-analyze/Makefile
--- /usr/ports/www/http-analyze.old/Makefile	Sat May 29 17:32:15 2004
+++ /usr/ports/www/http-analyze/Makefile	Sat May 29 18:17:20 2004
@@ -15,11 +15,14 @@
 MAINTAINER=	todd@thisisa.com
 COMMENT=	A fast Log-Analyzer for web servers
 
-BROKEN=		"Attempts to use BUILD_DEPENDS in patch phase"
-
-BUILD_DEPENDS=	gif2png:${PORTSDIR}/graphics/gif2png
+PATCH_DEPENDS=	gif2png:${PORTSDIR}/graphics/gif2png
 LIB_DEPENDS=	gd.4:${PORTSDIR}/graphics/gd
 
 MAN1=		http-analyze.1
+
+post-patch:
+	@${ECHO_MSG} "Converting GIFs to PNG format"
+	@${FIND} "${WRKSRC}/files/btn" -name "*.gif" -type f \
+		-exec gif2png -d -O {} \;
 
 .include <bsd.port.mk>
diff -ruN --exclude=CVS /usr/ports/www/http-analyze.old/files/patch-ac /usr/ports/www/http-analyze/files/patch-ac
--- /usr/ports/www/http-analyze.old/files/patch-ac	Sat May 29 17:32:15 2004
+++ /usr/ports/www/http-analyze/files/patch-ac	Sat May 29 18:19:10 2004
@@ -1,156 +1,147 @@
-*** images.c.orig	Sun May 31 08:06:53 1998
---- images.c	Thu Jan  6 11:30:16 2000
-***************
-*** 196,202 ****
-  			basey+(rangey/2), "No hits for this month!", black);
-  		gdImageInterlace(im, 1);		/* make it interlaced */
-  		if ((out = fopen(name, "wb")) != NULL) {
-! 			gdImageGif(im, out);
-  			(void) fclose(out);
-  		}
-  		gdImageDestroy(im);
---- 196,202 ----
-  			basey+(rangey/2), "No hits for this month!", black);
-  		gdImageInterlace(im, 1);		/* make it interlaced */
-  		if ((out = fopen(name, "wb")) != NULL) {
-! 			gdImagePng(im, out);
-  			(void) fclose(out);
-  		}
-  		gdImageDestroy(im);
-***************
-*** 286,292 ****
-  
-  	gdImageInterlace(im, 1);		/* make it interlaced */
-  	if ((out = fopen(name, "wb")) != NULL) {
-! 		gdImageGif(im, out);
-  		(void) fclose(out);
-  	}
-  	gdImageDestroy(im);
---- 286,292 ----
-  
-  	gdImageInterlace(im, 1);		/* make it interlaced */
-  	if ((out = fopen(name, "wb")) != NULL) {
-! 		gdImagePng(im, out);
-  		(void) fclose(out);
-  	}
-  	gdImageDestroy(im);
-***************
-*** 441,447 ****
-  
-  	gdImageInterlace(im, 1);		/* make it interlaced */
-  	if ((out = fopen(name, "wb")) != NULL) {
-! 		gdImageGif(im, out);
-  		(void) fclose(out);
-  	}
-  	gdImageDestroy(im);
---- 441,447 ----
-  
-  	gdImageInterlace(im, 1);		/* make it interlaced */
-  	if ((out = fopen(name, "wb")) != NULL) {
-! 		gdImagePng(im, out);
-  		(void) fclose(out);
-  	}
-  	gdImageDestroy(im);
-***************
-*** 529,535 ****
-  
-  	gdImageInterlace(im, 1);		/* make it interlaced */
-  	if ((out = fopen(name, "wb")) != NULL) {
-! 		gdImageGif(im, out);
-  		(void) fclose(out);
-  	}
-  	gdImageDestroy(im);
---- 529,535 ----
-  
-  	gdImageInterlace(im, 1);		/* make it interlaced */
-  	if ((out = fopen(name, "wb")) != NULL) {
-! 		gdImagePng(im, out);
-  		(void) fclose(out);
-  	}
-  	gdImageDestroy(im);
-***************
-*** 666,672 ****
-  		gdImageInterlace(im, 1);		/* make it interlaced */
-  		gdImageInterlace(im, 1);		/* make it interlaced */
-  		if ((out = fopen(name, "wb")) != NULL) {
-! 			gdImageGif(im, out);
-  			(void) fclose(out);
-  		}
-  		gdImageDestroy(im);
---- 666,672 ----
-  		gdImageInterlace(im, 1);		/* make it interlaced */
-  		gdImageInterlace(im, 1);		/* make it interlaced */
-  		if ((out = fopen(name, "wb")) != NULL) {
-! 			gdImagePng(im, out);
-  			(void) fclose(out);
-  		}
-  		gdImageDestroy(im);
-***************
-*** 752,758 ****
-  
-  	gdImageInterlace(im, 1);		/* make it interlaced */
-  	if ((out = fopen(name, "wb")) != NULL) {
-! 		gdImageGif(im, out);
-  		(void) fclose(out);
-  	}
-  	gdImageDestroy(im);
---- 752,758 ----
-  
-  	gdImageInterlace(im, 1);		/* make it interlaced */
-  	if ((out = fopen(name, "wb")) != NULL) {
-! 		gdImagePng(im, out);
-  		(void) fclose(out);
-  	}
-  	gdImageDestroy(im);
-***************
-*** 988,994 ****
-  
-  	gdImageInterlace(im, 1);		/* make it interlaced */
-  	if ((out = fopen(name, "wb")) != NULL) {
-! 		gdImageGif(im, out);
-  		(void) fclose(out);
-  	}
-  	gdImageDestroy(im);
---- 988,994 ----
-  
-  	gdImageInterlace(im, 1);		/* make it interlaced */
-  	if ((out = fopen(name, "wb")) != NULL) {
-! 		gdImagePng(im, out);
-  		(void) fclose(out);
-  	}
-  	gdImageDestroy(im);
-***************
-*** 1037,1043 ****
-  		(void) gdImageColorAllocate(im, tp->color[0], tp->color[1], tp->color[2]);
-  		gdImageInterlace(im, 1);
-  		if ((out=fopen(fname, "wb")) != NULL) {
-! 			gdImageGif(im, out);
-  			(void) fclose(out);
-  		}
-  		gdImageDestroy(im);
---- 1037,1043 ----
-  		(void) gdImageColorAllocate(im, tp->color[0], tp->color[1], tp->color[2]);
-  		gdImageInterlace(im, 1);
-  		if ((out=fopen(fname, "wb")) != NULL) {
-! 			gdImagePng(im, out);
-  			(void) fclose(out);
-  		}
-  		gdImageDestroy(im);
-***************
-*** 1071,1077 ****
-  		if (!buttons[idx].name)
-  			continue;
-  		if ((fp = fopen(buttons[idx].name, "rb")) != NULL) {
-! 			ip = gdImageCreateFromGif(fp);
-  			(void) fclose(fp);
-  			buttons[idx].wid = gdImageSX(ip);
-  			buttons[idx].ht = gdImageSY(ip);
---- 1071,1077 ----
-  		if (!buttons[idx].name)
-  			continue;
-  		if ((fp = fopen(buttons[idx].name, "rb")) != NULL) {
-! 			ip = gdImageCreateFromPng(fp);
-  			(void) fclose(fp);
-  			buttons[idx].wid = gdImageSX(ip);
-  			buttons[idx].ht = gdImageSY(ip);
-
+--- images.c.orig	Sun May 31 15:06:53 1998
++++ images.c	Sat May 29 18:08:54 2004
+@@ -196,7 +196,7 @@
+ 			basey+(rangey/2), "No hits for this month!", black);
+ 		gdImageInterlace(im, 1);		/* make it interlaced */
+ 		if ((out = fopen(name, "wb")) != NULL) {
+-			gdImageGif(im, out);
++			gdImagePng(im, out);
+ 			(void) fclose(out);
+ 		}
+ 		gdImageDestroy(im);
+@@ -286,7 +286,7 @@
+ 
+ 	gdImageInterlace(im, 1);		/* make it interlaced */
+ 	if ((out = fopen(name, "wb")) != NULL) {
+-		gdImageGif(im, out);
++		gdImagePng(im, out);
+ 		(void) fclose(out);
+ 	}
+ 	gdImageDestroy(im);
+@@ -441,7 +441,7 @@
+ 
+ 	gdImageInterlace(im, 1);		/* make it interlaced */
+ 	if ((out = fopen(name, "wb")) != NULL) {
+-		gdImageGif(im, out);
++		gdImagePng(im, out);
+ 		(void) fclose(out);
+ 	}
+ 	gdImageDestroy(im);
+@@ -529,7 +529,7 @@
+ 
+ 	gdImageInterlace(im, 1);		/* make it interlaced */
+ 	if ((out = fopen(name, "wb")) != NULL) {
+-		gdImageGif(im, out);
++		gdImagePng(im, out);
+ 		(void) fclose(out);
+ 	}
+ 	gdImageDestroy(im);
+@@ -666,7 +666,7 @@
+ 		gdImageInterlace(im, 1);		/* make it interlaced */
+ 		gdImageInterlace(im, 1);		/* make it interlaced */
+ 		if ((out = fopen(name, "wb")) != NULL) {
+-			gdImageGif(im, out);
++			gdImagePng(im, out);
+ 			(void) fclose(out);
+ 		}
+ 		gdImageDestroy(im);
+@@ -752,7 +752,7 @@
+ 
+ 	gdImageInterlace(im, 1);		/* make it interlaced */
+ 	if ((out = fopen(name, "wb")) != NULL) {
+-		gdImageGif(im, out);
++		gdImagePng(im, out);
+ 		(void) fclose(out);
+ 	}
+ 	gdImageDestroy(im);
+@@ -988,7 +988,7 @@
+ 
+ 	gdImageInterlace(im, 1);		/* make it interlaced */
+ 	if ((out = fopen(name, "wb")) != NULL) {
+-		gdImageGif(im, out);
++		gdImagePng(im, out);
+ 		(void) fclose(out);
+ 	}
+ 	gdImageDestroy(im);
+@@ -996,37 +996,37 @@
+ }
+  
+ ICON_TAB icon_tab[] = {
+-	{ "btn/sq_green.gif",     0, 204,   0 },
+-	{ "btn/sq_blue.gif",      0,   0, 255 },
+-	{ "btn/sq_red.gif",     255,   0,   0 },
+-	{ "btn/sq_orange.gif",  222, 102,   0 },
+-	{ "btn/sq_yellow.gif",  242, 242,   0 },
+-	{ "btn/sq_magenta.gif", 153,   0, 255 },
+-	{ "btn/sq_grey.gif",    204, 204, 204 }
++	{ "btn/sq_green.png",     0, 204,   0 },
++	{ "btn/sq_blue.png",      0,   0, 255 },
++	{ "btn/sq_red.png",     255,   0,   0 },
++	{ "btn/sq_orange.png",  222, 102,   0 },
++	{ "btn/sq_yellow.png",  242, 242,   0 },
++	{ "btn/sq_magenta.png", 153,   0, 255 },
++	{ "btn/sq_grey.png",    204, 204, 204 }
+ };
+ 
+ BTN_TAB buttons[] = {		/* various images */
+-	{ "btn/netstore_sw.gif", "Netstore", 0, 0 },
+-	{ "btn/netstore_sb.gif", "Netstore", 0, 0 },
+-	{ "btn/RAG_sw.gif",	NULL,		0, 0 },
+-	{ "btn/RAG_sb.gif",	NULL,		0, 0 },
+-	{ "btn/year_off.gif",	"summary",	0, 0 },
+-	{ "btn/totals_off.gif",	"totals",	0, 0 },
+-	{ "btn/days_off.gif",	"days",		0, 0 },
++	{ "btn/netstore_sw.png", "Netstore", 0, 0 },
++	{ "btn/netstore_sb.png", "Netstore", 0, 0 },
++	{ "btn/RAG_sw.png",	NULL,		0, 0 },
++	{ "btn/RAG_sb.png",	NULL,		0, 0 },
++	{ "btn/year_off.png",	"summary",	0, 0 },
++	{ "btn/totals_off.png",	"totals",	0, 0 },
++	{ "btn/days_off.png",	"days",		0, 0 },
+ 	{ NULL,			NULL,		0, 0 },
+ 	{ NULL,			NULL,		0, 0 },
+-	{ "btn/avload_off.gif",	"avload",	0, 0 },
+-	{ "btn/topurl_off.gif",	"topurl",	0, 0 },
+-	{ "btn/topdom_off.gif",	"topdom",	0, 0 },
+-	{ "btn/topuag_off.gif",	"topuag",	0, 0 },
+-	{ "btn/topref_off.gif",	"topref",	0, 0 },
+-	{ "btn/cntry_off.gif",	"country",	0, 0 },
+-	{ "btn/files_off.gif",	"files",	0, 0 },
+-	{ "btn/rfiles_off.gif",	"rfiles",	0, 0 },
+-	{ "btn/sites_off.gif",	"sites",	0, 0 },
+-	{ "btn/rsites_off.gif",	"rsites",	0, 0 },
+-	{ "btn/agents_off.gif",	"agents",	0, 0 },
+-	{ "btn/refers_off.gif",	"refers",	0, 0 }
++	{ "btn/avload_off.png",	"avload",	0, 0 },
++	{ "btn/topurl_off.png",	"topurl",	0, 0 },
++	{ "btn/topdom_off.png",	"topdom",	0, 0 },
++	{ "btn/topuag_off.png",	"topuag",	0, 0 },
++	{ "btn/topref_off.png",	"topref",	0, 0 },
++	{ "btn/cntry_off.png",	"country",	0, 0 },
++	{ "btn/files_off.png",	"files",	0, 0 },
++	{ "btn/rfiles_off.png",	"rfiles",	0, 0 },
++	{ "btn/sites_off.png",	"sites",	0, 0 },
++	{ "btn/rsites_off.png",	"rsites",	0, 0 },
++	{ "btn/agents_off.png",	"agents",	0, 0 },
++	{ "btn/refers_off.png",	"refers",	0, 0 }
+ };
+ 
+ static void mkIcon(char * const fname, ICON_TAB * const tp) {
+@@ -1037,7 +1037,7 @@
+ 		(void) gdImageColorAllocate(im, tp->color[0], tp->color[1], tp->color[2]);
+ 		gdImageInterlace(im, 1);
+ 		if ((out=fopen(fname, "wb")) != NULL) {
+-			gdImageGif(im, out);
++			gdImagePng(im, out);
+ 			(void) fclose(out);
+ 		}
+ 		gdImageDestroy(im);
+@@ -1071,7 +1071,7 @@
+ 		if (!buttons[idx].name)
+ 			continue;
+ 		if ((fp = fopen(buttons[idx].name, "rb")) != NULL) {
+-			ip = gdImageCreateFromGif(fp);
++			ip = gdImageCreateFromPng(fp);
+ 			(void) fclose(fp);
+ 			buttons[idx].wid = gdImageSX(ip);
+ 			buttons[idx].ht = gdImageSY(ip);
diff -ruN --exclude=CVS /usr/ports/www/http-analyze.old/scripts/post-patch /usr/ports/www/http-analyze/scripts/post-patch
--- /usr/ports/www/http-analyze.old/scripts/post-patch	Sat May 29 17:32:15 2004
+++ /usr/ports/www/http-analyze/scripts/post-patch	Thu Jan  1 01:00:00 1970
@@ -1,95 +0,0 @@
-#!/bin/sh
-gifdir="${WRKSRC}/files/btn"
-gif2png=`which gif2png`
-
-if [ -x $gif2png ]; then 
-    patch --quiet ${WRKSRC}/images.c << EOP
-*** images.c.orig	Fri Nov 17 00:52:02 2000
---- images.c	Fri Nov 17 00:52:48 2000
-***************
-*** 996,1032 ****
-  }
-   
-  ICON_TAB icon_tab[] = {
-! 	{ "btn/sq_green.gif",     0, 204,   0 },
-! 	{ "btn/sq_blue.gif",      0,   0, 255 },
-! 	{ "btn/sq_red.gif",     255,   0,   0 },
-! 	{ "btn/sq_orange.gif",  222, 102,   0 },
-! 	{ "btn/sq_yellow.gif",  242, 242,   0 },
-! 	{ "btn/sq_magenta.gif", 153,   0, 255 },
-! 	{ "btn/sq_grey.gif",    204, 204, 204 }
-  };
-  
-  BTN_TAB buttons[] = {		/* various images */
-! 	{ "btn/netstore_sw.gif", "Netstore", 0, 0 },
-! 	{ "btn/netstore_sb.gif", "Netstore", 0, 0 },
-! 	{ "btn/RAG_sw.gif",	NULL,		0, 0 },
-! 	{ "btn/RAG_sb.gif",	NULL,		0, 0 },
-! 	{ "btn/year_off.gif",	"summary",	0, 0 },
-! 	{ "btn/totals_off.gif",	"totals",	0, 0 },
-! 	{ "btn/days_off.gif",	"days",		0, 0 },
-  	{ NULL,			NULL,		0, 0 },
-  	{ NULL,			NULL,		0, 0 },
-! 	{ "btn/avload_off.gif",	"avload",	0, 0 },
-! 	{ "btn/topurl_off.gif",	"topurl",	0, 0 },
-! 	{ "btn/topdom_off.gif",	"topdom",	0, 0 },
-! 	{ "btn/topuag_off.gif",	"topuag",	0, 0 },
-! 	{ "btn/topref_off.gif",	"topref",	0, 0 },
-! 	{ "btn/cntry_off.gif",	"country",	0, 0 },
-! 	{ "btn/files_off.gif",	"files",	0, 0 },
-! 	{ "btn/rfiles_off.gif",	"rfiles",	0, 0 },
-! 	{ "btn/sites_off.gif",	"sites",	0, 0 },
-! 	{ "btn/rsites_off.gif",	"rsites",	0, 0 },
-! 	{ "btn/agents_off.gif",	"agents",	0, 0 },
-! 	{ "btn/refers_off.gif",	"refers",	0, 0 }
-  };
-  
-  static void mkIcon(char * const fname, ICON_TAB * const tp) {
---- 996,1032 ----
-  }
-   
-  ICON_TAB icon_tab[] = {
-! 	{ "btn/sq_green.png",     0, 204,   0 },
-! 	{ "btn/sq_blue.png",      0,   0, 255 },
-! 	{ "btn/sq_red.png",     255,   0,   0 },
-! 	{ "btn/sq_orange.png",  222, 102,   0 },
-! 	{ "btn/sq_yellow.png",  242, 242,   0 },
-! 	{ "btn/sq_magenta.png", 153,   0, 255 },
-! 	{ "btn/sq_grey.png",    204, 204, 204 }
-  };
-  
-  BTN_TAB buttons[] = {		/* various images */
-! 	{ "btn/netstore_sw.png", "Netstore", 0, 0 },
-! 	{ "btn/netstore_sb.png", "Netstore", 0, 0 },
-! 	{ "btn/RAG_sw.png",	NULL,		0, 0 },
-! 	{ "btn/RAG_sb.png",	NULL,		0, 0 },
-! 	{ "btn/year_off.png",	"summary",	0, 0 },
-! 	{ "btn/totals_off.png",	"totals",	0, 0 },
-! 	{ "btn/days_off.png",	"days",		0, 0 },
-  	{ NULL,			NULL,		0, 0 },
-  	{ NULL,			NULL,		0, 0 },
-! 	{ "btn/avload_off.png",	"avload",	0, 0 },
-! 	{ "btn/topurl_off.png",	"topurl",	0, 0 },
-! 	{ "btn/topdom_off.png",	"topdom",	0, 0 },
-! 	{ "btn/topuag_off.png",	"topuag",	0, 0 },
-! 	{ "btn/topref_off.png",	"topref",	0, 0 },
-! 	{ "btn/cntry_off.png",	"country",	0, 0 },
-! 	{ "btn/files_off.png",	"files",	0, 0 },
-! 	{ "btn/rfiles_off.png",	"rfiles",	0, 0 },
-! 	{ "btn/sites_off.png",	"sites",	0, 0 },
-! 	{ "btn/rsites_off.png",	"rsites",	0, 0 },
-! 	{ "btn/agents_off.png",	"agents",	0, 0 },
-! 	{ "btn/refers_off.png",	"refers",	0, 0 }
-  };
-  
-  static void mkIcon(char * const fname, ICON_TAB * const tp) {
-EOP
-    echo "===>  Converting gifs to png format" 
-    find $gifdir -name "*gif" -type f -exec $gif2png -d -O {} \;
-elif [ ! -x $gif2png ]; then
-    echo "***  Convertion of gifs failed."
-    echo "***  Running http-analyze with the -f option may cause segmentation faults."
-    echo "***  It is recommended to install gif2png and reinstall this port."
-fi
-
-exit 0
--- http-analyze-2.01_4.patch ends here ---

>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->feedback 
State-Changed-By: pav 
State-Changed-When: Sat May 29 12:57:37 PDT 2004 
State-Changed-Why:  
Asked maintainer for approval. 


Responsible-Changed-From-To: freebsd-ports-bugs->pav 
Responsible-Changed-By: pav 
Responsible-Changed-When: Sat May 29 12:57:37 PDT 2004 
Responsible-Changed-Why:  
Handle. 

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

From: Pav Lucistnik <pav@FreeBSD.org>
To: freebsd-gnats-submit@FreeBSD.org, sw@gegenunendlich.de,
	todd@thisisa.com
Cc:  
Subject: Re: ports/67349: [PATCH] www/http-analyze: unbreak
Date: Sat, 29 May 2004 21:57:33 +0200

 Dear maintainer of FreeBSD port www/http-analyze, please take a look at
 
 http://www.freebsd.org/cgi/query-pr.cgi?q=67349
 
 Do you approve this patch?
 
 -- 
 Pav Lucistnik <pav@oook.cz>
               <pav@FreeBSD.org>
 
 On real UNIX, /usr/bin/more prints -More-.

From: Stefan Walter <sw@gegenunendlich.de>
To: Pav Lucistnik <pav@FreeBSD.org>
Cc: freebsd-gnats-submit@FreeBSD.org, todd@thisisa.com
Subject: Re: ports/67349: [PATCH] www/http-analyze: unbreak
Date: Fri, 4 Jun 2004 15:53:38 +0200

 Hi Pav,
 
 Pav Lucistnik, 29.05.04, 21:57h CEST:
 
 > Dear maintainer of FreeBSD port www/http-analyze, please take a look at
 > 
 > http://www.freebsd.org/cgi/query-pr.cgi?q=67349
 > 
 > Do you approve this patch?
 
 Hm...
 
 - The maintainer hasn't replied for a week now.
 - http://www.thisisa.com/ (seems to be the maintainer's home page) has a
   line "Page copyright (c) 1999", and all internal links seem to be
   broken.
 - A search on Google (Groups) finds only a few mails from 2000.
 - According to the CVS log, there has been a maintainer timeout on a
   change to this port in March, and it doesn't look like he's been too
   active recently.
 
 I assume he isn't there any more, and suggest resetting MAINTAINER. If
 he's really interested in the port, he can still reclaim it.
 
 Stefan

From: Todd Mortensen <todd@thisisa.com>
To: Stefan Walter <sw@gegenunendlich.de>
Cc: Pav Lucistnik <pav@FreeBSD.org>, freebsd-gnats-submit@FreeBSD.org
Subject: Re: ports/67349: [PATCH] www/http-analyze: unbreak
Date: Thu, 10 Jun 2004 13:20:33 -0700

 Sorry about the delay on the reply.  My email account has been mailbombed and I
 am just getting through to the real emails.  
 
 These changes look correct to fix the problem and use the new PATCH_DEPENDS
 instead of the old BUILD_DEPENDS. 
 
 Todd Mortensen.
 
 
 Quoting Stefan Walter <sw@gegenunendlich.de>:
 
 > Hi Pav,
 > 
 > Pav Lucistnik, 29.05.04, 21:57h CEST:
 > 
 > > Dear maintainer of FreeBSD port www/http-analyze, please take a look at
 > > 
 > > http://www.freebsd.org/cgi/query-pr.cgi?q=67349
 > > 
 > > Do you approve this patch?
 > 
 > Hm...
 > 
 > - The maintainer hasn't replied for a week now.
 > - http://www.thisisa.com/ (seems to be the maintainer's home page) has a
 >   line "Page copyright (c) 1999", and all internal links seem to be
 >   broken.
 > - A search on Google (Groups) finds only a few mails from 2000.
 > - According to the CVS log, there has been a maintainer timeout on a
 >   change to this port in March, and it doesn't look like he's been too
 >   active recently.
 > 
 > I assume he isn't there any more, and suggest resetting MAINTAINER. If
 > he's really interested in the port, he can still reclaim it.
 > 
 > Stefan
 > 
 
 
 
 
 -------------------------------------------------
 This mail sent through IMP: http://horde.org/imp/

From: Stefan Walter <sw@gegenunendlich.de>
To: Todd Mortensen <todd@thisisa.com>
Cc: Pav Lucistnik <pav@FreeBSD.org>, freebsd-gnats-submit@FreeBSD.org
Subject: Re: ports/67349: [PATCH] www/http-analyze: unbreak
Date: Fri, 11 Jun 2004 08:13:44 +0200

 Todd Mortensen, 10.06.04, 22:20h CEST:
 
 > Sorry about the delay on the reply.  My email account has been mailbombed and I
 > am just getting through to the real emails.  
 
 Sorry then. ;)
 
 Regards,
 Stefan
State-Changed-From-To: feedback->closed 
State-Changed-By: pav 
State-Changed-When: Fri Jun 11 08:37:10 GMT 2004 
State-Changed-Why:  
Committed, thanks! 

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