From owner-svn-ports-all@FreeBSD.ORG Sat Oct 26 08:39:32 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A8EDE6DF; Sat, 26 Oct 2013 08:39:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7B8A92FB6; Sat, 26 Oct 2013 08:39:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9Q8dWYR079046; Sat, 26 Oct 2013 08:39:32 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9Q8dWsK079044; Sat, 26 Oct 2013 08:39:32 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201310260839.r9Q8dWsK079044@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sat, 26 Oct 2013 08:39:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r331660 - in head/devel/p5-ExtUtils-MakeMaker: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Oct 2013 08:39:32 -0000 Author: sunpoet Date: Sat Oct 26 08:39:31 2013 New Revision: 331660 URL: http://svnweb.freebsd.org/changeset/ports/331660 Log: - Allow ExtUtils::MakeMaker to install empty .bs file (traditional behavior) - Bump PORTREVISION for package change PR: ports/183305 Reported by: Patrick Powell Patched by: sunpoet (myself) Reviewed by: az Added: head/devel/p5-ExtUtils-MakeMaker/files/ head/devel/p5-ExtUtils-MakeMaker/files/patch-lib-ExtUtils-MM_Unix.pm (contents, props changed) Modified: head/devel/p5-ExtUtils-MakeMaker/Makefile Modified: head/devel/p5-ExtUtils-MakeMaker/Makefile ============================================================================== --- head/devel/p5-ExtUtils-MakeMaker/Makefile Sat Oct 26 08:33:13 2013 (r331659) +++ head/devel/p5-ExtUtils-MakeMaker/Makefile Sat Oct 26 08:39:31 2013 (r331660) @@ -3,6 +3,7 @@ PORTNAME= ExtUtils-MakeMaker PORTVERSION= 6.80 +PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -41,5 +42,6 @@ post-patch: @${RM} -fr ${WRKSRC}/bundled/ @[ -e ${LOCALBASE}/lib/perl5/${PERL_VER}/mach/CORE/cc_runtime.h ] || \ ${SED} -i '' -e '/cc_runtime.h/d' ${WRKSRC}/lib/ExtUtils/MM_Unix.pm + @${RM} ${WRKSRC}/lib/ExtUtils/MM_Unix.pm.orig .include Added: head/devel/p5-ExtUtils-MakeMaker/files/patch-lib-ExtUtils-MM_Unix.pm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-ExtUtils-MakeMaker/files/patch-lib-ExtUtils-MM_Unix.pm Sat Oct 26 08:39:31 2013 (r331660) @@ -0,0 +1,16 @@ +ExtUtils::MakeMaker starting from 6.80 by default does not copy .bs files if they are empty. +More information can be obtained from ports/183305 + +--- lib/ExtUtils/MM_Unix.pm.orig 2013-10-15 23:04:44.000000000 +0800 ++++ lib/ExtUtils/MM_Unix.pm 2013-10-26 04:30:48.748262789 +0800 +@@ -958,8 +958,8 @@ + + push @m, <<'MAKE'; + $(CHMOD) $(PERM_RWX) $@ +- $(NOECHO) $(RM_RF) $(BOOTSTRAP) +- - $(CP_NONEMPTY) $(BOOTSTRAP) $(INST_BOOT) $(PERM_RW) ++ $(NOECHO) $(RM_RF) $(INST_BOOT) ++ - $(TOUCH) $(BOOTSTRAP) && $(CP) $(BOOTSTRAP) $(INST_BOOT) && $(CHMOD) $(PERM_RW) $(INST_BOOT) + MAKE + + return join('',@m);