From owner-freebsd-perl@FreeBSD.ORG Fri Nov 1 11:04:07 2013 Return-Path: Delivered-To: perl@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9DDD3919 for ; Fri, 1 Nov 2013 11:04:07 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 78042226E for ; Fri, 1 Nov 2013 11:04:07 +0000 (UTC) Received: from [192.168.0.22] (unknown [130.255.26.50]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 408ED435C7 for ; Fri, 1 Nov 2013 06:03:52 -0500 (CDT) Message-ID: <52738A88.6030005@marino.st> Date: Fri, 01 Nov 2013 12:03:36 +0100 From: John Marino User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130509 Thunderbird/17.0.6 MIME-Version: 1.0 To: perl@freebsd.org Subject: A fix for broken p5-PDFLib X-Enigmail-Version: 1.6 Content-Type: multipart/mixed; boundary="------------080905010007090602060803" X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: marino@freebsd.org List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Nov 2013 11:04:07 -0000 This is a multi-part message in MIME format. --------------080905010007090602060803 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hi all, There doesn't seem to be a PR or portsmon errors against print/p5-PDFLib, but it's been broken for weeks. I believe the version test is failing falsely, so the attached patch disables the test (I think). I don't know if this is a proper fix, but the downstream ports in dports are building now. If somebody approves, I can push this easily. Awaiting direction, John --------------080905010007090602060803 Content-Type: text/plain; charset=windows-1252; name="p5-PDFLib.diff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="p5-PDFLib.diff.txt" Index: print/p5-PDFLib/files/patch-Makefile.PL =================================================================== --- print/p5-PDFLib/files/patch-Makefile.PL (revision 0) +++ print/p5-PDFLib/files/patch-Makefile.PL (working copy) @@ -0,0 +1,17 @@ +--- Makefile.PL.orig 2001-06-04 13:38:11.000000000 +0000 ++++ Makefile.PL +@@ -6,7 +6,7 @@ eval { + require pdflib_pl; + die unless $pdflib_pl::VERSION >= 4.0; + }; +-if ($@) { ++if (0) { + die < 'PDFLib', + 'VERSION_FROM' => 'PDFLib.pm', # finds $VERSION +- 'PREREQ_PM' => { pdflib_pl => 4.0 }, + ); Property changes on: print/p5-PDFLib/files/patch-Makefile.PL ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property --------------080905010007090602060803--