9d293215a5
PR: 98244 Submitted by: aaron
54 lines
1.8 KiB
Makefile
54 lines
1.8 KiB
Makefile
# New ports collection makefile for: p5-DateTime-Format-Builder
|
|
# Date created: 2 july 2003
|
|
# Whom: Mathieu Arnold <m@absolight.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= DateTime-Format-Builder
|
|
PORTVERSION= 0.78.07
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= DateTime
|
|
PKGNAMEPREFIX= p5-
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:C/\.(..)$/\1/}
|
|
|
|
MAINTAINER= mat@FreeBSD.org
|
|
COMMENT= Create DateTime parser classes and objects
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Params/Validate.pm:${PORTSDIR}/devel/p5-Params-Validate \
|
|
${SITE_PERL}/${PERL_ARCH}/File/Spec.pm:${PORTSDIR}/devel/p5-PathTools \
|
|
${SITE_PERL}/Class/Factory/Util.pm:${PORTSDIR}/devel/p5-Class-Factory-Util \
|
|
${SITE_PERL}/${PERL_ARCH}/DateTime.pm:${PORTSDIR}/devel/p5-DateTime \
|
|
${SITE_PERL}/DateTime/Format/Strptime.pm:${PORTSDIR}/devel/p5-DateTime-Format-Strptime
|
|
|
|
PERL_MODBUILD= yes
|
|
|
|
MAN3= DateTime::Format::Builder.3 DateTime::Format::Builder::Parser.3 \
|
|
DateTime::Format::Builder::Parser::Dispatch.3 \
|
|
DateTime::Format::Builder::Parser::Regex.3 \
|
|
DateTime::Format::Builder::Parser::Quick.3 \
|
|
DateTime::Format::Builder::Parser::Strptime.3 \
|
|
DateTime::Format::Builder::Parser::generic.3 \
|
|
DateTime::Format::Builder::Tutorial.3
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= CREDITS Changes README
|
|
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
|
|
@${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR}
|
|
@${ECHO_MSG} "===> Examples installed in ${EXAMPLESDIR}."
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PERL_LEVEL} < 500600
|
|
IGNORE= requires at least Perl 5.6 due to dependencies. Please install lang/perl5.8 and try again
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|