# -*- 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           meson 1.0

name                gsettings-desktop-schemas
version             3.38.0
license             LGPL-2.1
set branch          [join [lrange [split ${version} .] 0 1] .]

description         gsettings-desktop-schemas contains a collection of GSettings schemas \
                    for settings shared by various components of a desktop.

long_description    {*}${description}

maintainers         {devans @dbevans} openmaintainer
categories          gnome
platforms           any
homepage            https://www.gnome.org
master_sites        gnome:sources/${name}/${branch}/

use_xz              yes

checksums           rmd160  338b1af688cfa2adb58a563a518bee25034cb759 \
                    sha256  5704c8266004b296036671f223c705dc046aa694a1b1abb87c67e7d2747a8c67 \
                    size    685868

supported_archs     noarch

depends_build-append \
                    port:pkgconfig \
                    port:python313

depends_lib         path:lib/pkgconfig/glib-2.0.pc:glib2 \
                    path:lib/pkgconfig/gobject-introspection-1.0.pc:gobject-introspection

# make sure post-install.py uses python3.13 not generic python3
post-patch {
    reinplace "s|#!.*|#!${prefix}/bin/python3.13|" ${worksrcpath}/build-aux/meson/post-install.py
}

# gobject-introspection uses g-ir-scanner, which uses $CC from env
if {${universal_possible} && [variant_isset universal]} {
    foreach arch ${configure.universal_archs} {
        lappend merger_build_env(${arch})  "CC=${configure.cc} -arch ${arch}"
        lappend merger_destroot_env(${arch})  "CC=${configure.cc} -arch ${arch}"
    }
} else {
    build.env-append       "CC=${configure.cc} ${configure.cc_archflags}"
    destroot.env-append    "CC=${configure.cc} ${configure.cc_archflags}"
}

post-activate {
    system "${prefix}/bin/glib-compile-schemas ${prefix}/share/glib-2.0/schemas"
}

livecheck.type      gnome
