new port of Net::IRC 0.70, a Perl module with client-side IRC functions
This commit is contained in:
parent
1512608bfe
commit
b779335bd0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=38980
5 changed files with 63 additions and 0 deletions
|
@ -19,6 +19,7 @@
|
|||
SUBDIR += ninja
|
||||
SUBDIR += olirc
|
||||
SUBDIR += p5-IRC
|
||||
SUBDIR += p5-Net-IRC
|
||||
SUBDIR += party
|
||||
SUBDIR += quirc
|
||||
SUBDIR += roxirc
|
||||
|
|
50
irc/p5-Net-IRC/Makefile
Normal file
50
irc/p5-Net-IRC/Makefile
Normal file
|
@ -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>
|
1
irc/p5-Net-IRC/distinfo
Normal file
1
irc/p5-Net-IRC/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (Net-IRC-0.70.tar.gz) = 27ee8e5990c6c98a89941c6880de7225
|
1
irc/p5-Net-IRC/pkg-comment
Normal file
1
irc/p5-Net-IRC/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
Perl module with client-side IRC functions
|
10
irc/p5-Net-IRC/pkg-descr
Normal file
10
irc/p5-Net-IRC/pkg-descr
Normal file
|
@ -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
|
Loading…
Reference in a new issue