diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2008-07-18 12:38:21 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2008-07-18 12:38:21 +0000 |
commit | 32e8646bd707683ef9d019c9f5419e6d8a48d7bd (patch) | |
tree | 3e36e476b9c2671fbeff40ac24cd7573c8ca2598 /devel/py-geojson/Makefile | |
parent | a289f0dfc90070025f9c9e8663af4185b6a1e590 (diff) |
Notes
Diffstat (limited to 'devel/py-geojson/Makefile')
-rw-r--r-- | devel/py-geojson/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/devel/py-geojson/Makefile b/devel/py-geojson/Makefile new file mode 100644 index 000000000000..5057f77395ce --- /dev/null +++ b/devel/py-geojson/Makefile @@ -0,0 +1,36 @@ +# Ports collection makefile for: py-geojson +# Date created: 03 July, 2008 +# Whom: Wen Heping <wenheping@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= geojson +PORTVERSION= 1.0b1 +CATEGORIES= devel geography python +MASTER_SITES= ${MASTER_SITE_CHEESESHOP} +MASTER_SITE_SUBDIR= source/g/geojson/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wenheping@gmail.com +COMMENT= Python's Encoder/decoder for simple GIS features + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}simplejson>1.9:${PORTSDIR}/devel/py-simplejson + +DOCSFILE= CHANGES.txt CREDITS.txt DEPENDENCIES.txt FAQ.txt \ + GeoInterface.txt HISTORY.txt INSTALL.txt LICENSE.txt \ + README.txt VERSION.txt + +USE_PYTHON= 2.4+ +USE_PYDISTUTILS=easy_install +PYDISTUTILS_NOEGGINFO= yes + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for f in ${DOCSFILE} + @cd ${WRKSRC} && ${CP} ${f} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> |