diff options
author | miwi <miwi@FreeBSD.org> | 2008-02-19 14:55:03 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-02-19 14:55:03 +0800 |
commit | fc25b7bd7a13f15fdb13958991f244be9c7cddbf (patch) | |
tree | e189453b5a2674c86d50741ef9c2bd299163ee0a /textproc | |
parent | 49a37f09302e3663979117cc3b53e08a2df153d1 (diff) | |
download | freebsd-ports-gnome-fc25b7bd7a13f15fdb13958991f244be9c7cddbf.tar.gz freebsd-ports-gnome-fc25b7bd7a13f15fdb13958991f244be9c7cddbf.tar.zst freebsd-ports-gnome-fc25b7bd7a13f15fdb13958991f244be9c7cddbf.zip |
The goal of this module is providing good code readability and clarity
of intent for command-line option processing. While readability is a
subjective standard, Getopt::Lucid relies on a more verbose,
plain-English option specification as compared against the more symbolic
approach of Getopt::Long.
WWW: http://search.cpan.org/dist/Getopt-Lucid/
PR: ports/120804
Submitted by: Felippe de Meirelles Motta <lippemail at gmail.com>
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/p5-Getopt-Lucid/Makefile | 28 | ||||
-rw-r--r-- | textproc/p5-Getopt-Lucid/distinfo | 3 | ||||
-rw-r--r-- | textproc/p5-Getopt-Lucid/pkg-descr | 7 | ||||
-rw-r--r-- | textproc/p5-Getopt-Lucid/pkg-plist | 8 |
5 files changed, 47 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 96fc6cb96ba1..e5148e816ead 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -369,6 +369,7 @@ SUBDIR += p5-Filter-Simple SUBDIR += p5-FormValidator-Simple SUBDIR += p5-Games-Dissociate + SUBDIR += p5-Getopt-Lucid SUBDIR += p5-Google-Data-JSON SUBDIR += p5-HTML-Copy SUBDIR += p5-HTML-Entities-ImodePictogram diff --git a/textproc/p5-Getopt-Lucid/Makefile b/textproc/p5-Getopt-Lucid/Makefile new file mode 100644 index 000000000000..ed5e3c2964af --- /dev/null +++ b/textproc/p5-Getopt-Lucid/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: p5-Getopt-Lucid +# Date created: 2008-02-14 +# Whom: Felippe de Meirelles Motta <lippemail@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= Getopt-Lucid +PORTVERSION= 0.16 +CATEGORIES= textproc perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= lippemail@gmail.com +COMMENT= Getopt::Lucid - Clear, readable syntax for command line processing + +BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Data/Dumper.pm:${PORTSDIR}/devel/p5-Data-Dumper \ + ${SITE_PERL}/Exception/Class.pm:${PORTSDIR}/devel/p5-Exception-Class \ + ${SITE_PERL}/Exception/Class/TryCatch.pm:${PORTSDIR}/devel/p5-Exception-Class-TryCatch \ + ${SITE_PERL}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable \ + ${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple +RUN_DEPENDS+= ${BUILD_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= Getopt::Lucid.3 + +.include <bsd.port.mk> diff --git a/textproc/p5-Getopt-Lucid/distinfo b/textproc/p5-Getopt-Lucid/distinfo new file mode 100644 index 000000000000..0d99e4f77c56 --- /dev/null +++ b/textproc/p5-Getopt-Lucid/distinfo @@ -0,0 +1,3 @@ +MD5 (Getopt-Lucid-0.16.tar.gz) = e09eee84dc5dcaf25713dc7e5b574dcd +SHA256 (Getopt-Lucid-0.16.tar.gz) = 6da381bc18b471a4c7c155a95612f1433ddd636f088298f9db9b9c0bfea3c35c +SIZE (Getopt-Lucid-0.16.tar.gz) = 40362 diff --git a/textproc/p5-Getopt-Lucid/pkg-descr b/textproc/p5-Getopt-Lucid/pkg-descr new file mode 100644 index 000000000000..9cac27a1f00f --- /dev/null +++ b/textproc/p5-Getopt-Lucid/pkg-descr @@ -0,0 +1,7 @@ +The goal of this module is providing good code readability and clarity +of intent for command-line option processing. While readability is a +subjective standard, Getopt::Lucid relies on a more verbose, +plain-English option specification as compared against the more symbolic +approach of Getopt::Long. + +WWW: http://search.cpan.org/dist/Getopt-Lucid/ diff --git a/textproc/p5-Getopt-Lucid/pkg-plist b/textproc/p5-Getopt-Lucid/pkg-plist new file mode 100644 index 000000000000..ad8d347e098a --- /dev/null +++ b/textproc/p5-Getopt-Lucid/pkg-plist @@ -0,0 +1,8 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Getopt/Lucid/.packlist +%%SITE_PERL%%/Getopt/Lucid.pm +%%SITE_PERL%%/Getopt/Lucid/Exception.pm +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Getopt/Lucid +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Getopt +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto +@dirrmtry %%SITE_PERL%%/Getopt/Lucid +@dirrmtry %%SITE_PERL%%/Getopt |