blob: 8fb81356eda4a252316671bee282cf1651237eea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-auth/thinkfinger/thinkfinger-0.2.2-r1.ebuild,v 1.3 2007/02/27 14:58:09 peper Exp $
inherit pam
DESCRIPTION="Support for the UPEK/SGS Thomson Microelectronics fingerprint reader, often seen in Thinkpads"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://thinkfinger.sourceforge.net/"
RDEPEND=">=dev-libs/libusb-0.1.12
pam? ( virtual/pam )"
DEPEND="${RDEPEND}
sys-devel/libtool
>=dev-util/pkgconfig-0.9.0"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="pam"
src_compile() {
econf \
$(use_enable pam) \
"--with-securedir=$(getpam_mod_dir)" \
|| die
emake || die
}
src_install() {
make DESTDIR="${D}" install || die
keepdir /etc/pam_thinkfinger
dodoc AUTHORS ChangeLog NEWS README
}
pkg_postinst() {
elog "Use tf-tool --acquire to take a finger print"
elog "tf-tool will write the finger print file to /tmp/test.bir"
elog ""
if useq pam ; then
elog "To add a fingerprint to PAM, use tf-tool --add-user USERNAME"
elog ""
elog "Add the following to /etc/pam.d/system-auth after pam_env.so"
elog "auth sufficient pam_thinkfinger.so"
elog ""
elog "Your system-auth should look similar to:"
elog "auth required pam_env.so"
elog "auth sufficient pam_thinkfinger.so"
elog "auth sufficient pam_unix.so try_first_pass likeauth nullok"
fi
}
|