mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Python bindings for Shapelib
============================ These are three python modules for shapelib: shapelib read/write shapefiles dbflib read/write dbf files shptree quadtree for shapes Shapelib is a free software library for reading and writing ESRI shape files and can be found at http://gdal.velocet.ca/projects/shapelib. The bindings were partly created with SWIG, a tool that can generate wrappers of C and C++ libraries for a variety of scripting languages. It's homepage is http://www.swig.org. The bindings themselves don't have a homepage at the moment, but the source tarballs/zip files can be downloaded from http://ftp.intevation.de/users/bh/pyshapelib/ WWW: http://ftp.intevation.de/users/bh/pyshapelib/ PR: ports/121067 Submitted by: TAOKA Fumiyoshi <fmysh at iijmio-mail.jp>
This commit is contained in:
parent
dae4285fe4
commit
208e17e88f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=210990
5 changed files with 86 additions and 0 deletions
|
@ -2054,6 +2054,7 @@
|
||||||
SUBDIR += py-px
|
SUBDIR += py-px
|
||||||
SUBDIR += py-pycallgraph
|
SUBDIR += py-pycallgraph
|
||||||
SUBDIR += py-pydasm
|
SUBDIR += py-pydasm
|
||||||
|
SUBDIR += py-pyshapelib
|
||||||
SUBDIR += py-pytz
|
SUBDIR += py-pytz
|
||||||
SUBDIR += py-pyutil
|
SUBDIR += py-pyutil
|
||||||
SUBDIR += py-qt4-assistant
|
SUBDIR += py-qt4-assistant
|
||||||
|
|
46
devel/py-pyshapelib/Makefile
Normal file
46
devel/py-pyshapelib/Makefile
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
# New ports collection makefile for: pyshapelib
|
||||||
|
# Date created: 03 Feb 2008
|
||||||
|
# Whom: TAOKA Fumiyoshi <fmysh@iijmio-mail.jp>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= pyshapelib
|
||||||
|
PORTVERSION= 0.3
|
||||||
|
CATEGORIES= devel python geography
|
||||||
|
MASTER_SITES= http://ftp.intevation.de/users/bh/pyshapelib/:py \
|
||||||
|
http://dl.maptools.org/dl/shapelib/:c
|
||||||
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||||
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:py ${SHAPELIB}${EXTRACT_SUFX}:c
|
||||||
|
|
||||||
|
MAINTAINER= fmysh@iijmio-mail.jp
|
||||||
|
COMMENT= Python bindings for Shapelib
|
||||||
|
|
||||||
|
USE_PYTHON= yes
|
||||||
|
USE_PYDISTUTILS= yes
|
||||||
|
|
||||||
|
SHAPELIB= shapelib-1.2.10
|
||||||
|
USE_LDCONFIG= yes
|
||||||
|
|
||||||
|
PORTDOCS= NEWS README
|
||||||
|
PORTEXAMPLES= pytest.py
|
||||||
|
|
||||||
|
post-extract:
|
||||||
|
${LN} -s ${WRKDIR}/${SHAPELIB} ${WRKDIR}/shapelib
|
||||||
|
|
||||||
|
post-install:
|
||||||
|
.if !defined(NOPORTDOCS)
|
||||||
|
${MKDIR} ${DOCSDIR}
|
||||||
|
.for f in ${PORTDOCS}
|
||||||
|
${INSTALL_MAN} ${WRKSRC}/$f ${DOCSDIR}
|
||||||
|
.endfor
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.if !defined(NOPORTEXAMPLES)
|
||||||
|
${MKDIR} ${EXAMPLESDIR}
|
||||||
|
.for f in ${PORTEXAMPLES}
|
||||||
|
${INSTALL_DATA} ${WRKSRC}/$f ${EXAMPLESDIR}
|
||||||
|
.endfor
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
6
devel/py-pyshapelib/distinfo
Normal file
6
devel/py-pyshapelib/distinfo
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
MD5 (pyshapelib-0.3.tar.gz) = 41372e56f96167ed8202eb6f747360a4
|
||||||
|
SHA256 (pyshapelib-0.3.tar.gz) = 492d5050135c05e8213eecfcaedbccebf8e960a4407615a5d72af4696f409ad1
|
||||||
|
SIZE (pyshapelib-0.3.tar.gz) = 40427
|
||||||
|
MD5 (shapelib-1.2.10.tar.gz) = 4d96bd926167193d27bf14d56e2d484e
|
||||||
|
SHA256 (shapelib-1.2.10.tar.gz) = afa54d60369e49a3d2ebcd1ffca75104bdc85d7f539b81aec8a6e2d311ca6b78
|
||||||
|
SIZE (shapelib-1.2.10.tar.gz) = 167219
|
24
devel/py-pyshapelib/pkg-descr
Normal file
24
devel/py-pyshapelib/pkg-descr
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
|
||||||
|
Python bindings for Shapelib
|
||||||
|
============================
|
||||||
|
|
||||||
|
These are three python modules for shapelib:
|
||||||
|
|
||||||
|
shapelib read/write shapefiles
|
||||||
|
|
||||||
|
dbflib read/write dbf files
|
||||||
|
|
||||||
|
shptree quadtree for shapes
|
||||||
|
|
||||||
|
Shapelib is a free software library for reading and writing ESRI shape
|
||||||
|
files and can be found at http://gdal.velocet.ca/projects/shapelib.
|
||||||
|
|
||||||
|
The bindings were partly created with SWIG, a tool that can generate
|
||||||
|
wrappers of C and C++ libraries for a variety of scripting languages.
|
||||||
|
It's homepage is http://www.swig.org.
|
||||||
|
|
||||||
|
The bindings themselves don't have a homepage at the moment, but the
|
||||||
|
source tarballs/zip files can be downloaded from
|
||||||
|
http://ftp.intevation.de/users/bh/pyshapelib/
|
||||||
|
|
||||||
|
WWW: http://ftp.intevation.de/users/bh/pyshapelib/
|
9
devel/py-pyshapelib/pkg-plist
Normal file
9
devel/py-pyshapelib/pkg-plist
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
%%PYTHON_SITELIBDIR%%/dbflib.py
|
||||||
|
%%PYTHON_SITELIBDIR%%/dbflib.pyc
|
||||||
|
%%PYTHON_SITELIBDIR%%/dbflib.pyo
|
||||||
|
%%PYTHON_SITELIBDIR%%/dbflibc.so
|
||||||
|
%%PYTHON_SITELIBDIR%%/shapelib.py
|
||||||
|
%%PYTHON_SITELIBDIR%%/shapelib.pyc
|
||||||
|
%%PYTHON_SITELIBDIR%%/shapelib.pyo
|
||||||
|
%%PYTHON_SITELIBDIR%%/shapelibc.so
|
||||||
|
%%PYTHON_SITELIBDIR%%/shptree.so
|
Loading…
Add table
Reference in a new issue