diff --git a/dev-libs/zix/metadata.xml b/dev-libs/zix/metadata.xml new file mode 100644 index 0000000..0e5aa47 --- /dev/null +++ b/dev-libs/zix/metadata.xml @@ -0,0 +1,11 @@ + + + + + flewkey@2a03.party + Ryan Fox + + + drobilla/zix + + diff --git a/dev-libs/zix/zix-9999.ebuild b/dev-libs/zix/zix-9999.ebuild new file mode 100644 index 0000000..8ac5a54 --- /dev/null +++ b/dev-libs/zix/zix-9999.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit git-r3 meson +EGIT_REPO_URI="https://gitlab.com/drobilla/zix.git" + +DESCRIPTION="A C data structures library" +HOMEPAGE="https://gitlab.com/drobilla/zix" +LICENSE="ISC" +SLOT="0" +IUSE="doc" + +DEPEND="" +RDEPEND="${DEPEND}" +BDEPEND="doc? ( dev-python/sphinx )" + +src_configure() { + local emesonargs=( + $(meson_feature doc docs) + ) + meson_src_configure +}