blob: 01b2e922a353432e71fcf0d128378c43044a5147 [file] [log] [blame]
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="4"
inherit autotools-utils user linux-info pam
DESCRIPTION="Support for the UPEK/SGS Thomson Microelectronics fingerprint reader, often seen in Thinkpads"
HOMEPAGE="http://thinkfinger.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug pam static-libs"
RDEPEND="virtual/libusb:0
pam? ( virtual/pam )"
DEPEND="${RDEPEND}
sys-devel/libtool
virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${PV}-direct_set_config_usb_hello.patch
"${FILESDIR}"/${PV}-carriagereturn.patch
"${FILESDIR}"/${PV}-send-sync-event.patch
"${FILESDIR}"/${PV}-tftoolgroup.patch
"${FILESDIR}"/${PV}-strip-strip.patch
)
pkg_setup() {
if use pam ; then
CONFIG_CHECK="~INPUT_UINPUT"
ERROR_CFG="Your kernel needs uinput for the pam module to work"
check_extra_config
fi
}
src_configure() {
local myeconfargs=(
$(use_enable pam) \
$(use_enable debug usb-debug) \
"--with-securedir=$(getpam_mod_dir)"
)
autotools-utils_src_configure
}
src_install() {
DOCS=( AUTHORS ChangeLog NEWS README )
autotools-utils_src_install
keepdir /etc/pam_thinkfinger
insinto /lib/udev/rules.d
doins "${FILESDIR}"/60-thinkfinger.rules
}
pkg_preinst() {
enewgroup fingerprint
}
pkg_postinst() {
fowners root:fingerprint /etc/pam_thinkfinger
fperms 710 /etc/pam_thinkfinger
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 use 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"
elog ""
fi
}