2001-05-24 15:20:32 +02:00
|
|
|
# New ports collection makefile for: py-irclib
|
|
|
|
# Date created: 25 April 2001
|
|
|
|
# Whom: Hye-Shik Chang <perky@python.or.kr>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= irclib
|
2003-11-10 13:38:02 +01:00
|
|
|
PORTVERSION= 0.4.1
|
2001-05-24 15:20:32 +02:00
|
|
|
CATEGORIES= irc python
|
2002-02-26 23:00:38 +01:00
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
|
|
MASTER_SITE_SUBDIR= python-irclib
|
2001-05-24 15:20:32 +02:00
|
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
2002-02-26 23:00:38 +01:00
|
|
|
DISTNAME= python-irclib-${PORTVERSION}
|
2001-05-24 15:20:32 +02:00
|
|
|
|
2002-06-25 09:50:58 +02:00
|
|
|
MAINTAINER= perky@FreeBSD.org
|
2003-02-25 07:25:35 +01:00
|
|
|
COMMENT= IRC protocol client library for Python
|
2001-05-24 15:20:32 +02:00
|
|
|
|
|
|
|
USE_PYTHON= yes
|
2003-09-27 18:20:31 +02:00
|
|
|
USE_PYDISTUTILS=yes
|
|
|
|
EXAMPLEFILES= irccat irccat2 servermap testbot.py \
|
|
|
|
dccreceive dccsend
|
2001-05-24 15:20:32 +02:00
|
|
|
|
2003-09-27 18:20:31 +02:00
|
|
|
post-install:
|
2002-03-27 16:14:15 +01:00
|
|
|
.if !defined(NOPORTDOCS)
|
2001-05-24 15:20:32 +02:00
|
|
|
@${MKDIR} ${PREFIX}/share/examples/${PORTNAME}
|
|
|
|
.for file in ${EXAMPLEFILES}
|
2002-02-26 23:00:38 +01:00
|
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/${file} ${EXAMPLESDIR}/
|
2001-05-24 15:20:32 +02:00
|
|
|
.endfor
|
2002-03-27 16:14:15 +01:00
|
|
|
.endif
|
2001-05-24 15:20:32 +02:00
|
|
|
|
|
|
|
.include <bsd.port.mk>
|