mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-06 01:57:40 +00:00
50 lines
1.2 KiB
Makefile
50 lines
1.2 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.64
|
|
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 \
|
|
p5-Sub-Identify>=0.03:${PORTSDIR}/devel/p5-Sub-Identify \
|
|
p5-MRO-Compat>=0.05:${PORTSDIR}/devel/p5-MRO-Compat
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
|
|
PERL_CONFIGURE= 5.8.0+
|
|
|
|
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::Generated.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}/Makefile.PL
|
|
|
|
post-install:
|
|
.ifndef(NOPORTEXAMPLES)
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR}
|
|
@${ECHO_MSG} "===> Examples installed in ${EXAMPLESDIR}."
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|