blob: 8ee8f90bd6a3844f7365ef9401a0f51881b7bd9b (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-auth/tfm-fingerprint/tfm-fingerprint-1.0.ebuild,v 1.6 2008/12/22 03:44:49 vapier Exp $
inherit multilib
DESCRIPTION="TouchChip TFM/ESS FingerPrint BSP"
HOMEPAGE="http://www.upek.com/support/dl_linux_bsp.asp"
SRC_URI="http://www.upek.com/support/download/TFMESS_BSP_LIN_${PV}.zip"
# This is the best license I could find.
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RESTRICT="strip"
RDEPEND="sys-auth/bioapi"
DEPEND="${RDEPEND}
app-arch/unzip"
S=${WORKDIR}
QA_TEXTRELS="usr/lib64/libtfmessbsp.so"
src_install() {
# this is a binary blob, so it probably shouldnt live in /usr/lib
dolib.so libtfmessbsp.so || die
insinto /etc
doins "${FILESDIR}"/tfmessbsp.cfg || die
}
doit_with_ewarn() {
"$@" || ewarn "FAILURE: $*"
}
pkg_postinst() {
doit_with_ewarn mod_install -fi /usr/$(get_libdir)/libtfmessbsp.so
elog "Note: You have to be in the group usb to access the fingerprint device."
}
pkg_postrm() {
# only do this if uninstalling
if ! has_version ${CATEGORY}/${PN} ; then
doit_with_ewarn mod_install -fu libtfmessbsp.so
fi
}
|