diff options
Diffstat (limited to 'dev-libs/libxmlb/libxmlb-0.1.4.ebuild')
-rw-r--r-- | dev-libs/libxmlb/libxmlb-0.1.4.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-libs/libxmlb/libxmlb-0.1.4.ebuild b/dev-libs/libxmlb/libxmlb-0.1.4.ebuild deleted file mode 100644 index 5567d3bd9d55..000000000000 --- a/dev-libs/libxmlb/libxmlb-0.1.4.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MESON_AUTO_DEPEND="no" -inherit meson - -DESCRIPTION="Library to help create and query binary XML blobs" -HOMEPAGE="https://github.com/hughsie/libxmlb" -SRC_URI="https://github.com/hughsie/libxmlb/archive/${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="LGPL-2.1+" -SLOT="0" - -KEYWORDS="~amd64 ~x86" -IUSE="doc introspection stemmer test" - -RDEPEND=" - dev-libs/glib:2 - sys-apps/util-linux - stemmer? ( dev-libs/snowball-stemmer ) -" - -DEPEND=" - ${RDEPEND} - doc? ( dev-util/gtk-doc ) - introspection? ( dev-libs/gobject-introspection ) -" - -BDEPEND=" - >=dev-util/meson-0.47.0 - dev-util/ninja - virtual/pkgconfig -" - -src_configure() { - local emesonargs=( - -Dgtkdoc="$(usex doc true false)" - -Dintrospection="$(usex introspection true false)" - -Dstemmer="$(usex stemmer true false)" - -Dtests="$(usex test true false)" - ) - meson_src_configure -} |