Gentoo Archives: gentoo-commits

From: "Alexey Shvetsov (alexxy)" <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/libfprint: libfprint-0.5.1-r1.ebuild ChangeLog
Date: Mon, 05 May 2014 06:10:59
Message-Id: 20140505061053.F19932004C@flycatcher.gentoo.org
1 alexxy 14/05/05 06:10:53
2
3 Modified: ChangeLog
4 Added: libfprint-0.5.1-r1.ebuild
5 Log:
6 Add driver for vfs5011 fprintreaders, so thinkpad [x2,t4]40 will work
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key F82F92E6)
9
10 Revision Changes Path
11 1.33 sys-auth/libfprint/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/ChangeLog?rev=1.33&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/ChangeLog?rev=1.33&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/ChangeLog?r1=1.32&r2=1.33
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-auth/libfprint/ChangeLog,v
20 retrieving revision 1.32
21 retrieving revision 1.33
22 diff -u -r1.32 -r1.33
23 --- ChangeLog 20 Apr 2014 16:07:48 -0000 1.32
24 +++ ChangeLog 5 May 2014 06:10:53 -0000 1.33
25 @@ -1,6 +1,13 @@
26 # ChangeLog for sys-auth/libfprint
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/libfprint/ChangeLog,v 1.32 2014/04/20 16:07:48 xmw Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/libfprint/ChangeLog,v 1.33 2014/05/05 06:10:53 alexxy Exp $
30 +
31 +*libfprint-0.5.1-r1 (05 May 2014)
32 +
33 + 05 May 2014; Alexey Shvetsov <alexxy@g.o>
34 + +files/libfprint-0.5.1-add-vfs5011-driver.patch, +libfprint-0.5.1-r1.ebuild,
35 + libfprint-0.5.1.ebuild:
36 + Add driver for vfs5011 fprintreaders, so thinkpad [x2,t4]40 will work
37
38 20 Apr 2014; Michael Weber <xmw@g.o> libfprint-0.5.1.ebuild:
39 Resign manifest
40
41
42
43 1.1 sys-auth/libfprint/libfprint-0.5.1-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/libfprint-0.5.1-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/libfprint-0.5.1-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libfprint-0.5.1-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-auth/libfprint/libfprint-0.5.1-r1.ebuild,v 1.1 2014/05/05 06:10:53 alexxy Exp $
53
54 EAPI=5
55
56 inherit autotools eutils udev vcs-snapshot
57
58 MY_PV="v_${PV//./_}"
59 DESCRIPTION="library to add support for consumer fingerprint readers"
60 HOMEPAGE="http://cgit.freedesktop.org/libfprint/libfprint/"
61 SRC_URI="http://cgit.freedesktop.org/${PN}/${PN}/snapshot/${MY_PV}.tar.bz2 -> ${P}.tar.bz2"
62
63 LICENSE="LGPL-2.1"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~x86"
66 IUSE="debug static-libs"
67
68 RDEPEND="virtual/libusb:1
69 dev-libs/nss
70 || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] x11-libs/gdk-pixbuf )"
71 DEPEND="${RDEPEND}
72 virtual/pkgconfig"
73
74 src_prepare() {
75 epatch "${FILESDIR}/${P}-add-vfs5011-driver.patch"
76 eautoreconf
77 }
78
79 src_configure() {
80 econf \
81 --with-drivers=all \
82 $(use_enable debug debug-log) \
83 $(use_enable static-libs static) \
84 -enable-udev-rules \
85 --with-udev-rules-dir=$(udev_get_udevdir)/rules.d
86 # --disable-udev-rules fails https://bugs.freedesktop.org/show_bug.cgi?id=59076
87 # $(use_enable udev udev-rules) \
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install
92
93 prune_libtool_files
94
95 dodoc AUTHORS HACKING NEWS README THANKS TODO
96 }