From nobody@FreeBSD.org  Thu Oct  4 11:01:50 2007
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 43D1A16A468
	for <freebsd-gnats-submit@FreeBSD.org>; Thu,  4 Oct 2007 11:01:50 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21])
	by mx1.freebsd.org (Postfix) with ESMTP id 2D3F513C494
	for <freebsd-gnats-submit@FreeBSD.org>; Thu,  4 Oct 2007 11:01:50 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.14.1/8.14.1) with ESMTP id l94B1nlK038588
	for <freebsd-gnats-submit@FreeBSD.org>; Thu, 4 Oct 2007 11:01:49 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.14.1/8.14.1/Submit) id l94B1n0T038587;
	Thu, 4 Oct 2007 11:01:49 GMT
	(envelope-from nobody)
Message-Id: <200710041101.l94B1n0T038587@www.freebsd.org>
Date: Thu, 4 Oct 2007 11:01:49 GMT
From: Ismail YENIGUL <ismail@enderunix.org>
To: freebsd-gnats-submit@FreeBSD.org
Subject: Update Port:www/webreport
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         116899
>Category:       ports
>Synopsis:       Update Port:www/webreport
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    tabthorpe
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Oct 04 11:10:00 GMT 2007
>Closed-Date:    Thu Oct 04 15:59:34 GMT 2007
>Last-Modified:  Thu Oct  4 16:00:16 GMT 2007
>Originator:     Ismail YENIGUL
>Release:        FreeBSD 6.2
>Organization:
EnderUNIX
>Environment:
FreeBSD ftpfreebsd.marmara.edu.tr 6.2-RELEASE-p5 FreeBSD 6.2-RELEASE-p5 #2: Mon Jul  9 14:01:39 EEST 2007     root@ftpfreebsd.marmara.edu.tr:/usr/obj/usr/src/sys/SMP  i386

>Description:
just url update in pkg-desc
>How-To-Repeat:

