From nobody@FreeBSD.org  Sun Apr 27 07:10:13 2008
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 BF91A1065672
	for <freebsd-gnats-submit@FreeBSD.org>; Sun, 27 Apr 2008 07:10:13 +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 ADE9D8FC17
	for <freebsd-gnats-submit@FreeBSD.org>; Sun, 27 Apr 2008 07:10:13 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.14.2/8.14.2) with ESMTP id m3R79fP7005853
	for <freebsd-gnats-submit@FreeBSD.org>; Sun, 27 Apr 2008 07:09:41 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.14.2/8.14.1/Submit) id m3R79fKc005852;
	Sun, 27 Apr 2008 07:09:41 GMT
	(envelope-from nobody)
Message-Id: <200804270709.m3R79fKc005852@www.freebsd.org>
Date: Sun, 27 Apr 2008 07:09:41 GMT
From: Ganael Laplanche <ganael.laplanche@martymac.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: Port update: graphics/tif22pnm - Distfile changed upstream
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         123134
>Category:       ports
>Synopsis:       Port update: graphics/tif22pnm - Distfile changed upstream
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Sun Apr 27 07:20:01 UTC 2008
>Closed-Date:    Sun Apr 27 08:31:54 UTC 2008
>Last-Modified:  Sun Apr 27 08:40:01 UTC 2008
>Originator:     Ganael Laplanche
>Release:        7.0-STABLE
>Organization:
http://contribs.martymac.com
>Environment:
FreeBSD home.martymac.com 7.0-STABLE FreeBSD 7.0-STABLE #14: Sun Apr 20 14:11:03 CEST 2008     root@home.martymac.com:/usr/obj/usr/src/sys/MYKERNEL  amd64
>Description:
This patch changes distinfo for graphics/tif22pnm as the distfile has changed upstream. A diff between the old and the new version shows minimal changes :

8<------------
diff -aurN tif22pnm.orig/work/tif22pnm-0.12/Makefile tif22pnm/work/tif22pnm-0.12/Makefile
--- tif22pnm.orig/work/tif22pnm-0.12/Makefile   2003-02-07 18:29:11.000000000 +0100
+++ tif22pnm/work/tif22pnm-0.12/Makefile        2006-05-22 12:01:30.000000000 +0200
@@ -1,15 +1,23 @@
-.PHONY: all install distclean dist
+.PHONY: all install distclean dist compile clean

-all:
-       [ -f config.h ] || ./configure
+compile: compiled.stamp
+
+all compiled.stamp: config.h
        ./do.sh compile
+       touch compiled.stamp
+
+config.h:
+       ./configure

 distclean:
        ./do.sh confclean

-install:
-       cp tif22pnm $(prefix)/bin
-       cp png22pnm $(prefix)/bin
+install: compiled.stamp
+       test -f tif22pnm || exit 0; . cc_help.sh && cp tif22pnm "$$prefix"/bin
+       test -f png22pnm || exit 0; . cc_help.sh && cp png22pnm "$$prefix"/bin

 dist: distclean
        ./do.sh dist
+
+clean:
+       ./do.sh clean
diff -aurN tif22pnm.orig/work/tif22pnm-0.12/cc_help.sh.in tif22pnm/work/tif22pnm-0.12/cc_help.sh.in
--- tif22pnm.orig/work/tif22pnm-0.12/cc_help.sh.in      2003-02-05 21:21:27.000000000 +0100
+++ tif22pnm/work/tif22pnm-0.12/cc_help.sh.in   2006-05-22 11:53:37.000000000 +0200
@@ -1,6 +1,7 @@
 if test x"$CC" = x; then
   CC='@CC@'
 fi
+prefix='@prefix@'
 LD='@CC@'
 LIBS_PNG='@LIBS_PNG@'
 LIBS_TIFF='@LIBS_TIFF@'
