From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 16 16:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 0CDACFF4 for ; Sat, 16 Feb 2013 16:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 7FABC131 for ; Sat, 16 Feb 2013 16:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r1GGA0NF009652 for ; Sat, 16 Feb 2013 16:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r1GGA05n009651; Sat, 16 Feb 2013 16:10:00 GMT (envelope-from gnats) Resent-Date: Sat, 16 Feb 2013 16:10:00 GMT Resent-Message-Id: <201302161610.r1GGA05n009651@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Christoph Mallon Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 416FDDB2 for ; Sat, 16 Feb 2013 16:02:49 +0000 (UTC) (envelope-from christoph.mallon@gmx.de) Received: from mout.gmx.net (mout.gmx.net [212.227.17.20]) by mx1.freebsd.org (Postfix) with ESMTP id CB788E0 for ; Sat, 16 Feb 2013 16:02:48 +0000 (UTC) Received: from mailout-de.gmx.net ([10.1.76.33]) by mrigmx.server.lan (mrigmx002) with ESMTP (Nemesis) id 0LxrgI-1V0kaM0JF6-015Iml for ; Sat, 16 Feb 2013 17:02:42 +0100 Received: (qmail invoked by alias); 16 Feb 2013 16:02:41 -0000 Received: from p5B1318B4.dip.t-dialin.net (EHLO rotluchs.lokal) [91.19.24.180] by mail.gmx.net (mp033) with SMTP; 16 Feb 2013 17:02:41 +0100 Received: from tron by rotluchs.lokal with local (Exim 4.80.1 (FreeBSD)) (envelope-from ) id 1U6kDo-0005t1-70 for FreeBSD-gnats-submit@freebsd.org; Sat, 16 Feb 2013 17:02:40 +0100 Message-Id: Date: Sat, 16 Feb 2013 17:02:40 +0100 From: Christoph Mallon To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/176194: [PATCH] graphics/tiffmerge: Simplify Makefile, remove dependency X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Christoph Mallon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Feb 2013 16:10:01 -0000 >Number: 176194 >Category: ports >Synopsis: [PATCH] graphics/tiffmerge: Simplify Makefile, remove dependency >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Feb 16 16:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Christoph Mallon >Release: >Organization: >Environment: >Description: - Use USE_DOS2UNIX instead of converters/tuc. - Use NO_WRKSUBDIR. >How-To-Repeat: >Fix: Please apply these patches. --- 0001-graphics-tifmerge-Use-USE_DOS2UNIX-instead-of-conver.patch begins here --- >From cddf0a6056129756f15993727ed0a7fd9e4ed52a Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Sat, 16 Feb 2013 16:02:47 +0100 Subject: [PATCH 1/2] graphics/tifmerge: Use USE_DOS2UNIX instead of converters/tuc. --- graphics/tifmerge/Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/graphics/tifmerge/Makefile b/graphics/tifmerge/Makefile index 1c24347..2546188 100644 --- a/graphics/tifmerge/Makefile +++ b/graphics/tifmerge/Makefile @@ -14,8 +14,7 @@ DISTNAME= tiff MAINTAINER= ports@FreeBSD.org COMMENT= Library to merge TIFF files into multi-page TIFF files -EXTRACT_DEPENDS= tuc:${PORTSDIR}/converters/tuc - +USE_DOS2UNIX= *.[ch] USE_LDCONFIG= yes USE_ZIP= yes DIST_SUBDIR= tifmerge @@ -23,8 +22,8 @@ MAN3= tifmerge.3 post-extract: @${MKDIR} ${WRKSRC} - @tuc ${WRKDIR}/TIFMERGE.H ${WRKSRC}/tifmerge.h - @tuc ${WRKDIR}/TIFMERGE.C ${WRKSRC}/tifmerge.c + @${MV} ${WRKDIR}/TIFMERGE.H ${WRKSRC}/tifmerge.h + @${MV} ${WRKDIR}/TIFMERGE.C ${WRKSRC}/tifmerge.c @${CP} ${FILESDIR}/Makefile ${WRKSRC} @${SED} -e 's|@PREFIX@|${PREFIX}|g' ${FILESDIR}/tifmerge.3 > \ ${WRKSRC}/tifmerge.3 -- 1.8.1.3 --- 0001-graphics-tifmerge-Use-USE_DOS2UNIX-instead-of-conver.patch ends here --- --- dummy1 begins here --- dummy file, because GNATS damages every other patch --- dummy1 ends here --- --- 0002-graphics-tifmerge-Use-NO_WRKSUBDIR.patch begins here --- >From 24c6ee76acc7f81265a5d4db214bfe83221fe802 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Sat, 16 Feb 2013 16:06:39 +0100 Subject: [PATCH 2/2] graphics/tifmerge: Use NO_WRKSUBDIR. --- graphics/tifmerge/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/graphics/tifmerge/Makefile b/graphics/tifmerge/Makefile index 2546188..3c347cd 100644 --- a/graphics/tifmerge/Makefile +++ b/graphics/tifmerge/Makefile @@ -14,6 +14,7 @@ DISTNAME= tiff MAINTAINER= ports@FreeBSD.org COMMENT= Library to merge TIFF files into multi-page TIFF files +NO_WRKSUBDIR= yes USE_DOS2UNIX= *.[ch] USE_LDCONFIG= yes USE_ZIP= yes @@ -21,9 +22,8 @@ DIST_SUBDIR= tifmerge MAN3= tifmerge.3 post-extract: - @${MKDIR} ${WRKSRC} - @${MV} ${WRKDIR}/TIFMERGE.H ${WRKSRC}/tifmerge.h - @${MV} ${WRKDIR}/TIFMERGE.C ${WRKSRC}/tifmerge.c + @${MV} ${WRKSRC}/TIFMERGE.H ${WRKSRC}/tifmerge.h + @${MV} ${WRKSRC}/TIFMERGE.C ${WRKSRC}/tifmerge.c @${CP} ${FILESDIR}/Makefile ${WRKSRC} @${SED} -e 's|@PREFIX@|${PREFIX}|g' ${FILESDIR}/tifmerge.3 > \ ${WRKSRC}/tifmerge.3 -- 1.8.1.3 --- 0002-graphics-tifmerge-Use-NO_WRKSUBDIR.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: