Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/libfprint: ChangeLog libfprint-0.4.0.ebuild
Date: Wed, 31 Oct 2012 18:27:28
Message-Id: 20121031182706.EC9A821600@flycatcher.gentoo.org
1 ssuominen 12/10/31 18:27:06
2
3 Modified: ChangeLog libfprint-0.4.0.ebuild
4 Log:
5 Use prune_libtool_files from eutils.eclass. Use udev_get_udevdir from udev.eclass to move 60-fprint-autosuspend.rules from /etc/udev/rules.d to correct directory based on udev.pc pkg-config file and the udevdir variable value.
6
7 (Portage version: 2.2.0_alpha135/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.11 sys-auth/libfprint/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/ChangeLog?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/ChangeLog?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/ChangeLog?r1=1.10&r2=1.11
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-auth/libfprint/ChangeLog,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- ChangeLog 22 May 2012 16:18:35 -0000 1.10
23 +++ ChangeLog 31 Oct 2012 18:27:06 -0000 1.11
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sys-auth/libfprint
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/libfprint/ChangeLog,v 1.10 2012/05/22 16:18:35 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/libfprint/ChangeLog,v 1.11 2012/10/31 18:27:06 ssuominen Exp $
29 +
30 + 31 Oct 2012; Samuli Suominen <ssuominen@g.o> libfprint-0.4.0.ebuild:
31 + Use prune_libtool_files from eutils.eclass. Use udev_get_udevdir from
32 + udev.eclass to move 60-fprint-autosuspend.rules from /etc/udev/rules.d to
33 + correct directory based on udev.pc pkg-config file and the udevdir variable
34 + value.
35
36 22 May 2012; Samuli Suominen <ssuominen@g.o> libfprint-0.4.0.ebuild:
37 Use virtual/libusb instead of dev-libs/libusb.
38
39
40
41 1.7 sys-auth/libfprint/libfprint-0.4.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/libfprint-0.4.0.ebuild?rev=1.7&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/libfprint-0.4.0.ebuild?rev=1.7&content-type=text/plain
45 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/libfprint-0.4.0.ebuild?r1=1.6&r2=1.7
46
47 Index: libfprint-0.4.0.ebuild
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/sys-auth/libfprint/libfprint-0.4.0.ebuild,v
50 retrieving revision 1.6
51 retrieving revision 1.7
52 diff -u -r1.6 -r1.7
53 --- libfprint-0.4.0.ebuild 22 May 2012 16:18:35 -0000 1.6
54 +++ libfprint-0.4.0.ebuild 31 Oct 2012 18:27:06 -0000 1.7
55 @@ -1,10 +1,10 @@
56 # Copyright 1999-2012 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/libfprint/libfprint-0.4.0.ebuild,v 1.6 2012/05/22 16:18:35 ssuominen Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/libfprint/libfprint-0.4.0.ebuild,v 1.7 2012/10/31 18:27:06 ssuominen Exp $
60
61 EAPI=4
62
63 -inherit autotools
64 +inherit autotools eutils udev
65
66 MY_PV="v_${PV//./_}"
67 DESCRIPTION="library to add support for consumer fingerprint readers"
68 @@ -42,7 +42,11 @@
69 }
70
71 src_install() {
72 - emake DESTDIR="${D}" install
73 - use static-libs || find "${D}" -name "*.la" -delete
74 + emake \
75 + DESTDIR="${D}" \
76 + udev_rulesdir="$(udev_get_udevdir)/rules.d" \
77 + install
78 +
79 + prune_libtool_files
80 dodoc AUTHORS HACKING NEWS README THANKS TODO
81 }