mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
1b85bc9332
python 2.7.10 Differential Revision: https://reviews.freebsd.org/D2639 Reviewed by: sunpoet, mva
29 lines
652 B
Makefile
29 lines
652 B
Makefile
# Created by: Antoine Brodin <antoine@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= olefile
|
|
PORTVERSION= 0.42.1
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= antoine@FreeBSD.org
|
|
COMMENT= Python module to read MS OLE2 files
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/olefile/LICENSE.txt
|
|
|
|
USES= dos2unix python zip
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# Remove files not python 3 ready and allow compile again
|
|
post-patch:
|
|
.if ${PYTHON_REL} >= 3000
|
|
${RM} ${WRKSRC}/olefile/olefile2.py
|
|
.endif
|
|
${REINPLACE_CMD} "/install' in sys.argv:/,+1d" ${WRKSRC}/setup.py
|
|
|
|
.include <bsd.port.post.mk>
|