>Fix:
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	webreport
#	webreport/files
#	webreport/files/patch-webreport.c
#	webreport/files/patch-Makefile
#	webreport/Makefile
#	webreport/distinfo
#	webreport/pkg-descr
#	webreport/pkg-message
#
echo c - webreport
mkdir -p webreport > /dev/null 2>&1
echo c - webreport/files
mkdir -p webreport/files > /dev/null 2>&1
echo x - webreport/files/patch-webreport.c
sed 's/^X//' >webreport/files/patch-webreport.c << 'END-of-webreport/files/patch-webreport.c'
X--- webreport.c.org	Sat Feb  7 17:06:38 2004
X+++ webreport.c	Sat Feb  7 17:06:47 2004
X@@ -22,7 +22,7 @@
X #include <errno.h>
X #include <string.h>
X #include <time.h>
X-#include <getopt.h>
X+#include <unistd.h>
X 
X #include <sys/types.h>
X #include <sys/stat.h>
X@@ -808,7 +808,7 @@
X }
X 
X char *comma_string_long(in_long )
X- ulong in_long;
X+ unsigned long in_long;
X {
X  char tmpbuf[MAX_TINY_BUF];
X  static char tmpbuf1[MAX_TINY_BUF];
X@@ -1866,10 +1866,10 @@
X 
X report_open_files()
X {
X-	strncpy( Globals.TextReportName, "/usr/tmp/webreport.text.XXXXXX", 100);
X+	strncpy( Globals.TextReportName, "/var/tmp/webreport.text.XXXXXX", 100);
X 	mkstemp(Globals.TextReportName);
X 
X-	strncpy( Globals.HTMLReportName, "/usr/tmp/webreport.html.XXXXXX", 100);
X+	strncpy( Globals.HTMLReportName, "/var/tmp/webreport.html.XXXXXX", 100);
X 	mkstemp(Globals.HTMLReportName);
X 
X 	Globals.TextReport = fopen(Globals.TextReportName, "w");
X@@ -2084,7 +2084,7 @@
X 			fputs( Globals.TmpBuf, fs);
X 		}
X 	} else {
X-		fprintf( Globals.HTMLReport, 
X+		fprintf(Globals.HTMLReport, 
X 			"Subject: %s\n", Globals.cur_site->title);
X 		fprintf( Globals.HTMLReport, 
X 			"Content-Type: text/html; charset=us-ascii\n");
END-of-webreport/files/patch-webreport.c
echo x - webreport/files/patch-Makefile
sed 's/^X//' >webreport/files/patch-Makefile << 'END-of-webreport/files/patch-Makefile'
X--- Makefile.orig	Mon Oct  8 18:09:18 2001
X+++ Makefile	Tue Feb 17 15:22:44 2004
X@@ -24,8 +24,8 @@
X DEBUG=	-g
X #OPT=	-O2
X 
X-CFLAGS= -c $(OPT) $(DEBUG)
X-LDFLAGS=	$(DEBUG)
X+CFLAGS+= -c $(OPT)
X+#LDFLAGS+=	$(LDFLAGS)
X 
X .c.o:
X 	$(CC) $(CFLAGS) $<
X@@ -33,6 +33,8 @@
X BINS = webreport
X 
X OBJ	= webreport.o 
X+
X+all: webreport
X 
X webreport: $(OBJ) webreport.h
X 	$(CC) $(LDFLAGS) $(OBJ) -o webreport
END-of-webreport/files/patch-Makefile
echo x - webreport/Makefile
sed 's/^X//' >webreport/Makefile << 'END-of-webreport/Makefile'
X# New ports collection makefile for:   webreport
X# Date created:       06 Feb 2004
X# Whom:                ismail@enderunix.org
X#
X# $FreeBSD: ports/www/webreport/Makefile,v 1.2 2006/05/13 04:41:21 edwin Exp $
X#
X
XPORTNAME=	webreport
XPORTVERSION=	1.5
XCATEGORIES=	www
XMASTER_SITES=	http://www.inter7.com/webreport/
X
XMAINTAINER=	ismail@EnderUNIX.org
XCOMMENT=	WebReport is a web log statistics program  for web hosting sites
X
XPORTDOCS=	INSTALL
XPLIST_FILES=	bin/webreport etc/webreport.conf-dist
X
Xpost-patch:
X	@${REINPLACE_CMD} -e 's,ulong,unsigned long,;s,/etc/,${PREFIX}/etc/,' ${WRKSRC}/webreport.h
X
Xdo-install:
X	@${INSTALL_PROGRAM} ${WRKSRC}/webreport ${PREFIX}/bin
X	@${INSTALL_DATA} ${WRKSRC}/webreport.conf ${PREFIX}/etc/webreport.conf-dist
X
X.if !defined(NOPORTDOCS)
X	@${MKDIR} ${DOCSDIR}
X	@${INSTALL_MAN} ${WRKSRC}/${PORTDOCS} ${DOCSDIR}
X.endif
X
Xpost-install:
X	@${CAT} ${PKGMESSAGE} | ${SED} -e 's|%%PREFIX%%|${PREFIX}|g'
X
X.include <bsd.port.mk>
END-of-webreport/Makefile
echo x - webreport/distinfo
sed 's/^X//' >webreport/distinfo << 'END-of-webreport/distinfo'
XMD5 (webreport-1.5.tar.gz) = 53775790be7b62839acfe22d00748b61
XSHA256 (webreport-1.5.tar.gz) = 3d46720744e4c529fde322a68e97d57f0aa2fbeda46c637b540391a659d2ade4
XSIZE (webreport-1.5.tar.gz) = 25501
END-of-webreport/distinfo
echo x - webreport/pkg-descr
sed 's/^X//' >webreport/pkg-descr << 'END-of-webreport/pkg-descr'
XWebReport is a web log statistics reporting program especially designed for 
Xvirtual web hosting sites. It is also very useful for single hosting sites. 
XThe main difference between WebReport and other statistics programs is a 
Xconfiguration file which allows for easy manipulation of the features. 
X
XWWW: http://www.inter7.com/?page=webreport
END-of-webreport/pkg-descr
echo x - webreport/pkg-message
sed 's/^X//' >webreport/pkg-message << 'END-of-webreport/pkg-message'
X
XRead the %%PREFIX%%/share/doc/webreport/INSTALL to configure webreport
X
XEdit the  %%PREFIX%%/etc/webreport.conf
END-of-webreport/pkg-message
exit



>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Thu Oct 4 11:56:42 UTC 2007 
Responsible-Changed-Why:  
it's a port. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=116899 
Class-Changed-From-To: sw-bug->maintainer-update 
Class-Changed-By: edwin 
Class-Changed-When: Thu Oct 4 11:57:21 UTC 2007 
Class-Changed-Why:  
Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=116899 
Responsible-Changed-From-To: freebsd-ports-bugs->tabthorpe 
Responsible-Changed-By: tabthorpe 
Responsible-Changed-When: Thu Oct 4 12:41:11 UTC 2007 
Responsible-Changed-Why:  
I'll take it. 

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

From: Thomas Abthorpe <tabthorpe@freebsd.org>
To: bug-followup@freebsd.org,
 ismail@enderunix.org
Cc:  
Subject: Re: ports/116899: Update Port:www/webreport
Date: Thu, 4 Oct 2007 10:07:48 -0400

 For future reference, please submit updates as unified patches, for instance 
 your submission would be simplied to
 
 diff -ruN /home/ports/www/webreport.sub/pkg-descr /usr/ports/www/webreport/pkg-descr
 --- /home/ports/www/webreport.sub/pkg-descr     2007-10-04 
 09:42:45.000000000 -0400
 +++ /usr/ports/www/webreport/pkg-descr  2005-03-13 08:04:24.000000000 -0500
 @@ -3,4 +3,4 @@
  The main difference between WebReport and other statistics programs is a
  configuration file which allows for easy manipulation of the features.
 
 -WWW: http://www.inter7.com/?page=webreport
 +WWW: http://www.inter7.com/webreport2.html
 
 CF 
 http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/port-upgrading.html
 -- 
 Thomas Abthorpe		| FreeBSD Ports Committer
 tabthorpe@FreeBSD.org	| http://people.freebsd.org/~tabthorpe
State-Changed-From-To: open->closed 
State-Changed-By: tabthorpe 
State-Changed-When: Thu Oct 4 15:59:32 UTC 2007 
State-Changed-Why:  
Committed, with minor changes. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/116899: commit references a PR
Date: Thu,  4 Oct 2007 15:59:02 +0000 (UTC)

 tabthorpe    2007-10-04 15:58:46 UTC
 
   FreeBSD ports repository
 
   Modified files:
     www/webreport        pkg-descr 
   Log:
   - Update WWW in pkg-descr
   
   PR:             ports/116899
   Submitted by:   Ismail YENIGUL <ismail enderunix.org> (maintainer)
   Approved by:    miwi (co-mentor, implicit)
   
   Revision  Changes    Path
   1.3       +1 -1      ports/www/webreport/pkg-descr
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
