114 lines
2.8 KiB
Makefile
114 lines
2.8 KiB
Makefile
# $OpenBSD: Makefile,v 1.44 2016/03/11 20:28:25 naddy Exp $
|
|
|
|
COMMENT-main = translator library for geospatial data formats
|
|
COMMENT-python =python bindings and utilities for GDAL
|
|
COMMENT-perl = perl bindings for GDAL
|
|
|
|
V = 2.0.2
|
|
DISTNAME = gdal-${V}
|
|
SHARED_ONLY = Yes
|
|
|
|
PKGNAME-main = ${DISTNAME}
|
|
PKGNAME-python =py-${DISTNAME}
|
|
PKGNAME-perl = p5-Geo-GDAL-${V}
|
|
|
|
SHARED_LIBS = gdal 24.0 #20.2
|
|
CATEGORIES = geo devel
|
|
|
|
HOMEPAGE = http://www.gdal.org/
|
|
|
|
MAINTAINER = Landry Breuil <landry@openbsd.org>
|
|
|
|
# MIT/X
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
MASTER_SITES = http://download.osgeo.org/gdal/${V}/
|
|
|
|
MODULES = perl lang/python devel/gettext
|
|
|
|
MULTI_PACKAGES = -main -python -perl
|
|
|
|
LIB_DEPENDS-main = ${LIB_DEPENDS} \
|
|
graphics/tiff \
|
|
net/curl \
|
|
databases/postgresql \
|
|
geo/geos \
|
|
geo/spatialite/libspatialite \
|
|
devel/libidn \
|
|
devel/json-c \
|
|
graphics/png \
|
|
graphics/giflib \
|
|
graphics/jpeg \
|
|
graphics/jasper \
|
|
graphics/openjp2 \
|
|
devel/pcre \
|
|
devel/proj \
|
|
devel/geotiff
|
|
|
|
WANTLIB-main = ${WANTLIB} c expat m stdc++ z tiff openjp2 ssl crypto \
|
|
curl pq geos geos_c idn png gif jpeg jasper json-c geotiff \
|
|
proj pthread freexl pcre spatialite sqlite3 xml2 lzma nghttp2
|
|
|
|
|
|
LIB_DEPENDS-python = ${PKGNAME}:${BASE_PKGPATH},-main
|
|
WANTLIB-python = ${MODPY_WANTLIB} gdal m pthread stdc++
|
|
|
|
LIB_DEPENDS-perl = ${PKGNAME}:${BASE_PKGPATH},-main
|
|
WANTLIB-perl = gdal crypto curl expat geos_c geotiff gif idn \
|
|
jasper jpeg openjp2 m png pq ssl tiff z pthread \
|
|
json-c freexl pcre spatialite sqlite3 xml2 \
|
|
nghttp2 ${MODGETTEXT_WANTLIB}
|
|
|
|
RUN_DEPENDS += math/py-numpy
|
|
BUILD_DEPENDS += ${RUN_DEPENDS} devel/swig
|
|
|
|
MODPY_SETUPTOOLS = Yes
|
|
MODPY_EGG_VERSION = ${V}
|
|
MODPY_ADJ_FILES = swig/python/scripts/*.py
|
|
|
|
MAKE_FILE = GNUmakefile
|
|
MAKE_FLAGS = LIBTOOL_FINISH=:
|
|
USE_GMAKE = Yes
|
|
NO_TEST = Yes
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -pthread"
|
|
INSTALL_TARGET = install install-man
|
|
|
|
CONFIGURE_ARGS =--without-hdf5 \
|
|
--without-cfitsio \
|
|
--without-netcdf \
|
|
--without-xerces \
|
|
--without-mysql \
|
|
--without-odbc \
|
|
--without-oci \
|
|
--without-grass \
|
|
--without-idb \
|
|
--without-sde \
|
|
--without-libgrass \
|
|
--without-php \
|
|
--without-ruby \
|
|
--with-pg=${LOCALBASE}/bin/pg_config \
|
|
--with-python \
|
|
--with-perl \
|
|
--with-geos \
|
|
--with-freexl=${LOCALBASE} \
|
|
--with-spatialite=${LOCALBASE} \
|
|
--with-png=${LOCALBASE} \
|
|
--with-geotiff=${LOCALBASE} \
|
|
--with-libtiff=${LOCALBASE} \
|
|
--with-curl=${LOCALBASE} \
|
|
--with-gif=${LOCALBASE} \
|
|
--with-jpeg=${LOCALBASE} \
|
|
--with-libjson-c=${LOCALBASE} \
|
|
--with-jasper=${LOCALBASE}
|
|
|
|
post-build:
|
|
# fix manpages doubled .TH lines/sections, http://trac.osgeo.org/gdal/ticket/6048
|
|
sed -i -e '2,5d' ${WRKSRC}/man/man1/*.1
|
|
|
|
post-install:
|
|
rm ${PREFIX}/man/man1/_home_rouault_dist_wrk_gdal_apps_.1
|
|
|
|
.include <bsd.port.mk>
|