gdal_1_11: remove old and unused version
This commit is contained in:
parent
032fc65fca
commit
363925961e
@ -1,67 +0,0 @@
|
|||||||
{ lib, stdenv, fetchurl, unzip, libjpeg, libtiff, zlib
|
|
||||||
, postgresql, mysql57, libgeotiff, python, pythonPackages, proj, geos, openssl
|
|
||||||
, libpng }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
pname = "gdal";
|
|
||||||
version = "1.11.5";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "https://download.osgeo.org/gdal/${version}/${pname}-${version}.tar.xz";
|
|
||||||
sha256 = "0hphxzvy23v3vqxx1y22hhhg4cypihrb8555y12nb4mrhzlw7zfl";
|
|
||||||
};
|
|
||||||
|
|
||||||
nativeBuildInputs = [ unzip ];
|
|
||||||
buildInputs = [ libjpeg libtiff libgeotiff libpng python pythonPackages.numpy proj openssl ];
|
|
||||||
|
|
||||||
patches = [
|
|
||||||
# This ensures that the python package is installed into gdal's prefix,
|
|
||||||
# rather than trying to install into python's prefix.
|
|
||||||
./python.patch
|
|
||||||
];
|
|
||||||
|
|
||||||
hardeningDisable = [ "format" "fortify" ];
|
|
||||||
|
|
||||||
# Don't use optimization for gcc >= 4.3. That's said to be causing segfaults.
|
|
||||||
# Unset CC and CXX as they confuse libtool.
|
|
||||||
preConfigure = "export CFLAGS=-O0 CXXFLAGS=-O0; unset CC CXX";
|
|
||||||
|
|
||||||
configureFlags = [
|
|
||||||
"--with-jpeg=${libjpeg.dev}"
|
|
||||||
"--with-libtiff=${libtiff.dev}" # optional (without largetiff support)
|
|
||||||
"--with-libpng=${libpng.dev}" # optional
|
|
||||||
"--with-libz=${zlib.dev}" # optional
|
|
||||||
|
|
||||||
"--with-pg=${postgresql}/bin/pg_config"
|
|
||||||
"--with-mysql=${mysql57.connector-c}/bin/mysql_config"
|
|
||||||
"--with-geotiff=${libgeotiff.dev}"
|
|
||||||
"--with-python" # optional
|
|
||||||
"--with-static-proj4=${proj}" # optional
|
|
||||||
"--with-geos=${geos}/bin/geos-config"# optional
|
|
||||||
];
|
|
||||||
|
|
||||||
# Allow use of old proj_api.h
|
|
||||||
NIX_CFLAGS_COMPILE = "-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1";
|
|
||||||
|
|
||||||
# Prevent this:
|
|
||||||
#
|
|
||||||
# Checking .pth file support in /nix/store/xkrmb8xnvqxzjwsdmasqmsdh1a5y2y99-gdal-1.11.2/lib/python2.7/site-packages/
|
|
||||||
# /nix/store/pbi1lgank10fy0xpjckbdpgacqw34dsz-python-2.7.9/bin/python -E -c pass
|
|
||||||
# TEST FAILED: /nix/store/xkrmb8xnvqxzjwsdmasqmsdh1a5y2y99-gdal-1.11.2/lib/python2.7/site-packages/ does NOT support .pth files
|
|
||||||
# error: bad install directory or PYTHONPATH
|
|
||||||
preBuild = ''
|
|
||||||
pythonInstallDir=$out/lib/${python.libPrefix}/site-packages
|
|
||||||
mkdir -p $pythonInstallDir
|
|
||||||
export PYTHONPATH=''${PYTHONPATH:+''${PYTHONPATH}:}$pythonInstallDir
|
|
||||||
'';
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Translator library for raster geospatial data formats";
|
|
||||||
homepage = "https://www.gdal.org/";
|
|
||||||
license = lib.licenses.mit;
|
|
||||||
maintainers = [ lib.maintainers.marcweber ];
|
|
||||||
platforms = with lib.platforms; linux ++ darwin;
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,17 +0,0 @@
|
|||||||
diff --git a/swig/python/GNUmakefile.old b/swig/python/GNUmakefile
|
|
||||||
index b4d5e90..2160b83 100644
|
|
||||||
--- a/swig/python/GNUmakefile
|
|
||||||
+++ b/swig/python/GNUmakefile
|
|
||||||
@@ -67,11 +67,7 @@ egg:
|
|
||||||
|
|
||||||
install:
|
|
||||||
|
|
||||||
-ifeq ($(PY_HAVE_SETUPTOOLS),1)
|
|
||||||
- $(PYTHON) setup.py install
|
|
||||||
-else
|
|
||||||
$(PYTHON) setup.py install --prefix=$(DESTDIR)$(prefix)
|
|
||||||
-endif
|
|
||||||
|
|
||||||
for f in $(SCRIPTS) ; do $(INSTALL) ./scripts/$$f $(DESTDIR)$(INST_BIN) ; done
|
|
||||||
|
|
||||||
|
|
@ -14266,8 +14266,6 @@ in
|
|||||||
autoreconfHook = buildPackages.autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
gdal_1_11 = callPackage ../development/libraries/gdal/gdal-1_11.nix { };
|
|
||||||
|
|
||||||
gdal_2 = callPackage ../development/libraries/gdal/2.4.nix { };
|
gdal_2 = callPackage ../development/libraries/gdal/2.4.nix { };
|
||||||
|
|
||||||
gdcm = callPackage ../development/libraries/gdcm { };
|
gdcm = callPackage ../development/libraries/gdcm { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user