# -*- 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.0
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  aac72ef3131c62464e4f24d063d05944da74b667 \
                    sha256  b440bcecbcdb96690a74da223142f2d51c6a540ee78674e10f9dca933d0e9006 \
                    size    940507

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
}
