cb28f35df9
PR: ports/62933 Submitted by: maintainer
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
# New ports collection makefile for: pircbot
|
|
# Date created: 2 June 2002
|
|
# Whom: Tim Bishop <tim@bishnet.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pircbot
|
|
PORTVERSION= 1.2.8
|
|
CATEGORIES= irc java
|
|
MASTER_SITES= http://www.jibble.org/files/ \
|
|
ftp://ftp.i-scream.org/pub/www.jibble.org/files/ \
|
|
http://www.i-scream.org/pub/www.jibble.org/files/
|
|
|
|
MAINTAINER= tim@bishnet.net
|
|
COMMENT= PircBot Java IRC Bot Framework
|
|
|
|
USE_ZIP= yes
|
|
NO_BUILD= yes
|
|
|
|
USE_JAVA= 1.1+
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/pircbot.jar ${JAVAJARDIR}
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
(cd ${WRKSRC}/javadocs && ${TAR} -cf - . | ${TAR} -xf - -C ${DOCSDIR})
|
|
.endif
|
|
|
|
post-install:
|
|
@echo " ---------------------------------------------------------------"
|
|
@echo " To use pircbot add ${JAVAJARDIR}/pircbot.jar to"
|
|
@echo " your classpath. A short tutorial can be found here:"
|
|
@echo " http://www.jibble.org/pircbot.php"
|
|
.if !defined(NOPORTDOCS)
|
|
@echo " pircbot javadoc documentation has also been installed in:"
|
|
@echo " ${DOCSDIR}"
|
|
.endif
|
|
@echo " ---------------------------------------------------------------"
|
|
|
|
.include <bsd.port.mk>
|