commit: 7b5a693417c8a64b7cfbb3bc243b409d9f6bfea2 Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr> AuthorDate: Tue Jan 6 10:04:56 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Jan 7 02:50:10 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b5a6934
dev-libs/libxdg-basedir: update EAPI 7 -> 8 and therefore removal of --disable-static use default in src_install Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr> Part-of: https://github.com/gentoo/gentoo/pull/45271 Closes: https://github.com/gentoo/gentoo/pull/45271 Signed-off-by: Sam James <sam <AT> gentoo.org> .../libxdg-basedir/libxdg-basedir-1.2.3-r1.ebuild | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/dev-libs/libxdg-basedir/libxdg-basedir-1.2.3-r1.ebuild b/dev-libs/libxdg-basedir/libxdg-basedir-1.2.3-r1.ebuild new file mode 100644 index 000000000000..0f0d1353e6f2 --- /dev/null +++ b/dev-libs/libxdg-basedir/libxdg-basedir-1.2.3-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Small library to access XDG Base Directories Specification paths" +HOMEPAGE="https://github.com/devnev/libxdg-basedir" +SRC_URI="https://github.com/devnev/libxdg-basedir/archive/${P}.tar.gz" +S="${WORKDIR}/${PN}-${P}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86 ~x64-macos" +IUSE="doc" + +BDEPEND="doc? ( app-text/doxygen )" + +src_prepare() { + default + + eautoreconf +} + +src_configure() { + econf $(use_enable doc doxygen-html) +} + +src_compile() { + emake + + if use doc; then + emake doxygen-doc + fi +} + +src_install() { + use doc && local HTML_DOCS=( doc/html/. ) + + default + + find "${ED}" -type f -name '*.la' -delete || die +}
