# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 PYTHON_COMPAT=( python3_{10..12} ) inherit python-any-r1 vala toolchain-funcs if [[ -z ${PV%%*9999} ]]; then EGIT_REPO_URI="https://github.com/johanmattssonm/${PN}.git" inherit git-r3 else MY_PV="58c28cb" [[ -n ${PV%%*_p*} ]] && MY_PV="v${PV}" SRC_URI=" mirror://githubcl/johanmattssonm/${PN}/tar.gz/${MY_PV} -> ${P}.tar.gz " RESTRICT="primaryuri" KEYWORDS="~amd64 ~x86" S="${WORKDIR}/${PN}-${MY_PV#v}" fi DESCRIPTION="XML parser for Vala and C programs" HOMEPAGE="https://birdfont.org/xmlbird.php" LICENSE="LGPL-3" SLOT="0" IUSE="" RDEPEND="" DEPEND=" ${RDEPEND} ${PYTHON_DEPS} $(vala_depend) " pkg_setup() { vala_setup python-any-r1_pkg_setup } src_configure() { "${PYTHON}" ./configure \ --prefix "${EPREFIX}/usr" \ --cc "$(tc-getCC)" \ --valac "${VALAC}" \ --cflags "${CFLAGS}" \ --ldflags "${LDFLAGS}" \ --libdir "/$(get_libdir)" \ || die } src_compile() { "${PYTHON}" ./build.py || die } src_install() { "${PYTHON}" ./install.py \ --dest "${D}" \ || die einstalldocs }