3086c7ddd1
POE::Component::IRC is a POE component (who'd have guessed?) which acts as an easily controllable IRC client for your other POE components and sessions. You create an IRC component and tell it what events your session cares about and where to connect to, and it sends back interesting IRC events when they happen. You make the client do things by sending it events. From Jasper Lievisse Adriaanse <jasper@nedbsd.nl>
38 lines
1.0 KiB
Makefile
38 lines
1.0 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2006/06/12 11:30:05 alek Exp $
|
|
|
|
COMMENT= "event-driven IRC-client module"
|
|
|
|
DISTNAME= POE-Component-IRC-4.91
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= net perl5
|
|
|
|
MAINTAINER= Jasper Lievisse Adriaanse <jasper@nedbsd.nl>
|
|
|
|
# Artistic/GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=POE/}
|
|
|
|
CONFIGURE_STYLE=perl
|
|
|
|
BUILD_DEPENDS= :p5-POE->=0.3202:devel/p5-POE \
|
|
:p5-POE-Component-Client-DNS->=0.99:net/p5-POE-Component-Client-DNS \
|
|
:p5-POE-Filter-IRCD->=1.7:net/p5-POE-Filter-IRCD
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
REGRESS_DEPENDS=:p5-Test-Pod-*:devel/p5-Test-Pod
|
|
|
|
PKG_ARCH= *
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/p5-POE-Component-IRC
|
|
${INSTALL_DATA} ${WRKSRC}/docs/* \
|
|
${PREFIX}/share/doc/p5-POE-Component-IRC
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/p5-POE-Component-IRC
|
|
${INSTALL_DATA} ${WRKSRC}/examples/* \
|
|
${PREFIX}/share/examples/p5-POE-Component-IRC
|
|
|
|
.include <bsd.port.mk>
|