# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 PYTHON_COMPAT=( python3_{11..13} ) inherit autotools python-single-r1 DESCRIPTION="Library and tools to access the Virtual Hard Disk (VHD) image format" HOMEPAGE="https://github.com/libyal/libvhdi" SRC_URI="https://github.com/libyal/${PN}/releases/download/${PV}/${PN}-alpha-${PV}.tar.gz" LICENSE="LGPL-3" SLOT="0" KEYWORDS="~amd64" IUSE="debug +fuse unicode python nls static static-libs" REQUIRED_USE="static? ( static-libs ) ${PYTHON_REQUIRED_USE}" RDEPEND="${PYTHON_DEPS} fuse? ( sys-fs/fuse:0=[static-libs?] )" DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" src_prepare() { eautoreconf eapply_user } src_configure() { econf \ $(usex debug "--enable-debug-output --enable-verbose-output") \ $(use_with fuse libfuse) \ $(use_enable unicode wide-character-type) \ $(use_enable static static-executables) \ $(use_enable static-libs static) \ $(use_enable nls) \ $(use_enable python) } src_install() { default # see https://projects.gentoo.org/qa/policy-guide/installed-files.html#pg0303 find "${ED}" -name '*.la' -delete || die }