diff options
author | Aaron Bauman <bman@gentoo.org> | 2018-06-02 19:57:53 -0400 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2018-06-02 22:58:27 -0400 |
commit | 48e082efe07840877b3bfb38dbf0fb07847f5cdf (patch) | |
tree | 40fbaf91c9ffca9e32aa94ae7ee5e7498c7e46de /sys-auth/pam_dotfile | |
parent | sys-auth/pam_ldap: drop old EAPI (diff) | |
download | gentoo-48e082efe07840877b3bfb38dbf0fb07847f5cdf.tar.gz gentoo-48e082efe07840877b3bfb38dbf0fb07847f5cdf.tar.bz2 gentoo-48e082efe07840877b3bfb38dbf0fb07847f5cdf.zip |
sys-auth/pam_dotfile: drop old EAPI
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'sys-auth/pam_dotfile')
-rw-r--r-- | sys-auth/pam_dotfile/Manifest | 1 | ||||
-rw-r--r-- | sys-auth/pam_dotfile/pam_dotfile-0.7-r1.ebuild | 54 |
2 files changed, 0 insertions, 55 deletions
diff --git a/sys-auth/pam_dotfile/Manifest b/sys-auth/pam_dotfile/Manifest index 25760807d074..ecae1388b34a 100644 --- a/sys-auth/pam_dotfile/Manifest +++ b/sys-auth/pam_dotfile/Manifest @@ -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 index 4b58761e3a27..000000000000 --- a/sys-auth/pam_dotfile/pam_dotfile-0.7-r1.ebuild +++ /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/* -} |