10f22ecd6d
- Remove dependencies on modules distributed as part of perl core - Remove references to FreeBSD < 8 and perl < 5.16 - Ensure that DOCS and EXAMPLES options exist for ports installing PORTDOCS or PORTEXAMPLES - Reduce unnecessary inclusions of bsd.port.options.mk by using OPTIONS helpers and the like - Fix some cases where dependencies were only assigned to BUILD_DEPENDS - Fix a few of the cases where dependencies were only assigned to RUN_DEPENDS. This one happens in many, many ports. I only applied it in cases where it interfered with 'make test' but it should maybe be done more generally. - Mute ${MKDIR} in installation - Parethesize compound commands - In www/p5-URI-Fetch, remove the ZLIB option that wasn't used
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= POE-Component-IRC
|
|
PORTVERSION= 6.88
|
|
PORTREVISION= 1
|
|
CATEGORIES= irc devel perl5
|
|
MASTER_SITES= CPAN
|
|
MASTER_SITE_SUBDIR= CPAN:BINGOS
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= Fully event-driven IRC client module
|
|
|
|
LICENSE= ART10 GPLv1
|
|
LICENSE_COMB= dual
|
|
|
|
RUN_DEPENDS= p5-POE>=1.311:${PORTSDIR}/devel/p5-POE \
|
|
p5-POE-Component-Syndicator>=0.01:${PORTSDIR}/devel/p5-POE-Component-Syndicator \
|
|
p5-POE-Filter-IRCD>=2.42:${PORTSDIR}/irc/p5-POE-Filter-IRCD \
|
|
p5-POE-Component-Client-DNS>=0.99:${PORTSDIR}/dns/p5-POE-Component-Client-DNS \
|
|
p5-POE-Component-SSLify>0:${PORTSDIR}/security/p5-POE-Component-SSLify \
|
|
p5-IRC-Utils>=0.12:${PORTSDIR}/irc/p5-IRC-Utils \
|
|
p5-List-MoreUtils>0:${PORTSDIR}/lang/p5-List-MoreUtils
|
|
BUILD_DEPENDS:= ${RUN_DEPENDS}
|
|
TEST_DEPENDS= p5-Test-Differences>=0:${PORTSDIR}/devel/p5-Test-Differences
|
|
|
|
USES= perl5
|
|
USE_PERL5= configure
|
|
|
|
PORTEXAMPLES= *
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|