From d0fb8d3b4c1db1d8fd9d9eddb5906bd41a685b2b Mon Sep 17 00:00:00 2001 From: Ryan Fox Date: Sat, 25 Mar 2023 23:56:14 -0700 Subject: [PATCH] dev-libs/zix: new package, add 9999 --- dev-libs/zix/metadata.xml | 11 +++++++++++ dev-libs/zix/zix-9999.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 dev-libs/zix/metadata.xml create mode 100644 dev-libs/zix/zix-9999.ebuild 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 +}