From owner-svn-ports-all@FreeBSD.ORG Tue Apr 16 16:59:23 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 2268EE95; Tue, 16 Apr 2013 16:59:23 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 13E438F1; Tue, 16 Apr 2013 16:59:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r3GGxMuS026645; Tue, 16 Apr 2013 16:59:22 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r3GGxMQB026637; Tue, 16 Apr 2013 16:59:22 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201304161659.r3GGxMQB026637@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 16 Apr 2013 16:59:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r315852 - in head/devel: . p5-ExtUtils-InstallPaths 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: Tue, 16 Apr 2013 16:59:23 -0000 Author: sunpoet Date: Tue Apr 16 16:59:21 2013 New Revision: 315852 URL: http://svnweb.freebsd.org/changeset/ports/315852 Log: - Add p5-ExtUtils-InstallPaths 0.009 ExtUtils::InstallPaths tries to make install path resolution as easy as possible. When you want to install a module, it needs to figure out where to install things. The nutshell version of how this works is that default installation locations are determined from ExtUtils::Config, and they may be individually overridden by using the install_path attribute. An install_base attribute lets you specify an alternative installation root like /home/foo and prefix does something similar in a rather different (and more complicated) way. destdir lets you specify a temporary installation directory like /tmp/install in case you want to create bundled-up installable packages. WWW: http://search.cpan.org/dist/ExtUtils-InstallPaths/ Feature safe: yes Added: head/devel/p5-ExtUtils-InstallPaths/ head/devel/p5-ExtUtils-InstallPaths/Makefile (contents, props changed) head/devel/p5-ExtUtils-InstallPaths/distinfo (contents, props changed) head/devel/p5-ExtUtils-InstallPaths/pkg-descr (contents, props changed) head/devel/p5-ExtUtils-InstallPaths/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Apr 16 16:56:24 2013 (r315851) +++ head/devel/Makefile Tue Apr 16 16:59:21 2013 (r315852) @@ -1925,6 +1925,7 @@ SUBDIR += p5-ExtUtils-Constant SUBDIR += p5-ExtUtils-Depends SUBDIR += p5-ExtUtils-Install + SUBDIR += p5-ExtUtils-InstallPaths SUBDIR += p5-ExtUtils-LibBuilder SUBDIR += p5-ExtUtils-MakeMaker SUBDIR += p5-ExtUtils-MakeMaker-Coverage Added: head/devel/p5-ExtUtils-InstallPaths/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-ExtUtils-InstallPaths/Makefile Tue Apr 16 16:59:21 2013 (r315852) @@ -0,0 +1,23 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= ExtUtils-InstallPaths +PORTVERSION= 0.009 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Build.PL install path logic made easy + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-ExtUtils-Config>=0.002:${PORTSDIR}/devel/p5-ExtUtils-Config +RUN_DEPENDS:= ${BUILD_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= ExtUtils::InstallPaths.3 + +.include Added: head/devel/p5-ExtUtils-InstallPaths/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-ExtUtils-InstallPaths/distinfo Tue Apr 16 16:59:21 2013 (r315852) @@ -0,0 +1,2 @@ +SHA256 (ExtUtils-InstallPaths-0.009.tar.gz) = 1b0827a4acf40d38552c4348767000f7e2d8cf5fd0d19436bf8747d2a72d77bc +SIZE (ExtUtils-InstallPaths-0.009.tar.gz) = 18496 Added: head/devel/p5-ExtUtils-InstallPaths/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-ExtUtils-InstallPaths/pkg-descr Tue Apr 16 16:59:21 2013 (r315852) @@ -0,0 +1,13 @@ +ExtUtils::InstallPaths tries to make install path resolution as easy as +possible. + +When you want to install a module, it needs to figure out where to install +things. The nutshell version of how this works is that default installation +locations are determined from ExtUtils::Config, and they may be individually +overridden by using the install_path attribute. An install_base attribute lets +you specify an alternative installation root like /home/foo and prefix does +something similar in a rather different (and more complicated) way. destdir lets +you specify a temporary installation directory like /tmp/install in case you +want to create bundled-up installable packages. + +WWW: http://search.cpan.org/dist/ExtUtils-InstallPaths/ Added: head/devel/p5-ExtUtils-InstallPaths/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-ExtUtils-InstallPaths/pkg-plist Tue Apr 16 16:59:21 2013 (r315852) @@ -0,0 +1,5 @@ +%%SITE_PERL%%/ExtUtils/InstallPaths.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/ExtUtils/InstallPaths/.packlist +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/ExtUtils/InstallPaths +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/ExtUtils +@dirrmtry %%SITE_PERL%%/ExtUtils