You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
cf569f1e94
- remove patch-build_with_install_name_dir.diff - add patch-gtiffdataset.diff
52 lines
1.7 KiB
Tcl
52 lines
1.7 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
PortSystem 1.0
|
|
PortGroup python 1.0
|
|
PortGroup select 1.0
|
|
|
|
name py-gdal
|
|
# keep version in sync with gdal; rebuilt after gdal update
|
|
version 3.13.1
|
|
revision 0
|
|
|
|
categories-append gis
|
|
license MIT
|
|
maintainers {petr @petrrr} {yahoo.com:n_larsson @nilason} openmaintainer
|
|
|
|
description GDAL: Geospatial Data Abstraction Library
|
|
long_description This Python package and extensions are a number of tools for programming \
|
|
and manipulating the GDAL Geospatial Data Abstraction Library.
|
|
|
|
homepage https://www.gdal.org
|
|
|
|
checksums rmd160 3480d6ecd9b7688ec456925e05b65951cbbc11c4 \
|
|
sha256 94bb64d729ce73ceb75a314a15cba92696cdd854d99b6bf6b88a7b551227db74 \
|
|
size 940649
|
|
|
|
python.versions 310 311 312 313 314
|
|
|
|
if {${name} ne ${subport}} {
|
|
compiler.cxx_standard 2011
|
|
compiler.thread_local_storage yes
|
|
|
|
depends_run-append \
|
|
port:gdal_select
|
|
|
|
depends_lib-append \
|
|
port:gdal \
|
|
port:py${python.version}-numpy
|
|
|
|
post-destroot {
|
|
set docdir ${prefix}/share/doc/${subport}
|
|
xinstall -d ${destroot}${docdir}
|
|
xinstall -m 0644 -W ${worksrcpath} README.rst ${destroot}${docdir}
|
|
|
|
set destroot_sel_dir ${destroot}${prefix}/etc/select/
|
|
reinplace -q "s|@PYVER@|${python.branch}|" ${destroot_sel_dir}/gdal/py-gdal
|
|
move ${destroot_sel_dir}/gdal/py-gdal ${destroot_sel_dir}/gdal/py${python.version}-gdal
|
|
}
|
|
|
|
select.group gdal
|
|
select.file ${filespath}/py-gdal
|
|
}
|