diff options
author | jmmv <jmmv> | 2002-12-18 17:42:14 +0000 |
---|---|---|
committer | jmmv <jmmv> | 2002-12-18 17:42:14 +0000 |
commit | 8b64069c98bb0fcc0c50274581cf88bd04e8e162 (patch) | |
tree | f00fb2dfc23f4de1eb82c221a119723e6f790f72 /chat | |
parent | d57fe3cafed10b417da5d4d86ae7b97fc92da65c (diff) | |
download | pkgsrc-8b64069c98bb0fcc0c50274581cf88bd04e8e162.tar.gz |
Initial import of pircbot 0.9.11.
PircBot is a Java framework for writing IRC bots quickly and easily.
Its features include an event-driven architecture to handle common IRC
events, flood protection, DCC support, ident support, and more. Its
comprehensive logfile format is suitable for use with pisg to generate
channel statistics.
Approved by wiz.
Diffstat (limited to 'chat')
-rw-r--r-- | chat/pircbot/DESCR | 8 | ||||
-rw-r--r-- | chat/pircbot/Makefile | 30 | ||||
-rw-r--r-- | chat/pircbot/PLIST | 40 | ||||
-rw-r--r-- | chat/pircbot/distinfo | 4 |
4 files changed, 82 insertions, 0 deletions
diff --git a/chat/pircbot/DESCR b/chat/pircbot/DESCR new file mode 100644 index 00000000000..2366504edd7 --- /dev/null +++ b/chat/pircbot/DESCR @@ -0,0 +1,8 @@ +PircBot is a Java framework for writing IRC bots quickly and easily. +Its features include an event-driven architecture to handle common IRC +events, flood protection, DCC support, ident support, and more. Its +comprehensive logfile format is suitable for use with pisg to generate +channel statistics. + +Full documentation for PircBot's API is included, and its homepage +contains a 5-minute step-by-step guide to making your first IRC bot. diff --git a/chat/pircbot/Makefile b/chat/pircbot/Makefile new file mode 100644 index 00000000000..d1e254766da --- /dev/null +++ b/chat/pircbot/Makefile @@ -0,0 +1,30 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/12/18 17:42:14 jmmv Exp $ +# + +DISTNAME= pircbot-0.9.11 +CATEGORIES= chat +MASTER_SITES= http://www.jibble.org/files/ +EXTRACT_SUFX= .zip + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://www.jibble.org/pircbot.php +COMMENT= Java IRC Bot Framework + +USE_JAVA= run +NO_PATCH= YES +NO_CONFIGURE= YES +NO_BUILD= YES + +post-extract: + ${FIND} ${WRKSRC} -type d -exec ${CHMOD} 755 {} \; + ${FIND} ${WRKSRC} -type f -exec ${CHMOD} 644 {} \; + +do-install: + ${INSTALL_DATA_DIR} ${PREFIX}/lib/java + ${INSTALL_DATA} ${WRKSRC}/pircbot.jar ${PREFIX}/lib/java + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/java/pircbot + cd ${WRKSRC}/javadocs && \ + ${PAX} -rwpppm . ${PREFIX}/share/doc/java/pircbot + +.include "../../mk/java.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/chat/pircbot/PLIST b/chat/pircbot/PLIST new file mode 100644 index 00000000000..2fc3fe4be9e --- /dev/null +++ b/chat/pircbot/PLIST @@ -0,0 +1,40 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2002/12/18 17:42:14 jmmv Exp $ +lib/java/pircbot.jar +share/doc/java/pircbot/allclasses-frame.html +share/doc/java/pircbot/allclasses-noframe.html +share/doc/java/pircbot/constant-values.html +share/doc/java/pircbot/deprecated-list.html +share/doc/java/pircbot/help-doc.html +share/doc/java/pircbot/index-all.html +share/doc/java/pircbot/index.html +share/doc/java/pircbot/org/jibble/pircbot/class-use/dccchat.html +share/doc/java/pircbot/org/jibble/pircbot/class-use/identserver.html +share/doc/java/pircbot/org/jibble/pircbot/class-use/inputthread.html +share/doc/java/pircbot/org/jibble/pircbot/class-use/ircexception.html +share/doc/java/pircbot/org/jibble/pircbot/class-use/nickalreadyinuseexception.html +share/doc/java/pircbot/org/jibble/pircbot/class-use/outputthread.html +share/doc/java/pircbot/org/jibble/pircbot/class-use/pircbot.html +share/doc/java/pircbot/org/jibble/pircbot/class-use/queue.html +share/doc/java/pircbot/org/jibble/pircbot/dccchat.html +share/doc/java/pircbot/org/jibble/pircbot/identserver.html +share/doc/java/pircbot/org/jibble/pircbot/inputthread.html +share/doc/java/pircbot/org/jibble/pircbot/ircexception.html +share/doc/java/pircbot/org/jibble/pircbot/nickalreadyinuseexception.html +share/doc/java/pircbot/org/jibble/pircbot/outputthread.html +share/doc/java/pircbot/org/jibble/pircbot/package-frame.html +share/doc/java/pircbot/org/jibble/pircbot/package-summary.html +share/doc/java/pircbot/org/jibble/pircbot/package-tree.html +share/doc/java/pircbot/org/jibble/pircbot/package-use.html +share/doc/java/pircbot/org/jibble/pircbot/pircbot.html +share/doc/java/pircbot/org/jibble/pircbot/queue.html +share/doc/java/pircbot/overview-tree.html +share/doc/java/pircbot/package-list +share/doc/java/pircbot/packages.html +share/doc/java/pircbot/pircbot-style.css +share/doc/java/pircbot/serialized-form.html +share/doc/java/pircbot/stylesheet.css +@dirrm share/doc/java/pircbot/org/jibble/pircbot/class-use +@dirrm share/doc/java/pircbot/org/jibble/pircbot +@dirrm share/doc/java/pircbot/org/jibble +@dirrm share/doc/java/pircbot/org +@dirrm share/doc/java/pircbot diff --git a/chat/pircbot/distinfo b/chat/pircbot/distinfo new file mode 100644 index 00000000000..ba74ed9713e --- /dev/null +++ b/chat/pircbot/distinfo @@ -0,0 +1,4 @@ +$NetBSD: distinfo,v 1.1.1.1 2002/12/18 17:42:14 jmmv Exp $ + +SHA1 (pircbot-0.9.11.zip) = 3c17bc049f43a0923b0307e36898816a8bada99e +Size (pircbot-0.9.11.zip) = 117678 bytes |