View | Details | Raw Unified | Return to bug 237969
Collapse All | Expand All

(-)py-pyproj/Makefile (-6 / +11 lines)
Lines 2-8 Link Here
2
# $FreeBSD: head/graphics/py-pyproj/Makefile 494803 2019-03-06 15:13:37Z wen $
2
# $FreeBSD: head/graphics/py-pyproj/Makefile 494803 2019-03-06 15:13:37Z wen $
3
3
4
PORTNAME=	pyproj
4
PORTNAME=	pyproj
5
PORTVERSION=	1.9.6
5
PORTVERSION=	2.1.3
6
CATEGORIES=	graphics python geography
6
CATEGORIES=	graphics python geography
7
MASTER_SITES=	CHEESESHOP
7
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
Lines 16-29 Link Here
16
LIB_DEPENDS=	libproj.so:graphics/proj
16
LIB_DEPENDS=	libproj.so:graphics/proj
17
17
18
USES=		python
18
USES=		python
19
USE_PYTHON=	distutils autoplist concurrent
19
USE_PYTHON=	autoplist concurrent cython distutils
20
20
21
MAKE_ENV=	PROJ_DIR=${LOCALBASE}
21
MAKE_ENV=	PROJ_DIR=${LOCALBASE}
22
22
23
PORTDOCS=	*
23
PORTDOCS=	*
24
PORTDOCS1=	Changelog README.md docs/*
24
PORTDOCS1=	README.md docs/*
25
PORTEXAMPLES=	datum_shift.py geodtest.py sample.out \
25
PORTEXAMPLES=	sample.out \
26
		test.py test2.py test_datum.py test_transform.py
26
		test.py test_awips221.py test_crs.py test_datadir.py \
27
		test_datum.py test_datum_shift.py test_doctest_wrapper.py \
28
		test_exception_logging.py test_geod.py test_pickle.py \
29
		test_transform.py test_transformer.py
27
30
28
OPTIONS_DEFINE=	DOCS EXAMPLES
31
OPTIONS_DEFINE=	DOCS EXAMPLES
29
32
Lines 32-38 Link Here
32
35
33
post-install-DOCS-on:
36
post-install-DOCS-on:
34
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
37
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
35
	${INSTALL_DATA} ${PORTDOCS1:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
38
	${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}
39
	(cd ${WRKSRC}/docs/ && \
40
		${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR} "! -name .buildinfo" )
36
41
37
post-install-EXAMPLES-on:
42
post-install-EXAMPLES-on:
38
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
43
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
(-)py-pyproj/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1550151151
1
TIMESTAMP = 1558185597
2
SHA256 (pyproj-1.9.6.tar.gz) = e0c02b1554b20c710d16d673817b2a89ff94738b0b537aead8ecb2edc4c4487b
2
SHA256 (pyproj-2.1.3.tar.gz) = 99c52788b01a7bb9a88024bf4d40965c0a66a93d654600b5deacf644775f424d
3
SIZE (pyproj-1.9.6.tar.gz) = 2797999
3
SIZE (pyproj-2.1.3.tar.gz) = 521154
(-)py-pyproj/pkg-descr (-1 / +1 lines)
Lines 4-10 Link Here
4
4
5
The Proj class can convert from geographic (longitude,latitude)
5
The Proj class can convert from geographic (longitude,latitude)
6
to native map projection (x,y) coordinates and vice versa, or
6
to native map projection (x,y) coordinates and vice versa, or
7
from one map projection coordinate system directly to another. 
7
from one map projection coordinate system directly to another.
8
The module variable pj_list is a dictionary containing all the
8
The module variable pj_list is a dictionary containing all the
9
available projections and their descriptions.
9
available projections and their descriptions.
10
10

Return to bug 237969