summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2010-05-23 19:58:27 +0000
committerUlrich Müller <ulm@gentoo.org>2010-05-23 19:58:27 +0000
commit880e1529937550b863e2dc890812bec87a383dfa (patch)
tree023fd40a5f2bc55e9243dbb0035ab81629f0f880 /sys-auth/pam_skey
parentstable amd64, bug 312545 (diff)
downloadgentoo-2-880e1529937550b863e2dc890812bec87a383dfa.tar.gz
gentoo-2-880e1529937550b863e2dc890812bec87a383dfa.tar.bz2
gentoo-2-880e1529937550b863e2dc890812bec87a383dfa.zip
Remove old.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'sys-auth/pam_skey')
-rw-r--r--sys-auth/pam_skey/ChangeLog5
-rw-r--r--sys-auth/pam_skey/pam_skey-1.1.5.ebuild51
2 files changed, 4 insertions, 52 deletions
diff --git a/sys-auth/pam_skey/ChangeLog b/sys-auth/pam_skey/ChangeLog
index db3891fff799..0dcb2e104cd7 100644
--- a/sys-auth/pam_skey/ChangeLog
+++ b/sys-auth/pam_skey/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-auth/pam_skey
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_skey/ChangeLog,v 1.11 2010/05/23 19:48:43 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_skey/ChangeLog,v 1.12 2010/05/23 19:58:27 ulm Exp $
+
+ 23 May 2010; Ulrich Mueller <ulm@gentoo.org> -pam_skey-1.1.5.ebuild:
+ Remove old.
23 May 2010; Pacho Ramos <pacho@gentoo.org> pam_skey-1.1.5-r1.ebuild:
stable amd64, bug 311285
diff --git a/sys-auth/pam_skey/pam_skey-1.1.5.ebuild b/sys-auth/pam_skey/pam_skey-1.1.5.ebuild
deleted file mode 100644
index 80d9bab130c0..000000000000
--- a/sys-auth/pam_skey/pam_skey-1.1.5.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_skey/pam_skey-1.1.5.ebuild,v 1.6 2008/05/11 13:11:27 ulm Exp $
-
-inherit eutils pam autotools multilib
-
-DESCRIPTION="PAM interface for the S/Key authentication system"
-HOMEPAGE="http://freshmeat.net/projects/pam_skey/"
-SRC_URI="http://dkorunic.net/tarballs/${P}.tar.gz
- mirror://gentoo/${P}-gentoo.patch.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND=">=sys-libs/pam-0.78-r3
- >=sys-auth/skey-1.1.5-r4"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${WORKDIR}/${P}-gentoo.patch"
-
- cd autoconf
- eautoconf
- eautoheader
- mv configure defs.h.in .. || die "mv failed"
-}
-
-src_compile() {
- econf --libdir="/$(get_libdir)" CFLAGS="${CFLAGS} -fPIC" \
- || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "install failed"
- dodoc README INSTALL
-}
-
-pkg_postinst() {
- elog "To use this, you need to add something like"
- elog
- elog "auth [success=done ignore=ignore auth_err=die default=bad] pam_skey.so"
- elog "auth sufficient pam_unix.so likeauth nullok try_first_pass"
- elog
- elog "to an appropriate place in /etc/pam.d/system-auth"
- elog "Consult the documentation for instructions."
-}