dev-libs/libxdg-basedir - 1.2.3 (gentoo)

Search

Package Information

Description:
Small library to access XDG Base Directories Specification paths
Homepage:
https://github.com/devnev/libxdg-basedir
License:
MIT

Ebuild Details

Version EAPI Keywords Slot
1.2.3 7 amd64 arm arm64 ~hppa ppc ppc64 ~riscv x86 ~x64-macos 0
View Raw Ebuild
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

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 \
		--disable-static \
		$(use_enable doc doxygen-html)
}

src_compile() {
	emake

	if use doc; then
		emake doxygen-doc
	fi
}

src_install() {
	emake DESTDIR="${D}" install

	use doc && local HTML_DOCS=( doc/html/. )
	einstalldocs

	find "${ED}" -type f -name '*.la' -delete || die
}

USE Flags

doc

Dependencies

BDEPEND

doc? ( app-text/doxygen )

Manifest for 1.2.3

Type File Size Source URLs
DIST libxdg-basedir-1.2.3.tar.gz 30971 bytes https://github.com/devnev/libxdg-basedir/archive/libxdg-basedir-1.2.3.tar.gz