Gentoo Archives: gentoo-commits

From: "vapier (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/thinkfinger: thinkfinger-0.3.ebuild ChangeLog
Date: Sat, 08 Sep 2007 18:28:36
Message-Id: E1IU4wA-0000rW-Uo@stork.gentoo.org
1 vapier 07/09/08 18:21:42
2
3 Modified: thinkfinger-0.3.ebuild ChangeLog
4 Log:
5 Make kernel check a warning and use emake in src_install.
6 (Portage version: 2.1.3.7)
7
8 Revision Changes Path
9 1.2 sys-auth/thinkfinger/thinkfinger-0.3.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/thinkfinger/thinkfinger-0.3.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/thinkfinger/thinkfinger-0.3.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/thinkfinger/thinkfinger-0.3.ebuild?r1=1.1&r2=1.2
14
15 Index: thinkfinger-0.3.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-auth/thinkfinger/thinkfinger-0.3.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- thinkfinger-0.3.ebuild 11 Apr 2007 16:59:35 -0000 1.1
22 +++ thinkfinger-0.3.ebuild 8 Sep 2007 18:21:42 -0000 1.2
23 @@ -1,12 +1,17 @@
24 # Copyright 1999-2007 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/thinkfinger/thinkfinger-0.3.ebuild,v 1.1 2007/04/11 16:59:35 chainsaw Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/thinkfinger/thinkfinger-0.3.ebuild,v 1.2 2007/09/08 18:21:42 vapier Exp $
28
29 inherit pam linux-info
30
31 DESCRIPTION="Support for the UPEK/SGS Thomson Microelectronics fingerprint reader, often seen in Thinkpads"
32 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
33 HOMEPAGE="http://thinkfinger.sourceforge.net/"
34 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
35 +
36 +LICENSE="GPL-2"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~x86"
39 +IUSE="debug pam"
40
41 RDEPEND=">=dev-libs/libusb-0.1.12
42 pam? ( virtual/pam )"
43 @@ -14,17 +19,15 @@
44 sys-devel/libtool
45 >=dev-util/pkgconfig-0.9.0"
46
47 -LICENSE="GPL-2"
48 -SLOT="0"
49 -KEYWORDS="~amd64 ~x86"
50 -IUSE="debug pam"
51 -
52 -src_compile() {
53 - if useq pam; then
54 - CONFIG_CHECK="INPUT_UINPUT"
55 +pkg_setup() {
56 + if use pam ; then
57 + CONFIG_CHECK="~INPUT_UINPUT"
58 ERROR_CFG="Your kernel needs uinput for the pam module to work"
59 check_extra_config
60 fi
61 +}
62 +
63 +src_compile() {
64 econf \
65 $(use_enable pam) \
66 $(use_enable debug usb-debug) \
67 @@ -34,7 +37,7 @@
68 }
69
70 src_install() {
71 - make DESTDIR="${D}" install || die
72 + emake DESTDIR="${D}" install || die
73 keepdir /etc/pam_thinkfinger
74 dodoc AUTHORS ChangeLog NEWS README
75 }
76 @@ -43,7 +46,7 @@
77 elog "Use tf-tool --acquire to take a finger print"
78 elog "tf-tool will write the finger print file to /tmp/test.bir"
79 elog ""
80 - if useq pam ; then
81 + if use pam ; then
82 elog "To add a fingerprint to PAM, use tf-tool --add-user USERNAME"
83 elog ""
84 elog "Add the following to /etc/pam.d/system-auth after pam_env.so"
85
86
87
88 1.6 sys-auth/thinkfinger/ChangeLog
89
90 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/thinkfinger/ChangeLog?rev=1.6&view=markup
91 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/thinkfinger/ChangeLog?rev=1.6&content-type=text/plain
92 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/thinkfinger/ChangeLog?r1=1.5&r2=1.6
93
94 Index: ChangeLog
95 ===================================================================
96 RCS file: /var/cvsroot/gentoo-x86/sys-auth/thinkfinger/ChangeLog,v
97 retrieving revision 1.5
98 retrieving revision 1.6
99 diff -u -r1.5 -r1.6
100 --- ChangeLog 11 Apr 2007 16:59:35 -0000 1.5
101 +++ ChangeLog 8 Sep 2007 18:21:42 -0000 1.6
102 @@ -1,6 +1,9 @@
103 # ChangeLog for sys-auth/thinkfinger
104 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
105 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/thinkfinger/ChangeLog,v 1.5 2007/04/11 16:59:35 chainsaw Exp $
106 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/thinkfinger/ChangeLog,v 1.6 2007/09/08 18:21:42 vapier Exp $
107 +
108 + 08 Sep 2007; Mike Frysinger <vapier@g.o> thinkfinger-0.3.ebuild:
109 + Make kernel check a warning and use emake in src_install.
110
111 *thinkfinger-0.3 (11 Apr 2007)
112
113
114
115
116 --
117 gentoo-commits@g.o mailing list