bf4c231d49
The Python IRC library is intended to encapsulate the IRC protocol at a quite low level. It provides an event-driven IRC client framework. It has a fairly thorough support for the basic IRC protocol, CTCP and DCC connections.
35 lines
784 B
Makefile
35 lines
784 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2004/07/12 08:41:22 xsa Exp $
|
|
|
|
COMMENT= "Internet Relay Chat (IRC) protocol client library for Python"
|
|
|
|
DISTNAME= python-irclib-0.4.2
|
|
PKGNAME= ${DISTNAME:S/python/py/g}
|
|
CATEGORIES= net
|
|
|
|
HOMEPAGE= http://python-irclib.sourceforge.net/
|
|
|
|
MAINTAINER= Xavier Santolaria <xsa@openbsd.org>
|
|
|
|
# LGPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=python-irclib/}
|
|
|
|
MODULES= python
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
EXAMPLES= dccreceive dccsend irccat irccat2 servermap testbot.py
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/py-irclib
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${EXAMPLESDIR}
|
|
.for f in ${EXAMPLES}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${EXAMPLESDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|