diff -aurN tif22pnm.orig/work/tif22pnm-0.12/debian/changelog tif22pnm/work/tif22pnm-0.12/debian/changelog
--- tif22pnm.orig/work/tif22pnm-0.12/debian/changelog   2003-10-20 15:55:10.000000000 +0200
+++ tif22pnm/work/tif22pnm-0.12/debian/changelog        2006-05-22 12:02:08.000000000 +0200
@@ -1,3 +1,9 @@
+tif22pnm (0.11-3) unstable; urgency=low
+
+  * Fiexed $prefix in make install
+
+ -- Szab Pter <pts@math.bme.hu>  Mon, 22 May 2006 12:01:57 +0200
+
 tif22pnm (0.11-2) unstable; urgency=low

   * packaging changes
8<------------

There will be no impact for the port as the binaries are built 'manually' from the port's Makefile, bypassing the inner build mechanism (Makefile + scripts). I do not bump PORTREVISION since there is no functional change.

I'll also take maintainership.

>How-To-Repeat:

>Fix:


Patch attached with submission follows:

diff -aurN tif22pnm.orig/Makefile tif22pnm/Makefile
--- tif22pnm.orig/Makefile	2008-04-26 15:54:00.558698210 +0200
+++ tif22pnm/Makefile	2008-04-27 09:00:17.061083287 +0200
@@ -11,7 +11,7 @@
 CATEGORIES=	graphics
 MASTER_SITES=	http://www.inf.bme.hu/~pts/
 
-MAINTAINER=	ports@FreeBSD.org
+MAINTAINER=	ganael.laplanche@martymac.com
 COMMENT=	Converts TIFF- sampled images to PNM image
 
 LIB_DEPENDS=	png.5:${PORTSDIR}/graphics/png \
diff -aurN tif22pnm.orig/distinfo tif22pnm/distinfo
--- tif22pnm.orig/distinfo	2008-04-26 15:54:00.558698210 +0200
+++ tif22pnm/distinfo	2008-04-26 15:54:12.863898172 +0200
@@ -1,3 +1,3 @@
-MD5 (tif22pnm-0.12.tar.gz) = faeb859e2e01653e6b9fd4db992c02a9
-SHA256 (tif22pnm-0.12.tar.gz) = 17e71455d2e4cd27042cae526b05b98aa2d43017dcad55e48cf7ad5785c8e25a
-SIZE (tif22pnm-0.12.tar.gz) = 107567
+MD5 (tif22pnm-0.12.tar.gz) = 1d000aa7104669e7247448d1351ff132
+SHA256 (tif22pnm-0.12.tar.gz) = 4253f27d5578aeae8f88e75f41a205da8d2dc466d1efff39a3667a9ff55fb73a
+SIZE (tif22pnm-0.12.tar.gz) = 107684


>Release-Note:
>Audit-Trail:

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/123134: commit references a PR
Date: Sun, 27 Apr 2008 08:28:10 +0000 (UTC)

 miwi        2008-04-27 08:28:05 UTC
 
   FreeBSD ports repository
 
   Modified files:
     graphics/sam2p       Makefile distinfo 
   Log:
   - Update to 0.45
   
   PR:             123134
   Submitted by:   Ganael Laplanche <ganael.laplanche@martymac.com>
   
   Revision  Changes    Path
   1.18      +1 -4      ports/graphics/sam2p/Makefile
   1.8       +3 -3      ports/graphics/sam2p/distinfo
 _______________________________________________
 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: open->closed 
State-Changed-By: miwi 
State-Changed-When: Sun Apr 27 08:31:53 UTC 2008 
State-Changed-Why:  
Committed. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/123134: commit references a PR
Date: Sun, 27 Apr 2008 08:31:45 +0000 (UTC)

 miwi        2008-04-27 08:31:40 UTC
 
   FreeBSD ports repository
 
   Modified files:
     graphics/tif22pnm    Makefile distinfo 
   Log:
   - File was rerolled
   - Pass maintainership to submitter
   
   Notes from Changelog:
           * Fixed $prefix in make install
   
   PR:             123134
   Submitted by:   Ganael Laplanche <ganael.laplanche@martymac.com>
   
   Revision  Changes    Path
   1.11      +2 -1      ports/graphics/tif22pnm/Makefile
   1.7       +3 -3      ports/graphics/tif22pnm/distinfo
 _______________________________________________
 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:
