summaryrefslogtreecommitdiff
path: root/chat/pircbot/Makefile
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2002-12-18 17:42:14 +0000
committerjmmv <jmmv@pkgsrc.org>2002-12-18 17:42:14 +0000
commit2bf9ebd6859bf563822800e57e44587df421e6e5 (patch)
treef00fb2dfc23f4de1eb82c221a119723e6f790f72 /chat/pircbot/Makefile
parent59ea6153ab3cbb91653baaa5d23dadbcb96e0bb9 (diff)
downloadpkgsrc-2bf9ebd6859bf563822800e57e44587df421e6e5.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/pircbot/Makefile')
-rw-r--r--chat/pircbot/Makefile30
1 files changed, 30 insertions, 0 deletions
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"