mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
50f8eaece1
- USE_PYTHON* = 2.X -> USE_PYTHON* = 2 - USE_PYTHON* = 2.X+ -> USE_PYTHON* = yes Reviewed by: python (mva, rm) Approved by: portmgr-lurkers (mat)
23 lines
544 B
Makefile
23 lines
544 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mt
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= www python
|
|
MASTER_SITES= SF/py${PORTNAME}/py${PORTNAME}/PyMT-${PORTVERSION}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= PyMT-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Python module which provides Movable Type XML-RPC connectivity
|
|
|
|
USE_PYTHON= 2
|
|
NO_BUILD= yes
|
|
PLIST_FILES= %%PYTHON_SITELIBDIR%%/PyMT.py
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/PyMT.py ${STAGEDIR}${PYTHON_SITELIBDIR}
|
|
|
|
.include <bsd.port.mk>
|