diff options
author | Matt Turner <mattst88@gentoo.org> | 2021-06-06 14:30:33 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2021-06-06 14:49:14 -0700 |
commit | 942d9bf858d4464a0165a9e7bc7ed3cb0ee740d1 (patch) | |
tree | d9060ab0f2840e7fdd8f537750639ba72d5c2c3d /net-libs/libmbim | |
parent | media-gfx/eog: Version bump to 40.2 (diff) | |
download | gentoo-942d9bf858d4464a0165a9e7bc7ed3cb0ee740d1.tar.gz gentoo-942d9bf858d4464a0165a9e7bc7ed3cb0ee740d1.tar.bz2 gentoo-942d9bf858d4464a0165a9e7bc7ed3cb0ee740d1.zip |
net-libs/libmbim: Version bump to 1.24.8
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'net-libs/libmbim')
-rw-r--r-- | net-libs/libmbim/Manifest | 1 | ||||
-rw-r--r-- | net-libs/libmbim/libmbim-1.24.8.ebuild | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/net-libs/libmbim/Manifest b/net-libs/libmbim/Manifest index af52bc2a7e40..ac47a5a4bc69 100644 --- a/net-libs/libmbim/Manifest +++ b/net-libs/libmbim/Manifest @@ -1 +1,2 @@ DIST libmbim-1.24.6.tar.xz 511468 BLAKE2B 89c4fa25573d4e58ec993e4fa24e0ff3ab6146c905fd3110240d2dbd3ba20af8c135e5eb552b2c48b1166444e52023e314d70d4fe5904ede5e2c6d3d05724955 SHA512 b0b15aa5ffdc65e9d7af211df771f85021488258f7c50638ad109173a61ef38872b9ab42005cd972fd3cb24e617bd3fe7b0b79d335e2144558daa218fb2c4653 +DIST libmbim-1.24.8.tar.xz 517872 BLAKE2B ba4d44ea18ecb412d046b1c1cbd1167bd1cf0a1430486dbf760731950b088e66b25c5c870f2e1a49ea78e43bc15fdbac9efed56afa35127d33f6377325677386 SHA512 32a1ed379fb2799c8490058a16f819620290c2a08d0dacacdc7db4a31fb66a4d9c449b4b2d8fd6de898da28815a6c32e3d97a802970115ac2869e7fec0d841af diff --git a/net-libs/libmbim/libmbim-1.24.8.ebuild b/net-libs/libmbim/libmbim-1.24.8.ebuild new file mode 100644 index 000000000000..322e88fb7990 --- /dev/null +++ b/net-libs/libmbim/libmbim-1.24.8.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Mobile Broadband Interface Model (MBIM) modem protocol helper library" +HOMEPAGE="https://www.freedesktop.org/wiki/Software/libmbim/ https://gitlab.freedesktop.org/mobile-broadband/libmbim" +SRC_URI="https://www.freedesktop.org/software/libmbim/${P}.tar.xz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86" +IUSE="udev" + +RDEPEND=">=dev-libs/glib-2.48:2 + udev? ( dev-libs/libgudev:= )" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/glib-utils + dev-util/gtk-doc-am + virtual/pkgconfig +" + +src_configure() { + econf \ + --disable-Werror \ + --disable-static \ + --disable-gtk-doc \ + $(use_with udev) +} + +src_install() { + default + find "${ED}" -name '*.la' -delete || die +} |