From dashevil@gmail.com  Sun Oct 30 14:21:21 2005
Return-Path: <dashevil@gmail.com>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id DD56816A423
	for <FreeBSD-gnats-submit@freebsd.org>; Sun, 30 Oct 2005 14:21:20 +0000 (GMT)
	(envelope-from dashevil@gmail.com)
Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.198])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 6B7E543D45
	for <FreeBSD-gnats-submit@freebsd.org>; Sun, 30 Oct 2005 14:21:20 +0000 (GMT)
	(envelope-from dashevil@gmail.com)
Received: by wproxy.gmail.com with SMTP id i1so398046wra
        for <FreeBSD-gnats-submit@freebsd.org>; Sun, 30 Oct 2005 06:21:19 -0800 (PST)
Received: by 10.65.35.8 with SMTP id n8mr778819qbj;
        Sun, 30 Oct 2005 06:21:19 -0800 (PST)
Received: by 10.65.11.5 with HTTP; Sun, 30 Oct 2005 06:21:19 -0800 (PST)
Message-Id: <ed77be970510300621u53d2369do4cebfb87b4d742f0@mail.gmail.com>
Date: Sun, 30 Oct 2005 10:21:19 -0400
From: Chris Laverdure <dashevil@gmail.com>
To: FreeBSD-gnats-submit@freebsd.org
Subject:

>Number:         88236
>Category:       ports
>Synopsis:       www/dfileserver upgrade to 1.1.3
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Sun Oct 30 14:30:12 GMT 2005
>Closed-Date:    Tue Nov 01 15:20:49 GMT 2005
>Last-Modified:  Tue Nov 01 15:20:49 GMT 2005
>Originator:     Chris Laverdure
>Release:        FreeBSD 6.0-RC1 i386
>Organization:
>Environment:
 System: FreeBSD elemental.foti1.on.cogeco.ca 6.0-RC1 FreeBSD 6.0-RC1 #0: Thu Oct 20 22:24:21 EDT 2005
 root@elemental.foti1.on.cogeco.ca:/usr/src/sys/i386/compile/ELEMENTAL i386
>Description:

>How-To-Repeat:
 
>Fix:
 
 diff -ru dfileserver/Makefile dfileserver-new/Makefile
 --- dfileserver/Makefile        Thu Sep 15 15:50:00 2005
 +++ dfileserver-new/Makefile    Sun Oct 23 17:13:12 2005
 @@ -6,7 +6,7 @@
  #
 
  PORTNAME=3D      DFileServer
 -PORTVERSION=3D   1.1.2
 +PORTVERSION=3D   1.1.3
  CATEGORIES=3D    www
  MASTER_SITES=3D  http://harpy.soarwitheagles.net/~dashy/
 
 diff -ru dfileserver/distinfo dfileserver-new/distinfo
 --- dfileserver/distinfo        Thu Sep 15 15:50:00 2005
 +++ dfileserver-new/distinfo    Sun Oct 23 17:05:29 2005
 @@ -1,2 +1,2 @@
 -MD5 (DFileServer-1.1.2.tar.gz) =3D 60d20b8012a801b564abbf8fde5e052d
 -SIZE (DFileServer-1.1.2.tar.gz) =3D 20448
 +MD5 (DFileServer-1.1.3.tar.gz) =3D 439970464d42a2639e31076ffa4d3c14
 +SIZE (DFileServer-1.1.3.tar.gz) =3D 22909
 diff -ru dfileserver/files/patch-build.sh dfileserver-new/files/patch-build=
 .sh
 --- dfileserver/files/patch-build.sh    Thu Sep 15 15:50:00 2005
 +++ dfileserver-new/files/patch-build.sh        Sun Oct 23 17:09:58 2005
 @@ -1,14 +1,14 @@
 ---- build.sh.orig      Sun Jun 19 07:07:05 2005
 -+++ build.sh   Thu Sep 15 21:44:32 2005
 +--- build.sh.old       Sun Oct 23 17:07:09 2005
 ++++ build.sh   Sun Oct 23 17:09:22 2005
  @@ -1,6 +1,6 @@
   #!/bin/sh
 
 --GCCFLAGS=3D"-Wall -Werror -O3"
 -+GCCFLAGS=3D${CFLAGS}
 +-GCCFLAGS=3D"-Wall -Werror -O"
 ++GCCFLAGS=3D${CXXFLAGS}
 
   mkdir ./obj/
   mkdir ./obj/contrib/
 -@@ -8,18 +8,18 @@
 +@@ -8,24 +8,23 @@
   echo "Native Build:" $GCCFLAGS
 
   echo "Compiling src/DashFileServer.cxx"
 @@ -26,10 +26,18 @@
   echo "Compiling src/MimeTypes.cxx"
  -g++ $GCCFLAGS -c src/MimeTypes.cxx -o obj/MimeTypes.o
  +${CXX} $GCCFLAGS -c src/MimeTypes.cxx -o obj/MimeTypes.o
 + echo "Compiling src/HTTPHeader.cxx"
 +-g++ $GCCFLAGS -c src/HTTPHeader.cxx -o obj/HTTPHeader.o
 ++${CXX} $GCCFLAGS -c src/HTTPHeader.cxx -o obj/HTTPHeader.o
 +
 + echo "Compiling src/contrib/Base64.cpp"
 +-g++ $GCCFLAGS -c src/contrib/Base64.cpp -o obj/contrib/Base64.o
 +-
 ++${CXX} $GCCFLAGS -c src/contrib/Base64.cpp -o obj/contrib/Base64.o
 
   echo "Linking..."
 --g++ -o DFileServer.x86 obj/DashFileServer.o obj/ClientConnection.o
 obj/CPathResolver.o obj/DirectoryIndexing.o obj/MimeTypes.o
 -+${CXX} -o DFileServer.x86 obj/DashFileServer.o
 obj/ClientConnection.o obj/CPathResolver.o obj/DirectoryIndexing.o
 obj/MimeTypes.o
 +-g++ -o DFileServer.x86 obj/DashFileServer.o obj/ClientConnection.o
 obj/CPathResolver.o obj/DirectoryIndexing.o obj/MimeTypes.o
 obj/HTTPHeader.o obj/contrib/Base64.o
 ++${CXX} -o DFileServer.x86 obj/DashFileServer.o
 obj/ClientConnection.o obj/CPathResolver.o obj/DirectoryIndexing.o
 obj/MimeTypes.o obj/HTTPHeader.o obj/contrib/Base64.o
 
   echo "Striping..."
   strip --strip-all DFileServer.x86
>Release-Note:
>Audit-Trail:
Class-Changed-From-To: sw-bug->maintainer-update 
Class-Changed-By: linimon 
Class-Changed-When: Sun Oct 30 20:18:28 GMT 2005 
Class-Changed-Why:  
Attempt to rescue this badly formatted PR from the 'pending' state. 
However, I think the patch is probably too corrupted to be useful. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=88236 
Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs 
Responsible-Changed-By: linimon 
Responsible-Changed-When: Mon Oct 31 16:03:04 GMT 2005 
Responsible-Changed-Why:  
Forgot to fix the assignment when I fixed the rest of it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=88236 
State-Changed-From-To: open->closed 
State-Changed-By: arved 
State-Changed-When: Tue Nov 1 15:20:43 GMT 2005 
State-Changed-Why:  
committed, thanks 

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