mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
6313d7e835
- Remove unneeded DISTNAME PR: ports/188961 Submitted by: Bartek Rutkowski <ports@robakdesign.com> Approved by: portmgr@ (blanket)
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
# Created by: Sten Spans <sten@blinkenlights.nl>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gozerbot
|
|
PORTVERSION= 0.8.1.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= irc python
|
|
MASTER_SITES= http://gozerbot.org/media/tarball/ \
|
|
${MASTER_SITE_GOOGLE_CODE}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sten@blinkenlights.nl
|
|
COMMENT= Gozerbot - A modular Python IRC and Jabber bot
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
SUB_FILES= pkg-message
|
|
|
|
OPTIONS_DEFINE= XMPP MYSQL DOCS
|
|
XMPP_DESC= Jabber functions
|
|
MYSQL_DESC= Mysql functions
|
|
OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options
|
|
|
|
MAN1= gozerbot.1
|
|
|
|
RUN_DEPENDS+= ${LOCALBASE}/bin/gpg:${PORTSDIR}/security/gnupg
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${CP} -R ${WRKSRC}/doc/ ${STAGEDIR}${DOCSDIR}
|
|
${CP} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
.endif
|
|
@${INSTALL_MAN} ${WRKSRC}/man/gozerbot.1.FreeBSD ${STAGEDIR}${MAN1PREFIX}/gozerbot.1
|
|
|
|
.if ${PORT_OPTIONS:MMYSQL}
|
|
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}MySQLdb>=0:${PORTSDIR}/databases/py-MySQLdb
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MXMPP}
|
|
RUN_DEPENDS+=${PYTHON_SITELIBDIR}/xmpp/__init__.py:${PORTSDIR}/net-im/py-xmpppy
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|