74e307999d
requires.txt when version is > 2.6. There's room for improvement, that's a quick fix.
34 lines
880 B
Makefile
34 lines
880 B
Makefile
# $NetBSD: Makefile,v 1.3 2012/12/22 13:34:49 imil Exp $
|
|
#
|
|
|
|
IRCVERS= 3.4.2
|
|
DISTNAME= irc-${IRCVERS}
|
|
PKGNAME= ${PYPKGPREFIX}-irclib-${IRCVERS}
|
|
CATEGORIES= net python
|
|
MASTER_SITES= http://pypi.python.org/packages/source/i/irc/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= imil@NetBSD.org
|
|
HOMEPAGE= https://bitbucket.org/jaraco/irc
|
|
COMMENT= Internet Relay Chat (IRC) protocol client library
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
|
|
PLIST_VARS+= requires
|
|
.if ${PYVERSSUFFIX} == "2.5" || ${PYVERSSUFFIX} == "2.6"
|
|
PLIST.requires= yes
|
|
.endif
|
|
|
|
post-extract:
|
|
cd ${WRKSRC} && ${CHMOD} ${SHAREMODE} irc.egg-info/*
|
|
|
|
# for some reason, this package does not install egg infos
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/irc.egg-info/* \
|
|
${DESTDIR}${PREFIX}/${PYSITELIB}/${EGG_INFODIR}
|
|
|
|
.include "../../devel/py-hgtools/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|