summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2010-10-15 20:50:18 +0000
committerUlrich Müller <ulm@gentoo.org>2010-10-15 20:50:18 +0000
commita68b1fab77dff55deea11ebcd07b0c92595c65f7 (patch)
tree867e69e9243b87f50e6b14611ef20a96b042483b /sys-auth/pam_skey
parentDelete older ebuilds. (diff)
downloadgentoo-2-a68b1fab77dff55deea11ebcd07b0c92595c65f7.tar.gz
gentoo-2-a68b1fab77dff55deea11ebcd07b0c92595c65f7.tar.bz2
gentoo-2-a68b1fab77dff55deea11ebcd07b0c92595c65f7.zip
Remove old.
(Portage version: 2.1.9.18/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-r1.ebuild51
2 files changed, 4 insertions, 52 deletions
diff --git a/sys-auth/pam_skey/ChangeLog b/sys-auth/pam_skey/ChangeLog
index 203aa020d0d4..3ecb7fea552e 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.16 2010/10/10 10:38:31 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_skey/ChangeLog,v 1.17 2010/10/15 20:50:18 ulm Exp $
+
+ 15 Oct 2010; Ulrich Mueller <ulm@gentoo.org> -pam_skey-1.1.5-r1.ebuild:
+ Remove old.
10 Oct 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
pam_skey-1.1.5-r2.ebuild:
diff --git a/sys-auth/pam_skey/pam_skey-1.1.5-r1.ebuild b/sys-auth/pam_skey/pam_skey-1.1.5-r1.ebuild
deleted file mode 100644
index 0e114fbb00af..000000000000
--- a/sys-auth/pam_skey/pam_skey-1.1.5-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2010 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-r1.ebuild,v 1.3 2010/05/23 19:48:43 pacho 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-1.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-1.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."
-}