mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
63 lines
1.4 KiB
Makefile
63 lines
1.4 KiB
Makefile
# New ports collection makefile for: Coro
|
|
# Date created: 27 Jan 2003
|
|
# Whom: tobez
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Coro
|
|
PORTVERSION= 1.9
|
|
PORTEPOCH= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= Coro
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= Coro - coroutine process abstraction for perl
|
|
|
|
BUILD_DEPENDS= p5-Event>=0.89:${PORTSDIR}/devel/p5-Event \
|
|
${SITE_PERL}/${PERL_ARCH}/Scalar/Util.pm:${PORTSDIR}/lang/p5-Scalar-List-Utils
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= Changes
|
|
EXAMPLES= eg/attributes eg/bench eg/cont eg/dns eg/event eg/lwp eg/myhttpd eg/prodcons1 eg/prodcons2 eg/prodcons3 eg/readline
|
|
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
|
|
@${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
@${INSTALL_DATA} ${EXAMPLES:S|^|${WRKSRC}/|} ${EXAMPLESDIR}
|
|
@${ECHO_MSG} "===> Examples installed in ${EXAMPLESDIR}."
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PERL_LEVEL} < 500600
|
|
IGNORE= requires perl 5.6.0 or later. Install lang/perl5.8 and try again
|
|
.endif
|
|
|
|
MAN3= Coro.3 \
|
|
Coro::AIO.3 \
|
|
Coro::Channel.3 \
|
|
Coro::Cont.3 \
|
|
Coro::Event.3 \
|
|
Coro::Handle.3 \
|
|
Coro::MakeMaker.3 \
|
|
Coro::RWLock.3 \
|
|
Coro::Select.3 \
|
|
Coro::Semaphore.3 \
|
|
Coro::SemaphoreSet.3 \
|
|
Coro::Signal.3 \
|
|
Coro::Socket.3 \
|
|
Coro::Specific.3 \
|
|
Coro::State.3 \
|
|
Coro::Timer.3 \
|
|
Coro::Util.3
|
|
|
|
.include <bsd.port.post.mk>
|