a4b5bef13d
- Restrict to Perl 5.8+ due to dependency upon devel/p5-Class-Exception 1.15 2006-05-26T21:28:55 - Added the 'requester' attribute to Params::Callback. This can be specified by passing the 'requester' paremter to request(), and can be anything. 1.14 2006-03-02T20:07:28 - Removed an unnecessary eval block around the loading of Class::ISA and Attribute::Handlers that would prevent the failure of either of those modules to load to propagate. - Fixed typo in the Synopsis spotted by Scott Lanning. - Added support for mod_perl2, as well as mod_perl 1 and mod_perl 1.99. PR: ports/98303 Submitted by: aaron Reviewed by: maintainer Approved by: maintainer, tobez (implicit)
33 lines
912 B
Makefile
33 lines
912 B
Makefile
# New ports collection makefile for: Params::CallbackRequest
|
|
# Date created: 21 May 2004
|
|
# Whom: Rod Taylor <ports@rbt.ca>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Params-CallbackRequest
|
|
PORTVERSION= 1.15
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= Params/DWHEELER
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= ports@rbt.ca
|
|
COMMENT= Provide callbacks to method and function parameters
|
|
|
|
BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Params/Validate.pm:${PORTSDIR}/devel/p5-Params-Validate \
|
|
${SITE_PERL}/Exception/Class.pm:${PORTSDIR}/devel/p5-Exception-Class
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
PERL_MODBUILD= yes
|
|
|
|
MAN3= Params::Callback.3 Params::CallbackRequest.3 \
|
|
Params::CallbackRequest::Exceptions.3
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PERL_LEVEL} < 500800
|
|
IGNORE= requires at least Perl 5.8.0 due to dependencies. Please install lang/perl5.8 and try again
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|