diff options
author | ijliao <ijliao@FreeBSD.org> | 2006-08-02 09:16:21 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2006-08-02 09:16:21 +0800 |
commit | 7a9f0128c2afab2b3f602493a48d56526a602e2a (patch) | |
tree | 2f38a5e7dcf2d31f9d476495d90c364984b9fe6c | |
parent | 448cdcfad85bc041f63b3ee04de960082557c211 (diff) | |
download | freebsd-ports-gnome-7a9f0128c2afab2b3f602493a48d56526a602e2a.tar.gz freebsd-ports-gnome-7a9f0128c2afab2b3f602493a48d56526a602e2a.tar.zst freebsd-ports-gnome-7a9f0128c2afab2b3f602493a48d56526a602e2a.zip |
add p5-aliased 0.20
Use shorter versions of class names
PR: 101016
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/p5-aliased/Makefile | 25 | ||||
-rw-r--r-- | devel/p5-aliased/distinfo | 3 | ||||
-rw-r--r-- | devel/p5-aliased/pkg-descr | 7 |
4 files changed, 36 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index c6d408eba41f..d357561cd0bd 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -1435,6 +1435,7 @@ SUBDIR += p5-XSLoader SUBDIR += p5-Yada-Yada-Yada SUBDIR += p5-accessors + SUBDIR += p5-aliased SUBDIR += p5-base SUBDIR += p5-capitalization SUBDIR += p5-enum diff --git a/devel/p5-aliased/Makefile b/devel/p5-aliased/Makefile new file mode 100644 index 000000000000..56ca21b10504 --- /dev/null +++ b/devel/p5-aliased/Makefile @@ -0,0 +1,25 @@ +# ex:ts=8 +# Ports collection makefile for: p5-aliased +# Date created: Jul 29, 2006 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= aliased +PORTVERSION= 0.20 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= ../by-authors/id/O/OV/OVID/ +PKGNAMEPREFIX= p5- + +MAINTAINER= perl@FreeBSD.org +COMMENT= Use shorter versions of class names + +PERL_MODBUILD= yes + +PLIST_FILES= ${SITE_PERL_REL}/aliased.pm + +MAN3= aliased.3 + +.include <bsd.port.mk> diff --git a/devel/p5-aliased/distinfo b/devel/p5-aliased/distinfo new file mode 100644 index 000000000000..99d1a3f83bd8 --- /dev/null +++ b/devel/p5-aliased/distinfo @@ -0,0 +1,3 @@ +MD5 (aliased-0.20.tar.gz) = 0bfab0c5dcff5a4903e04feb22d37b9b +SHA256 (aliased-0.20.tar.gz) = a4bbd9584d60c08df0966831a01ecb5340bb59a67c6780a705adf3b15d7899a6 +SIZE (aliased-0.20.tar.gz) = 5685 diff --git a/devel/p5-aliased/pkg-descr b/devel/p5-aliased/pkg-descr new file mode 100644 index 000000000000..8f50f57911de --- /dev/null +++ b/devel/p5-aliased/pkg-descr @@ -0,0 +1,7 @@ +aliased is simple in concept but is a rather handy module. It loads the class +you specify and exports into your namespace a subroutine that returns the +class name. You can explicitly alias the class to another name or, if you +prefer, you can do so implicitly. In the latter case, the name of the +subroutine is the last part of the class name. + +WWW: http://search.cpan.org/dist/aliased/ |