Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/libfprint/
Date: Fri, 27 Dec 2019 13:23:09
Message-Id: 1577452983.d3e1097f722ad278e8b5b552c58d47ae6d5e2145.zlogene@gentoo
1 commit: d3e1097f722ad278e8b5b552c58d47ae6d5e2145
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 27 13:22:20 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 27 13:23:03 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3e1097f
7
8 sys-auth/libfprint: Version bump (v1.90.0)
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.16
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 sys-auth/libfprint/Manifest | 1 +
14 sys-auth/libfprint/libfprint-1.90.0.ebuild | 45 ++++++++++++++++++++++++++++++
15 2 files changed, 46 insertions(+)
16
17 diff --git a/sys-auth/libfprint/Manifest b/sys-auth/libfprint/Manifest
18 index d811163093f..421c4db1545 100644
19 --- a/sys-auth/libfprint/Manifest
20 +++ b/sys-auth/libfprint/Manifest
21 @@ -1,2 +1,3 @@
22 DIST libfprint-0.99.0.tar.gz 473925 BLAKE2B 799e3600393e4b25f7b0685ff0456ca391e5fcaef36e5b4475371cd07c848e40820dbbdc5a241fe11c6ee08b818380967129f85e177b5d8714b9dbc4d7b68ea1 SHA512 eca1d45baa23b7db1fcc5d7a9a396fe504aadc6ec2e68da32b5415fb0fff1227566d579271e0b34895ce7f3baa55314a0ccd20bb8c4adba253063b7b61284748
23 DIST libfprint-1.0.tar.gz 475347 BLAKE2B cb560898cec11861c4529c0c37c328f74eaf271c1932ca5126b7bd6c82fafee24aff393c0fe223fef018a34a409647065d5f98a999c00f0e7a879e33bdfcd3cb SHA512 2d7f569368035cce0a579ef3412a1961c28aab254ae6174ce9ad11ce97b3dce824d0c6123adac12718cb074439e4d5b93bf978e5341824f179231d1faa219a26
24 +DIST libfprint-1.90.0.tar.gz 1760869 BLAKE2B fd0692e5a4924101399684289501d607da2183acf7f7b7c7ce22b7ed301fe0da75cb0b88c0642e1b1b6f82fe7d8505616ead456b48c3b0449201fd91669ce782 SHA512 99d7a62b3a1c329a2c13f508c98b60c6311fd01cd165fca12de5873305980167dd79c7d75edc74f53fce5066047e814fa654c6ac4f3f12342b57afa5b2dbe6d3
25
26 diff --git a/sys-auth/libfprint/libfprint-1.90.0.ebuild b/sys-auth/libfprint/libfprint-1.90.0.ebuild
27 new file mode 100644
28 index 00000000000..67d5a6c7c81
29 --- /dev/null
30 +++ b/sys-auth/libfprint/libfprint-1.90.0.ebuild
31 @@ -0,0 +1,45 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit meson udev
38 +
39 +DESCRIPTION="library to add support for consumer fingerprint readers"
40 +HOMEPAGE="https://cgit.freedesktop.org/libfprint/libfprint/ https://github.com/freedesktop/libfprint"
41 +SRC_URI="https://github.com/freedesktop/libfprint/archive/V_$(ver_rs 0-3 "_").tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="LGPL-2.1"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
46 +IUSE="examples"
47 +
48 +RDEPEND="dev-libs/glib:2
49 + dev-libs/nss
50 + >=dev-libs/libgusb-0.3.1
51 + virtual/libusb:1=
52 + x11-libs/gtk+:3
53 + x11-libs/pixman
54 + x11-libs/libX11
55 + x11-libs/libXv"
56 +
57 +DEPEND="${RDEPEND}
58 + dev-util/gtk-doc"
59 +
60 +BDEPEND="virtual/pkgconfig"
61 +
62 +PATCHES=( ${FILESDIR}/${PN}-0.8.2-fix-implicit-declaration.patch )
63 +
64 +S="${WORKDIR}/${PN}-V_$(ver_rs 0-3 '_')"
65 +
66 +src_configure() {
67 + local emesonargs=(
68 + -Ddoc=false
69 + -Dgtk-examples=$(usex examples true false)
70 + -Ddrivers=all
71 + -Dudev_rules=true
72 + -Dudev_rules_dir=$(get_udevdir)/rules.d
73 + --libdir=/usr/$(get_libdir)
74 + )
75 + meson_src_configure
76 +}