diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-12-04 17:49:46 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-12-04 17:49:46 +0100 |
commit | f9bfa95943eae9b4711a00f3cea0e21ac471e3c0 (patch) | |
tree | 18b2ef5ca31c9ebb5a2a292967195142cca2a556 /sys-auth | |
parent | sys-power/upower-pm-utils: Remove last-rited pkg (diff) | |
download | gentoo-f9bfa95943eae9b4711a00f3cea0e21ac471e3c0.tar.gz gentoo-f9bfa95943eae9b4711a00f3cea0e21ac471e3c0.tar.bz2 gentoo-f9bfa95943eae9b4711a00f3cea0e21ac471e3c0.zip |
sys-auth/pam_bioapi: 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/pam_bioapi/Manifest | 1 | ||||
-rw-r--r-- | sys-auth/pam_bioapi/files/pam_bioapi-0.4.0-headers.patch | 27 | ||||
-rw-r--r-- | sys-auth/pam_bioapi/metadata.xml | 8 | ||||
-rw-r--r-- | sys-auth/pam_bioapi/pam_bioapi-0.4.0-r1.ebuild | 48 |
4 files changed, 0 insertions, 84 deletions
diff --git a/sys-auth/pam_bioapi/Manifest b/sys-auth/pam_bioapi/Manifest deleted file mode 100644 index 616dae629a89..000000000000 --- a/sys-auth/pam_bioapi/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST pam_bioapi-0.4.0.tar.gz 383529 BLAKE2B 1375355adc508edfcd672e0b2470944021c53ddc5bb7c500db0c3c24334ca347f3a508573cb4e3d869c890ddd371a45d66f23326614881a58e554f69bfe1efce SHA512 fb2527b44ec8070fdc7a32fd1e272a6b98095fba827365f5427ae5fe6a5681b2f3be246ac34aaeb313d776890bd122c25ba68a58d9a728e68e4b341842dcb6d3 diff --git a/sys-auth/pam_bioapi/files/pam_bioapi-0.4.0-headers.patch b/sys-auth/pam_bioapi/files/pam_bioapi-0.4.0-headers.patch deleted file mode 100644 index d5acc4db61bc..000000000000 --- a/sys-auth/pam_bioapi/files/pam_bioapi-0.4.0-headers.patch +++ /dev/null @@ -1,27 +0,0 @@ -fix building with -O0 - -http://code.google.com/p/pam-bioapi/issues/detail?id=3 -http://bugs.gentoo.org/241322 - -fix building with newer glibc - -https://bugs.gentoo.org/512106 - ---- libpam_bioapi/pam_bioapi.h -+++ libpam_bioapi/pam_bioapi.h -@@ -19,6 +19,7 @@ - #include <sys/stat.h> - #include <sys/types.h> /* defines 'uid_t', etc. */ - -+#include <sys/resource.h> - #include <sys/types.h> - #include <sys/wait.h> - #include "earray.h" -@@ -23,6 +23,7 @@ - #include <sys/wait.h> - #include "earray.h" - -+#include <locale.h> - #include <libintl.h> /* gnu gettext support */ - #define _(String) gettext (String) - diff --git a/sys-auth/pam_bioapi/metadata.xml b/sys-auth/pam_bioapi/metadata.xml deleted file mode 100644 index 93d9ad1c980c..000000000000 --- a/sys-auth/pam_bioapi/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <upstream> - <remote-id type="google-code">pam-bioapi</remote-id> - </upstream> -</pkgmetadata> diff --git a/sys-auth/pam_bioapi/pam_bioapi-0.4.0-r1.ebuild b/sys-auth/pam_bioapi/pam_bioapi-0.4.0-r1.ebuild deleted file mode 100644 index c8cf69e83392..000000000000 --- a/sys-auth/pam_bioapi/pam_bioapi-0.4.0-r1.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 eutils - -DESCRIPTION="PAM interface to bioapi package" -HOMEPAGE="https://code.google.com/p/pam-bioapi/" -SRC_URI="https://pam-bioapi.googlecode.com/files/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86" -IUSE="" - -DEPEND="sys-auth/bioapi - sys-libs/pam - dev-db/sqlite" -RDEPEND="${DEPEND} - sys-auth/tfm-fingerprint" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-headers.patch #241322 - sed -i \ - -e 's/-version-info 0:4:0/-avoid-version/' \ - libpam_bioapi/Makefile.in #261598 - sed -i \ - -e 's:@prefix@::' \ - -e '/pam_unix.so/s:.*:auth include system-auth:' \ - etc/pam.d/{bioapi_chbird,test-pam_bioapi}.in #261598 -} - -src_compile() { - econf --sbindir=/sbin || die - emake || die -} - -src_install() { - emake install DESTDIR="${D}" || die - dodoc AUTHORS ChangeLog NEWS README TODO - - dodir /$(get_libdir) - mv "${D}"/usr/$(get_libdir)/security "${D}"/$(get_libdir)/ || die - rm -f "${D}"/$(get_libdir)/security/*.la -} |