mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
aa1183d91b
- Use INSTALL_* instead of CP - Respect MANPREFIX PR: 96791 [1] Submitted by: Radim Kolar <hsn___netmag.cz> Approved by: maintainer timeout (14 days)
45 lines
1003 B
Makefile
45 lines
1003 B
Makefile
# New ports collection makefile for: py-supybot
|
|
# Date created: 01 March 2004
|
|
# Whom: Tim Middleton <x@vex.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= supybot
|
|
PORTVERSION= 0.83.1
|
|
CATEGORIES= irc python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= supybot
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= Supybot-${PORTVERSION}
|
|
|
|
MAINTAINER= x@Vex.Net
|
|
COMMENT= Supybot - A Superb Python IRC bot
|
|
|
|
USE_BZIP2= yes
|
|
USE_PYTHON= 2.3+
|
|
USE_PYDISTUTILS= yes
|
|
|
|
DOCS= ACKS ChangeLog INSTALL LICENSE README RELNOTES
|
|
|
|
MANCOMPRESSED= no
|
|
MAN1= supybot.1 supybot-adduser.1 supybot-wizard.1 supybot-botchk.1 \
|
|
supybot-plugin-create.1 supybot-plugin-doc.1
|
|
|
|
post-install:
|
|
.for f in ${MAN1}
|
|
${INSTALL_MAN} ${WRKSRC}/docs/man/${f} ${MAN1PREFIX}/man/man1
|
|
.endfor
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for f in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
${INSTALL_DATA} ${WRKSRC}/docs/GETTING_STARTED ${DOCSDIR}
|
|
.endif
|
|
.if !defined(BATCH)
|
|
@${CAT} ${PKGMESSAGE}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|