From owner-svn-ports-all@FreeBSD.ORG Mon Dec 9 08:44:00 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 ESMTPS id 6080FC05; Mon, 9 Dec 2013 08:44:00 +0000 (UTC) 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 4D39811E7; Mon, 9 Dec 2013 08:44:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB98i0Jl005982; Mon, 9 Dec 2013 08:44:00 GMT (envelope-from ume@svn.freebsd.org) Received: (from ume@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rB98hxBB005930; Mon, 9 Dec 2013 08:43:59 GMT (envelope-from ume@svn.freebsd.org) Message-Id: <201312090843.rB98hxBB005930@svn.freebsd.org> From: Hajimu UMEMOTO Date: Mon, 9 Dec 2013 08:43:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335955 - in head/net/p5-Socket6: . 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.17 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: Mon, 09 Dec 2013 08:44:00 -0000 Author: ume Date: Mon Dec 9 08:43:59 2013 New Revision: 335955 URL: http://svnweb.freebsd.org/changeset/ports/335955 Log: Don't install perllocal.pod. Added: head/net/p5-Socket6/files/ head/net/p5-Socket6/files/patch-Makefile.PL (contents, props changed) Modified: head/net/p5-Socket6/Makefile Modified: head/net/p5-Socket6/Makefile ============================================================================== --- head/net/p5-Socket6/Makefile Mon Dec 9 08:18:37 2013 (r335954) +++ head/net/p5-Socket6/Makefile Mon Dec 9 08:43:59 2013 (r335955) @@ -3,6 +3,7 @@ PORTNAME= Socket6 PORTVERSION= 0.25 +PORTREVISION= 1 CATEGORIES= net perl5 ipv6 MASTER_SITES= CPAN MASTER_SITE_SUBDIR=CPAN:UMEMOTO Added: head/net/p5-Socket6/files/patch-Makefile.PL ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-Socket6/files/patch-Makefile.PL Mon Dec 9 08:43:59 2013 (r335955) @@ -0,0 +1,15 @@ +Index: Makefile.PL +diff -u Makefile.PL.orig Makefile.PL +--- Makefile.PL.orig 2013-12-09 17:30:29.282987698 +0900 ++++ Makefile.PL 2013-12-09 17:30:35.243986223 +0900 +@@ -101,3 +101,10 @@ + close(OUT) || die "Failed to close file 'config.h' [$!]"; + close(IN) || die "Failed to close file 'config.h.in' [$!]"; + } ++ ++package MY; ++sub install { ++ my $inherited = shift->SUPER::install(@_); ++ $inherited =~ s/(install :: (all )?pure_install) doc_install/$1/; ++ $inherited; ++}