diff options
author | Mike Gilbert <floppym@gentoo.org> | 2021-07-29 17:09:11 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2021-07-29 17:14:43 -0400 |
commit | 06568cb8c27a54fb22e9907761ad683916b5079b (patch) | |
tree | abb34ff9c51dc2c589ca886fe9a03d971b04a0bc /dev-libs/libgudev | |
parent | www-plugins/chrome-binary-plugins: automated update (93.0.4577.18) (diff) | |
download | gentoo-06568cb8c27a54fb22e9907761ad683916b5079b.tar.gz gentoo-06568cb8c27a54fb22e9907761ad683916b5079b.tar.bz2 gentoo-06568cb8c27a54fb22e9907761ad683916b5079b.zip |
dev-libs/libgudev: wire up tests
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'dev-libs/libgudev')
-rw-r--r-- | dev-libs/libgudev/libgudev-236-r1.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/dev-libs/libgudev/libgudev-236-r1.ebuild b/dev-libs/libgudev/libgudev-236-r1.ebuild new file mode 100644 index 000000000000..db6775ef55f1 --- /dev/null +++ b/dev-libs/libgudev/libgudev-236-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 2015-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson-multilib + +DESCRIPTION="GObject bindings for libudev" +HOMEPAGE="https://wiki.gnome.org/Projects/libgudev" +SRC_URI="https://download.gnome.org/sources/libgudev/${PV}/${P}.tar.xz" + +LICENSE="LGPL-2.1+" +SLOT="0/0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +IUSE="introspection static-libs test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/glib-2.38.0:2[${MULTILIB_USEDEP},static-libs?] + >=virtual/libudev-199:=[${MULTILIB_USEDEP},static-libs(-)?] + introspection? ( >=dev-libs/gobject-introspection-1.31.1 ) +" +DEPEND="${RDEPEND} + test? ( dev-util/umockdev[${MULTILIB_USEDEP}] ) +" +BDEPEND=" + dev-util/glib-utils + virtual/pkgconfig +" + +src_prepare() { + default + # avoid multilib checksum mismatch + sed -i -e 's:@filename@:gudev/gudevenums.h:' gudev/gudevenumtypes.h.template || die +} + +multilib_src_configure() { + local emesonargs=( + $(meson_native_use_feature introspection) + -Dgtk_doc=false + -Ddefault_library=$(usex static-libs both shared) + $(meson_feature test tests) + -Dvapi=disabled + ) + meson_src_configure +} |