diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2011-10-04 18:58:31 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2011-10-04 18:58:31 +0000 |
commit | f3b49c22f6508ef67cb22621f45a6663ca2837b9 (patch) | |
tree | 1d65da4a44a2b118e031a42845accbbea764b595 /devel/p5-Data-Clone | |
parent | eda8fde982f74011a8021422b17c2edea10adfaa (diff) |
Notes
Diffstat (limited to 'devel/p5-Data-Clone')
-rw-r--r-- | devel/p5-Data-Clone/Makefile | 36 | ||||
-rw-r--r-- | devel/p5-Data-Clone/distinfo | 2 | ||||
-rw-r--r-- | devel/p5-Data-Clone/pkg-descr | 13 | ||||
-rw-r--r-- | devel/p5-Data-Clone/pkg-plist | 8 |
4 files changed, 59 insertions, 0 deletions
diff --git a/devel/p5-Data-Clone/Makefile b/devel/p5-Data-Clone/Makefile new file mode 100644 index 000000000000..d1ad68ce7974 --- /dev/null +++ b/devel/p5-Data-Clone/Makefile @@ -0,0 +1,36 @@ +# New ports collection makefile for: p5-Data-Clone +# Date created: 2011-10-04 +# Whom: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= Data-Clone +PORTVERSION= 0.003 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Polymorphic data cloning + +TEST_DEPENDS= p5-Test-Requires>=0.03:${PORTSDIR}/devel/p5-Test-Requires + +PERL_CONFIGURE= yes + +MAN3= Data::Clone.3 + +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 501001 +BUILD_DEPENDS+= p5-Devel-PPPort>=3.19:${PORTSDIR}/devel/p5-Devel-PPPort +RUN_DEPENDS+= p5-Devel-PPPort>=3.19:${PORTSDIR}/devel/p5-Devel-PPPort +TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.if ${PERL_LEVEL} < 501200 +BUILD_DEPENDS+= p5-ExtUtils-ParseXS>=2.21:${PORTSDIR}/devel/p5-ExtUtils-ParseXS +RUN_DEPENDS+= p5-ExtUtils-ParseXS>=2.21:${PORTSDIR}/devel/p5-ExtUtils-ParseXS +.endif + +.include <bsd.port.post.mk> diff --git a/devel/p5-Data-Clone/distinfo b/devel/p5-Data-Clone/distinfo new file mode 100644 index 000000000000..99ceb461e56d --- /dev/null +++ b/devel/p5-Data-Clone/distinfo @@ -0,0 +1,2 @@ +SHA256 (Data-Clone-0.003.tar.gz) = 2fb8f1207a6929469d0c00b4e3b9aa22ff2c8290a100a9f51bac91a79c9c8d9a +SIZE (Data-Clone-0.003.tar.gz) = 33712 diff --git a/devel/p5-Data-Clone/pkg-descr b/devel/p5-Data-Clone/pkg-descr new file mode 100644 index 000000000000..5cbcd75a7b48 --- /dev/null +++ b/devel/p5-Data-Clone/pkg-descr @@ -0,0 +1,13 @@ +Data::Clone does data cloning, i.e. copies things recursively. This is smart so +that it works with not only non-blessed references, but also with blessed +references (i.e. objects). When clone() finds an object, it calls a clone method +of the object if the object has a clone, otherwise it makes a surface copy of +the object. That is, this module does polymorphic data cloning. + +Although there are several modules on CPAN which can clone data, this module has +a different cloning policy from almost all of them. See "Cloning policy" and +"Comparison to other cloning modules" [1] for details. + +[1] http://search.cpan.org/dist/Data-Clone/lib/Data/Clone.pm + +WWW: http://search.cpan.org/dist/Data-Clone/ diff --git a/devel/p5-Data-Clone/pkg-plist b/devel/p5-Data-Clone/pkg-plist new file mode 100644 index 000000000000..7f0429c24d5a --- /dev/null +++ b/devel/p5-Data-Clone/pkg-plist @@ -0,0 +1,8 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/Data/Clone.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Data/Clone/.packlist +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Data/Clone/Clone.bs +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Data/Clone/Clone.so +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Data/Clone/data_clone.h +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Data/Clone +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Data +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Data |