mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
688d04ebe0
- Bump port revision. Feature safe: yes Reported by: stefanf
43 lines
1.2 KiB
Makefile
43 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.5.0
|
|
PORTREVISION= 1
|
|
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= tdb@FreeBSD.org
|
|
COMMENT= PircBot Java IRC Bot Framework
|
|
|
|
USE_ZIP= yes
|
|
NO_BUILD= yes
|
|
|
|
USE_JAVA= yes
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/pircbot.jar ${JAVAJARDIR}
|
|
.ifndef(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${CP} -r ${WRKSRC}/javadocs/* ${DOCSDIR}/
|
|
.endif
|
|
|
|
post-install:
|
|
@${ECHO_MSG} " ---------------------------------------------------------------"
|
|
@${ECHO_MSG} " To use pircbot add ${JAVAJARDIR}/pircbot.jar to"
|
|
@${ECHO_MSG} " your classpath. A short tutorial can be found here:"
|
|
@${ECHO_MSG} " http://www.jibble.org/pircbot.php"
|
|
.ifndef(NOPORTDOCS)
|
|
@${ECHO_MSG} " pircbot javadoc documentation has also been installed in:"
|
|
@${ECHO_MSG} " ${DOCSDIR}"
|
|
.endif
|
|
@${ECHO_MSG} " ---------------------------------------------------------------"
|
|
|
|
.include <bsd.port.mk>
|