1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
freebsd-ports/graphics/py-gdal/Makefile

40 lines
946 B
Makefile

# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= gdal
PORTVERSION= 1.10.1
CATEGORIES= graphics python
MASTER_SITES= http://download.osgeo.org/gdal/ \
ftp://ftp.remotesensing.org/pub/gdal/ \
LOCAL/sunpoet
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Python binding for GDAL
LICENSE= MIT
LIB_DEPENDS= libgdal.so:${PORTSDIR}/graphics/gdal
OPTIONS_DEFINE= NUMPY
NUMPY_DESC= Enable array support via NumPy
PYEASYINSTALL_ARCHDEP= yes
PYDISTUTILS_PKGNAME= ${PORTNAME:U}
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
WRKSRC= ${WRKDIR}/${DISTNAME}/swig/python
NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNUMPY}
BUILD_DEPENDS+= ${PKGNAMEPREFIX}numpy>=1.0.0:${PORTSDIR}/math/py-numpy
RUN_DEPENDS+= ${PKGNAMEPREFIX}numpy>=1.0.0:${PORTSDIR}/math/py-numpy
.endif
post-install:
${INSTALL_SCRIPT} ${WRKSRC}/scripts/*.py ${PREFIX}/bin/
.include <bsd.port.mk>