mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
68c606ca05
- Support stage
32 lines
763 B
Makefile
32 lines
763 B
Makefile
# Created by: Wen Heping <wenheping@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= geojson
|
|
PORTVERSION= 1.0.5
|
|
PORTEPOCH= 1
|
|
CATEGORIES= devel geography python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= wen@FreeBSD.org
|
|
COMMENT= Python's Encoder/decoder for simple GIS features
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=1.3.0:${PORTSDIR}/devel/py-nose
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}simplejson>1.9:${PORTSDIR}/devel/py-simplejson
|
|
|
|
DOCSFILE= LICENSE.rst CHANGELOG.rst README.rst
|
|
|
|
USE_PYTHON= 2.6+
|
|
USE_PYDISTUTILS=easy_install
|
|
PYDISTUTILS_NOEGGINFO= yes
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${DOCSFILE}
|
|
@cd ${WRKSRC} && ${CP} ${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|