diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2001-03-02 15:01:20 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2001-03-02 15:01:20 +0000 |
commit | b779335bd08ceea55f19d8c6f179d1cc883a6a3a (patch) | |
tree | c8a3298e50f340219308de4c203aceb0d06bcde5 /irc | |
parent | 1512608bfebb87d32624202ebd6fd994ae52cd90 (diff) |
Notes
Diffstat (limited to 'irc')
-rw-r--r-- | irc/Makefile | 1 | ||||
-rw-r--r-- | irc/p5-Net-IRC/Makefile | 50 | ||||
-rw-r--r-- | irc/p5-Net-IRC/distinfo | 1 | ||||
-rw-r--r-- | irc/p5-Net-IRC/pkg-comment | 1 | ||||
-rw-r--r-- | irc/p5-Net-IRC/pkg-descr | 10 |
5 files changed, 63 insertions, 0 deletions
diff --git a/irc/Makefile b/irc/Makefile index c4d935fa49d0..2f692d50c6cc 100644 --- a/irc/Makefile +++ b/irc/Makefile @@ -19,6 +19,7 @@ SUBDIR += ninja SUBDIR += olirc SUBDIR += p5-IRC + SUBDIR += p5-Net-IRC SUBDIR += party SUBDIR += quirc SUBDIR += roxirc diff --git a/irc/p5-Net-IRC/Makefile b/irc/p5-Net-IRC/Makefile new file mode 100644 index 000000000000..98101e7a51bf --- /dev/null +++ b/irc/p5-Net-IRC/Makefile @@ -0,0 +1,50 @@ +# New ports collection makefile for: p5-Net-IRC +# Date created: 2001-03-02 +# Whom: trevor +# +# $FreeBSD$ +# + +PORTNAME= Net-IRC +PORTVERSION= 0.70 +CATEGORIES= irc perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Net +PKGNAMEPREFIX= p5- + +MAINTAINER= trevor@FreeBSD.org + +DOCS= TODO Changes README +DOCDIR= share/doc/p5-Net-IRC +MAN3= Net::IRC.3 Net::Connection.3 Net::DCC.3 Net::Event.3 +MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} +PLIST= ${WRKDIR}/pkg-plist +PERL_CONFIGURE= yes + +pre-install: + ${ECHO} share/examples/p5-Net-IRC/irctest > ${PLIST} +.for i in Net/IRC.pm Net/IRC/Connection.pm Net/IRC/Event.pm Net/IRC/DCC.pm + ${ECHO} lib/perl5/site_perl/%%PERL_VER%%/${i} >>${PLIST} +.endfor + ${ECHO} lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net/IRC/.packlist >> ${PLIST} +.if !defined(NOPORTDOCS) +.for i in ${DOCS} + ${ECHO} ${DOCDIR}/${i} >> ${PLIST} +.endfor + ${ECHO} @dirrm ${DOCDIR} >> ${PLIST} +.endif + ${ECHO} @dirrm lib/perl5/site_perl/%%PERL_VER%%/Net/IRC >> ${PLIST} + ${ECHO} @dirrm lib/perl5/site_perl/%%PERL_VER%%/Net >> ${PLIST} + ${ECHO} @dirrm share/examples/p5-Net-IRC >> ${PLIST} + +post-install: + ${MKDIR} ${PREFIX}/share/examples/p5-Net-IRC + ${INSTALL_SCRIPT} ${WRKSRC}/irctest ${PREFIX}/share/examples/p5-Net-IRC +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/p5-Net-IRC +.for i in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/p5-Net-IRC/ +.endfor +.endif + +.include <bsd.port.mk> diff --git a/irc/p5-Net-IRC/distinfo b/irc/p5-Net-IRC/distinfo new file mode 100644 index 000000000000..80be3a69c1ac --- /dev/null +++ b/irc/p5-Net-IRC/distinfo @@ -0,0 +1 @@ +MD5 (Net-IRC-0.70.tar.gz) = 27ee8e5990c6c98a89941c6880de7225 diff --git a/irc/p5-Net-IRC/pkg-comment b/irc/p5-Net-IRC/pkg-comment new file mode 100644 index 000000000000..dc443cfb899b --- /dev/null +++ b/irc/p5-Net-IRC/pkg-comment @@ -0,0 +1 @@ +Perl module with client-side IRC functions diff --git a/irc/p5-Net-IRC/pkg-descr b/irc/p5-Net-IRC/pkg-descr new file mode 100644 index 000000000000..90f23f16d27a --- /dev/null +++ b/irc/p5-Net-IRC/pkg-descr @@ -0,0 +1,10 @@ +from the README: + +Welcome to Net::IRC, a work in progress. First intended to be a +quick tool for writing an IRC script in Perl, Net::IRC has grown +into a comprehensive Perl implementation of the IRC protocol (RFC +1459), supported and developed by several members of the EFnet IRC +channel #perl. + +Trevor Johnson +trevor@FreeBSD.org |