Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/libfprint/
Date: Wed, 20 Oct 2021 09:46:45
Message-Id: 1634723192.194cbbc6e4c33d67645335dbe4bd0cdeced656f3.sam@gentoo
1 commit: 194cbbc6e4c33d67645335dbe4bd0cdeced656f3
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 20 09:42:45 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 20 09:46:32 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=194cbbc6
7
8 sys-auth/libfprint: add 1.94.1
9
10 Closes: https://bugs.gentoo.org/812650
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 sys-auth/libfprint/Manifest | 1 +
14 sys-auth/libfprint/libfprint-1.94.1.ebuild | 50 ++++++++++++++++++++++++++++++
15 2 files changed, 51 insertions(+)
16
17 diff --git a/sys-auth/libfprint/Manifest b/sys-auth/libfprint/Manifest
18 index cd36771ff26..94b52c4e2ac 100644
19 --- a/sys-auth/libfprint/Manifest
20 +++ b/sys-auth/libfprint/Manifest
21 @@ -1,3 +1,4 @@
22 DIST libfprint-1.0.tar.gz 475347 BLAKE2B cb560898cec11861c4529c0c37c328f74eaf271c1932ca5126b7bd6c82fafee24aff393c0fe223fef018a34a409647065d5f98a999c00f0e7a879e33bdfcd3cb SHA512 2d7f569368035cce0a579ef3412a1961c28aab254ae6174ce9ad11ce97b3dce824d0c6123adac12718cb074439e4d5b93bf978e5341824f179231d1faa219a26
23 DIST libfprint-1.90.7.tar.gz 6375722 BLAKE2B d0cb085c3846e870ff31dc346b8e138ab994f03e428aa1887066e56243d10179f3674538841edc75e02c8b58fc9a2ea1e97999fa919bad033aa52c88742948fd SHA512 2781ebb337cbd37affe203a7d054651abc7de4f2f450cddfb78a29e4f93e6a698dd950cc9be7112f43c5a892309e75b11e46cdcb60359859aae3811468adc8af
24 DIST libfprint-1.92.0.tar.gz 8434928 BLAKE2B eba5d103a7ffc1d297bc276baac1f55dcc308bc18a4507fa53552044eb1a57bdb04cab0d81ee1b4022b5407f3cea06f72a686eac1b1cc5b178258b33e81b9216 SHA512 5f802aa65525bbe1c057053f9752052fe8f4e614ec22d373339cba42396a4e7ffe9cbdf7a7b732729e9aac7a4cde42fb5156949e83c574a30c0ad7b23ae4bc38
25 +DIST libfprint-1.94.1.tar.gz 10405046 BLAKE2B a46af62d3f7f8ad7f0815cecbd2a8c68c212e13785b968b0f0304473db5f4b7eb67d0bb74411c4828a51b9c22f6c86bd08ad564db623acf31715a1d0f7aa8389 SHA512 bae1de8378b9fb8fed1e292d96637a1e4a1c99a5a3f7735dae036eddb022bea2b5646bebf610b714338d4645e73b0968b14c20b1992d77d83a60c939c1509b44
26
27 diff --git a/sys-auth/libfprint/libfprint-1.94.1.ebuild b/sys-auth/libfprint/libfprint-1.94.1.ebuild
28 new file mode 100644
29 index 00000000000..d39bdf59336
30 --- /dev/null
31 +++ b/sys-auth/libfprint/libfprint-1.94.1.ebuild
32 @@ -0,0 +1,50 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit meson udev
39 +
40 +DESCRIPTION="Library to add support for consumer fingerprint readers"
41 +HOMEPAGE="https://cgit.freedesktop.org/libfprint/libfprint/ https://github.com/freedesktop/libfprint https://gitlab.freedesktop.org/libfprint/libfprint"
42 +SRC_URI="https://github.com/freedesktop/libfprint/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="LGPL-2.1+"
45 +SLOT="2"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
47 +IUSE="examples gtk-doc +introspection"
48 +
49 +RDEPEND="
50 + dev-libs/glib:2
51 + dev-libs/libgusb
52 + dev-libs/nss
53 + virtual/libusb:1=
54 + x11-libs/gtk+:3
55 + x11-libs/libX11
56 + x11-libs/libXv
57 + x11-libs/pixman
58 + !>=sys-auth/libfprint-1.90:0
59 +"
60 +
61 +DEPEND="${RDEPEND}"
62 +
63 +BDEPEND="
64 + virtual/pkgconfig
65 + gtk-doc? ( dev-util/gtk-doc )
66 + introspection? ( dev-libs/gobject-introspection )
67 +"
68 +
69 +PATCHES=( ${FILESDIR}/${PN}-0.8.2-fix-implicit-declaration.patch )
70 +
71 +src_configure() {
72 + local emesonargs=(
73 + $(meson_use examples gtk-examples)
74 + $(meson_use gtk-doc doc)
75 + $(meson_use introspection)
76 + -Ddrivers=all
77 + -Dudev_rules=enabled
78 + -Dudev_rules_dir=$(get_udevdir)/rules.d
79 + --libdir=/usr/$(get_libdir)
80 + )
81 + meson_src_configure
82 +}