48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
# New ports collection makefile for: devel/p5-Class-MOP
|
|
# Date created: 14 Apr 2006
|
|
# Whom: Lars Balker Rasmussen <lbr@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Class-MOP
|
|
PORTVERSION= 0.42
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= lbr@FreeBSD.org
|
|
COMMENT= A Meta Object Protocol for Perl 5
|
|
|
|
RUN_DEPENDS= p5-Sub-Name>=0.02:${PORTSDIR}/devel/p5-Sub-Name
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
|
|
PERL_MODBUILD= yes
|
|
|
|
MAN3= Class::MOP.3 \
|
|
Class::MOP::Attribute.3 \
|
|
Class::MOP::Class.3 \
|
|
Class::MOP::Immutable.3 \
|
|
Class::MOP::Instance.3 \
|
|
Class::MOP::Method.3 \
|
|
Class::MOP::Method::Accessor.3 \
|
|
Class::MOP::Method::Constructor.3 \
|
|
Class::MOP::Method::Wrapped.3 \
|
|
Class::MOP::Module.3 \
|
|
Class::MOP::Object.3 \
|
|
Class::MOP::Package.3 \
|
|
metaclass.3
|
|
|
|
post-extract:
|
|
@${PERL} -i.bak -ne 'print unless m,Test::,' ${WRKSRC}/Build.PL
|
|
|
|
post-install:
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR}
|
|
@${ECHO_MSG} "===> Examples installed in ${EXAMPLESDIR}."
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.if ${PERL_LEVEL} < 500800
|
|
IGNORE= requires perl 5.8.0 or later. Install lang/perl5.8 and try again
|
|
.endif
|
|
.include <bsd.port.post.mk>
|