From scjamorim@bsd.com.br  Mon Sep 21 01:48:19 2009
Return-Path: <scjamorim@bsd.com.br>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 901B81065670
	for <FreeBSD-gnats-submit@freebsd.org>; Mon, 21 Sep 2009 01:48:19 +0000 (UTC)
	(envelope-from scjamorim@bsd.com.br)
Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.245])
	by mx1.freebsd.org (Postfix) with ESMTP id 3DC488FC12
	for <FreeBSD-gnats-submit@freebsd.org>; Mon, 21 Sep 2009 01:48:19 +0000 (UTC)
Received: by an-out-0708.google.com with SMTP id d14so1124243and.13
        for <multiple recipients>; Sun, 20 Sep 2009 18:48:18 -0700 (PDT)
Received: by 10.101.102.12 with SMTP id e12mr3710818anm.144.1253497698474;
        Sun, 20 Sep 2009 18:48:18 -0700 (PDT)
Received: from fbsd9.scjamorim.org (201.22.150.35.dynamic.adsl.gvt.net.br [201.22.150.35])
        by mx.google.com with ESMTPS id d21sm1916173and.11.2009.09.20.18.48.16
        (version=TLSv1/SSLv3 cipher=RC4-MD5);
        Sun, 20 Sep 2009 18:48:17 -0700 (PDT)
Received: by fbsd9.scjamorim.org (Postfix, from userid 0)
	id 3248F4DA219; Sun, 20 Sep 2009 22:48:16 -0300 (BRT)
Message-Id: <20090921014816.3248F4DA219@fbsd9.scjamorim.org>
Date: Sun, 20 Sep 2009 22:48:16 -0300 (BRT)
From: Sylvio Cesar <scjamorim@bsd.com.br>
To: FreeBSD-gnats-submit@freebsd.org
Cc: dinoex@FreeBSD.org
Subject: [PATCH] x11-toolkits/Xaw3d: Fixed problem with fetch, changed form with installs docs in Makefile.
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         139000
>Category:       ports
>Synopsis:       [PATCH] x11-toolkits/Xaw3d: Fixed problem with fetch, changed form with installs docs in Makefile.
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    dinoex
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Sep 21 01:50:01 UTC 2009
>Closed-Date:    Sat Sep 26 06:33:04 CEST 2009
>Last-Modified:  Sat Sep 26 06:33:04 CEST 2009
>Originator:     Sylvio Cesar
>Release:        FreeBSD 9.0-CURRENT i386
>Organization:
>Environment:
System: FreeBSD fbsd9.scjamorim.org 9.0-CURRENT FreeBSD 9.0-CURRENT #0: Mon Sep 14 01:24:51 BRT 2009
>Description:
- Fixed problem with the fetch
- Added more MASTER_SITES
- Changed pkg-plist
- Added PORTDOCS to insatall docs

You can see the log in my tinderbox:

AMD64
http://www.scjamorim.org/Home/Xaw3d-1.5E_3-8amd64.log

i386
http://www.scjamorim.org/Home/Xaw3d-1.5E_3-8i386.log

Port maintainer (dinoex@FreeBSD.org) is cc'd.

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

--- Xaw3d-1.5E_3.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/x11-toolkits/Xaw3d/Makefile,v
retrieving revision 1.52
diff -u -u -r1.52 Makefile
--- Makefile	21 Jun 2009 13:58:58 -0000	1.52
+++ Makefile	21 Sep 2009 01:44:49 -0000
@@ -9,7 +9,10 @@
 PORTVERSION=	1.5E
 PORTREVISION=	3
 CATEGORIES=	x11-toolkits
-MASTER_SITES=	ftp://ftp.visi.com/users/hawkeyd/X/
+MASTER_SITES=	http://mira.sunsite.utk.edu/fink/ \
+		http://ftp.oiram.net/pub/UNIX/FreeBSD/ports/distfiles/ \
+		http://dist.mononga-linux.org/pub/mononga/development/SOURCES/ \
+		ftp://ftp.visi.com/users/hawkeyd/X/
 
 MAINTAINER=	dinoex@FreeBSD.org
 COMMENT=	A 3-D Athena Widget set that looks like Motif
