diff options
author | Josef Karthauser <joe@FreeBSD.org> | 2001-04-28 15:08:08 +0000 |
---|---|---|
committer | Josef Karthauser <joe@FreeBSD.org> | 2001-04-28 15:08:08 +0000 |
commit | c4e3d79cbccd46b52aff7abfa04afeca9094835f (patch) | |
tree | f98ab4a3bb793888edd6196453c069577b09ec22 /lang/p5-Switch/Makefile | |
parent | 4dcbaf4ca4dcfdedc361c8e031b86e47597b6389 (diff) | |
download | freebsd-ports-c4e3d79cbccd46b52aff7abfa04afeca9094835f.zip |
Switch.pm provides the syntax and semantics for an explicit case
mechanism for Perl. The syntax is minimal, introducing only the
keywords switch and case and conforming to the general pattern of
existing Perl control structures. The semantics are particularly
rich, allowing any one (or more) of nearly 30 forms of matching to
be used when comparing a switch value with its various cases.
PR: ports/26875
Diffstat (limited to 'lang/p5-Switch/Makefile')
-rw-r--r-- | lang/p5-Switch/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lang/p5-Switch/Makefile b/lang/p5-Switch/Makefile new file mode 100644 index 000000000000..b664c2ef85bd --- /dev/null +++ b/lang/p5-Switch/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: lang/p5-Switch +# Date created: 26 April 2001 +# Whom: Anton Berezin <tobez@tobez.org> +# +# $FreeBSD$ +# + +PORTNAME= Switch +PORTVERSION= 2.02 +CATEGORIES= lang perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= ../by-authors/id/DCONWAY +PKGNAMEPREFIX= p5- + +MAINTAINER= tobez@tobez.org + +BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Filter/Util/Call.pm:${PORTSDIR}/devel/p5-Filter +RUN_DEPENDS= ${BUILD_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= Switch.3 +MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} + +.include <bsd.port.mk> |