mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-07 21:55:04 +02:00
Change was created by running the following command:: ekeyword ^ia64 */*/*.ebuild Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
47 lines
996 B
Bash
47 lines
996 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit gnome.org meson vala
|
|
|
|
DESCRIPTION="HTTP web service mocking library"
|
|
HOMEPAGE="https://gitlab.freedesktop.org/pwithnall/uhttpmock"
|
|
SRC_URI="https://gitlab.freedesktop.org/pwithnall/${PN}/-/archive/${PV}/${P}.tar.bz2"
|
|
|
|
LICENSE="LGPL-2+"
|
|
SLOT="1.0"
|
|
|
|
IUSE="gtk-doc +introspection vala"
|
|
REQUIRED_USE="vala? ( introspection )"
|
|
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv sparc x86"
|
|
|
|
RDEPEND="
|
|
>=dev-libs/glib-2.38.0:2
|
|
>=net-libs/libsoup-3.1.2:3.0
|
|
introspection? ( >=dev-libs/gobject-introspection-0.9.7:= )
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
gtk-doc? (
|
|
dev-util/gtk-doc
|
|
app-text/docbook-xml-dtd:4.3
|
|
)
|
|
vala? ( $(vala_depend) )
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
src_prepare() {
|
|
default
|
|
use vala && vala_setup
|
|
}
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
$(meson_use introspection)
|
|
$(meson_feature vala vapi)
|
|
$(meson_use gtk-doc gtk_doc)
|
|
)
|
|
meson_src_configure
|
|
}
|