@@ -22,6 +25,8 @@
 SUB_FILES=	pkg-message
 SUB_LIST=	XAWVER="${XAWVER}"
 
+PORTDOCS=	README.XAW3D
+
 .include <bsd.port.pre.mk>
 
 post-extract:
@@ -29,15 +34,19 @@
 	cd ${WRKSRC}/X11/Xaw3d; ${LN} -sf ../../*.h .
 
 # Workaround a bug in egcs on FreeBSD/Alpha.
-.if ${MACHINE_ARCH} == "alpha"
+.if ${ARCH} == "alpha"
 post-configure:
 	@(cd ${WRKSRC}; ${MV} Makefile Makefile.orig; ${SED} -e \
 	  's/CDEBUGFLAGS = -O/CDEBUGFLAGS =/g' Makefile.orig > Makefile)
 .endif
 
 post-install:
+.if !defined(NOPORTDOCS)
 	${MKDIR} ${DOCSDIR}
-	${INSTALL_DATA} ${WRKSRC}/README.XAW3D ${DOCSDIR}
+.for docs in ${PORTDOCS}
+	${INSTALL_DATA} ${WRKSRC}/${docs} ${DOCSDIR}
+.endfor
+.endif
 	@${CAT} ${PKGMESSAGE}
 
 .include <bsd.port.post.mk>
Index: pkg-plist
===================================================================
RCS file: /home/ncvs/ports/x11-toolkits/Xaw3d/pkg-plist,v
retrieving revision 1.15
diff -u -u -r1.15 pkg-plist
--- pkg-plist	29 Aug 2005 05:10:53 -0000	1.15
+++ pkg-plist	21 Sep 2009 01:44:49 -0000
@@ -80,6 +80,4 @@
 include/X11/Xaw3d/Xaw3dP.h
 include/X11/Xaw3d/XawImP.h
 include/X11/Xaw3d/XawInit.h
-share/doc/Xaw3d/README.XAW3D
 @dirrm include/X11/Xaw3d
-@dirrm share/doc/Xaw3d
--- Xaw3d-1.5E_3.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->dinoex 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Mon Sep 21 01:50:11 UTC 2009 
Responsible-Changed-Why:  
Over to maintainer (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=139000 
State-Changed-From-To: open->feedback 
State-Changed-By: dinoex 
State-Changed-When: Fri Sep 25 08:25:33 CEST 2009 
State-Changed-Why:  

can you exlain why you changed: 
-.if ${MACHINE_ARCH} == "alpha" 
+.if ${ARCH} == "alpha" 


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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/139000: commit references a PR
Date: Fri, 25 Sep 2009 07:13:05 +0000 (UTC)

 dinoex      2009-09-25 07:12:52 UTC
 
   FreeBSD ports repository
 
   Modified files:
     x11-toolkits/Xaw3d   Makefile pkg-plist 
   Log:
   - Added more MASTER_SITES
   - honor NOPORTDOCS
   PR:             139000
   Suggested by:   Sylvio Cesar
   Feature safe:   yes
   
   Revision  Changes    Path
   1.53      +6 -2      ports/x11-toolkits/Xaw3d/Makefile
   1.16      +3 -3      ports/x11-toolkits/Xaw3d/pkg-plist
 _______________________________________________
 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"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/139000: commit references a PR
Date: Sat, 26 Sep 2009 04:22:38 +0000 (UTC)

 dinoex      2009-09-26 04:22:23 UTC
 
   FreeBSD ports repository
 
   Modified files:
     x11-toolkits/Xaw3d   Makefile 
   Log:
   - use ARCH instead of MACHINE_ARCH
   PR:             139000
   Submitted by:   Sylvio Cesar
   Feature safe:   yes
   
   Revision  Changes    Path
   1.54      +1 -1      ports/x11-toolkits/Xaw3d/Makefile
 _______________________________________________
 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"
 
State-Changed-From-To: feedback->closed 
State-Changed-By: dinoex 
State-Changed-When: Sat Sep 26 06:32:47 CEST 2009 
State-Changed-Why:  
committed, thanks. 

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