svn commit: r315852 - in head/devel: . p5-ExtUtils-InstallPaths

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Tue Apr 16 16:59:23 UTC 2013


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 <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	ExtUtils-InstallPaths
+PORTVERSION=	0.009
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	sunpoet at 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 <bsd.port.mk>

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
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/ExtUtils/InstallPaths
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/ExtUtils
+ at dirrmtry %%SITE_PERL%%/ExtUtils


More information about the svn-ports-all mailing list