svn commit: r319088 - in head/devel: . p5-Module-Functions

Jun Kuriyama kuriyama at FreeBSD.org
Sun May 26 01:24:22 UTC 2013


Author: kuriyama
Date: Sun May 26 01:24:21 2013
New Revision: 319088
URL: http://svnweb.freebsd.org/changeset/ports/319088

Log:
  Module::Functions is a library to get a public functions list from
  package.  It is useful to create a exportable function list.
  
  WWW: http://search.cpan.org/dist/Module-Functions/

Added:
  head/devel/p5-Module-Functions/
  head/devel/p5-Module-Functions/Makefile   (contents, props changed)
  head/devel/p5-Module-Functions/distinfo   (contents, props changed)
  head/devel/p5-Module-Functions/pkg-descr   (contents, props changed)
  head/devel/p5-Module-Functions/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun May 26 01:14:14 2013	(r319087)
+++ head/devel/Makefile	Sun May 26 01:24:21 2013	(r319088)
@@ -2267,6 +2267,7 @@
     SUBDIR += p5-Module-Extract
     SUBDIR += p5-Module-ExtractUse
     SUBDIR += p5-Module-Find
+    SUBDIR += p5-Module-Functions
     SUBDIR += p5-Module-Implementation
     SUBDIR += p5-Module-Info
     SUBDIR += p5-Module-Info-File

Added: head/devel/p5-Module-Functions/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Module-Functions/Makefile	Sun May 26 01:24:21 2013	(r319088)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME=	Module-Functions
+PORTVERSION=	2.1.3
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	kuriyama at FreeBSD.org
+COMMENT=	Perl extension to get function list from package
+
+RUN_DEPENDS=	\
+	p5-Sub-Identify>=0.04:${PORTSDIR}/devel/p5-Sub-Identify
+BUILD_DEPENDS=	${RUN_DEPENDS}
+
+PERL_MODBUILD=	yes
+
+MAN3=	Module::Functions.3
+
+.include <bsd.port.mk>

Added: head/devel/p5-Module-Functions/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Module-Functions/distinfo	Sun May 26 01:24:21 2013	(r319088)
@@ -0,0 +1,2 @@
+SHA256 (Module-Functions-2.1.3.tar.gz) = d2192e5745745e4437f64cf3adad3b2f640b4eff037d7ce7f2d7be5049e961bc
+SIZE (Module-Functions-2.1.3.tar.gz) = 11176

Added: head/devel/p5-Module-Functions/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Module-Functions/pkg-descr	Sun May 26 01:24:21 2013	(r319088)
@@ -0,0 +1,4 @@
+Module::Functions is a library to get a public functions list from
+package.  It is useful to create a exportable function list.
+
+WWW: http://search.cpan.org/dist/Module-Functions/

Added: head/devel/p5-Module-Functions/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Module-Functions/pkg-plist	Sun May 26 01:24:21 2013	(r319088)
@@ -0,0 +1 @@
+%%SITE_PERL%%/Module/Functions.pm


More information about the svn-ports-all mailing list