sys-auth/pam_dotfile: drop old EAPI
authorAaron Bauman <bman@gentoo.org>
Sat, 2 Jun 2018 23:57:53 +0000 (19:57 -0400)
committerAaron Bauman <bman@gentoo.org>
Sun, 3 Jun 2018 02:58:27 +0000 (22:58 -0400)
Package-Manager: Portage-2.3.40, Repoman-2.3.9

sys-auth/pam_dotfile/Manifest
sys-auth/pam_dotfile/pam_dotfile-0.7-r1.ebuild [deleted file]

index 25760807d07411238c8c32de779e15063cd6c9c4..ecae1388b34ae1f781b2de3904c988d0b3430778 100644 (file)
@@ -1,2 +1 @@
 DIST pam_dotfile-0.7.tar.gz 229009 BLAKE2B 99cec03f963735806f89ec6d099450993277877cc25562b4eb0c98dd61dbd8a8c5fcbb2c23ab24883c0fe4f44632fdbf0c6d8eeed646e3af28744b9a5aabba11 SHA512 544160068af2c6a488271d36cfae43340d4d7801702aef629ba781dff12b99334bc76ec14396783d0a9823d0f976c847335fe8b1b07cbbb6e43d0bd658ff7500
-DIST pam_dotfile-patches-1.tar.bz2 2172 BLAKE2B 2b2ea0b690a7f441031189b2867f0e9a3886f9223e64c463e10387bda8ff37bf72cc19d7f0614d61df7e4ddd762d2421d996212cb7a639f654fe86d3b5f6270d SHA512 a6b29361e089f7223c3f915320a921b5f20603a16673d518300ea458a816360950a76a4f8e1842040f7b0e676d4c67c6de2586640c2bb4638a4e63138b78600a
diff --git a/sys-auth/pam_dotfile/pam_dotfile-0.7-r1.ebuild b/sys-auth/pam_dotfile/pam_dotfile-0.7-r1.ebuild
deleted file mode 100644 (file)
index 4b58761..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils pam autotools
-
-MY_P="${P/_beta/beta}"
-S="${WORKDIR}/${MY_P}"
-
-PATCHLEVEL="1"
-DESCRIPTION="pam module to allow password-storing in \$HOME/dotfiles"
-HOMEPAGE="http://0pointer.de/lennart/projects/pam_dotfile/"
-SRC_URI="http://0pointer.de/lennart/projects/pam_dotfile/${MY_P}.tar.gz
-       http://digilander.libero.it/dgp85/gentoo/${PN}-patches-${PATCHLEVEL}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="doc"
-
-RDEPEND="virtual/pam"
-DEPEND="${RDEPEND}
-       doc? ( www-client/lynx )"
-
-src_unpack() {
-       unpack ${A}
-       cd "${S}"
-
-       EPATCH_SUFFIX="patch" epatch "${WORKDIR}/${PV}"
-
-       AT_M4DIR="${WORKDIR}/${PV}/m4" eautoreconf
-}
-
-src_compile() {
-       local myconf
-
-       econf \
-               $(use_enable doc lynx) \
-               "--with-pammoddir=$(getpam_mod_dir)" \
-               || die
-       emake || die
-}
-
-src_install() {
-       make -C src DESTDIR="${D}" install || die "make -C src install failed"
-       make -C man DESTDIR="${D}" install || die "make -C src install failed"
-
-       rm -f "${D}"/$(getpam_mod_dir)/pam_dotfile.la
-       fperms 4111 /usr/sbin/pam-dotfile-helper
-
-       dodoc README
-       dohtml doc/*
-}