# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # $Id: d83b3f15f69b96fdb9b96e54188ec5576829924f $ EAPI=8 inherit autotools DESCRIPTION="Userspace utilities for the exFAT filesystem" HOMEPAGE="https://github.com/exfatprogs/exfatprogs" if [[ ${PV} == *9999 ]] ; then inherit git-r3 EGIT_REPO_URI="https://github.com/exfatprogs/exfatprogs.git" else VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/hclee.asc inherit verify-sig SRC_URI=" https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.xz verify-sig? ( https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.xz.asc ) " KEYWORDS="~amd64 ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" BDEPEND="verify-sig? ( sec-keys/openpgp-keys-hclee )" fi LICENSE="GPL-2" SLOT="0" RDEPEND=" !sys-fs/exfat-utils sys-apps/util-linux elibc_musl? ( sys-libs/fts-standalone ) " DEPEND="${RDEPEND}" BDEPEND+=" virtual/pkgconfig " src_prepare() { default sed -i '/ENABLE_DOSATTR/s@==@=@' configure.ac || die #[[ ${PV} == *9999 ]] && eautoreconf }