summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-12-04 17:50:30 +0100
committerMichał Górny <mgorny@gentoo.org>2018-12-04 17:50:30 +0100
commitcf199158902788dfaeb1fafed55fadc529b4404e (patch)
tree12932a7bf8a84b35f354429264d866d4e36a8297 /sys-auth
parentsys-auth/pam_bioapi: Remove last-rited pkg (diff)
downloadgentoo-cf199158902788dfaeb1fafed55fadc529b4404e.tar.gz
gentoo-cf199158902788dfaeb1fafed55fadc529b4404e.tar.bz2
gentoo-cf199158902788dfaeb1fafed55fadc529b4404e.zip
sys-auth/tfm-fingerprint: Remove last-rited pkg
Closes: https://bugs.gentoo.org/596648 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sys-auth')
-rw-r--r--sys-auth/tfm-fingerprint/Manifest1
-rw-r--r--sys-auth/tfm-fingerprint/files/tfmessbsp.cfg4
-rw-r--r--sys-auth/tfm-fingerprint/metadata.xml5
-rw-r--r--sys-auth/tfm-fingerprint/tfm-fingerprint-1.0.ebuild48
4 files changed, 0 insertions, 58 deletions
diff --git a/sys-auth/tfm-fingerprint/Manifest b/sys-auth/tfm-fingerprint/Manifest
deleted file mode 100644
index 3798e2f61276..000000000000
--- a/sys-auth/tfm-fingerprint/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST TFMESS_BSP_LIN_1.0.zip 922652 BLAKE2B 7d1149b0950a22ac975c8ce6600022449f41fd7afd47a022ee3ddd76a1c019dd16211563956671e887f3a6bd3fa1355f749cfe718e1afd79deafcea678c3c76e SHA512 dd0a965eea21b6d04178b39847246187aaca32c297a7fc0a45dc8dfe663f4951627223760a322d0a8beb50c2bc8485db63c7e1e6dfa49612c15427fd0bace3ee
diff --git a/sys-auth/tfm-fingerprint/files/tfmessbsp.cfg b/sys-auth/tfm-fingerprint/files/tfmessbsp.cfg
deleted file mode 100644
index f7d93eb20519..000000000000
--- a/sys-auth/tfm-fingerprint/files/tfmessbsp.cfg
+++ /dev/null
@@ -1,4 +0,0 @@
-#hide-capture-success="0"
-hide-capture-success="0"
-#security-level="3"
-security-level="3"
diff --git a/sys-auth/tfm-fingerprint/metadata.xml b/sys-auth/tfm-fingerprint/metadata.xml
deleted file mode 100644
index 6f49eba8f496..000000000000
--- a/sys-auth/tfm-fingerprint/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>
diff --git a/sys-auth/tfm-fingerprint/tfm-fingerprint-1.0.ebuild b/sys-auth/tfm-fingerprint/tfm-fingerprint-1.0.ebuild
deleted file mode 100644
index 37f294a1ebbc..000000000000
--- a/sys-auth/tfm-fingerprint/tfm-fingerprint-1.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-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"
-
-LICENSE="UPEK-SDK-EULA"
-SLOT="0"
-KEYWORDS="-* x86"
-IUSE=""
-
-RDEPEND="sys-auth/bioapi"
-DEPEND="${RDEPEND}
- app-arch/unzip"
-
-S=${WORKDIR}
-
-QA_TEXTRELS="usr/lib/libtfmessbsp.so"
-QA_PRESTRIPPED="usr/lib/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
-}