diff options
author | 2010-09-29 21:20:13 +0000 | |
---|---|---|
committer | 2010-09-29 21:20:13 +0000 | |
commit | 2df1684739ab9c7c684b5e0829f8fe45b414f809 (patch) | |
tree | 7feff5757b685875e649ec3929b555f13144bdca /sys-auth/pam_ssh/pam_ssh-1.97.ebuild | |
parent | Version bump. Include patches from r1, plus i18n updates. (diff) | |
download | historical-2df1684739ab9c7c684b5e0829f8fe45b414f809.tar.gz historical-2df1684739ab9c7c684b5e0829f8fe45b414f809.tar.bz2 historical-2df1684739ab9c7c684b5e0829f8fe45b414f809.zip |
Fix dependencies over OpenSSH (bug #282993; thanks to Csaba Tóth for reporting and Constanze Hausner for the solution). Also cleanup old versions.
Package-Manager: portage-2.2_rc88/cvs/Linux x86_64
Diffstat (limited to 'sys-auth/pam_ssh/pam_ssh-1.97.ebuild')
-rw-r--r-- | sys-auth/pam_ssh/pam_ssh-1.97.ebuild | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/sys-auth/pam_ssh/pam_ssh-1.97.ebuild b/sys-auth/pam_ssh/pam_ssh-1.97.ebuild deleted file mode 100644 index 439180951044..000000000000 --- a/sys-auth/pam_ssh/pam_ssh-1.97.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_ssh/pam_ssh-1.97.ebuild,v 1.3 2009/07/29 21:16:06 maekke Exp $ - -EAPI=2 - -inherit pam autotools - -DESCRIPTION="Uses ssh-agent to provide single sign-on" -HOMEPAGE="http://pam-ssh.sourceforge.net/" -SRC_URI="mirror://sourceforge/pam-ssh/${P}.tar.bz2" - -LICENSE="BSD as-is" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86" -IUSE="" - -# Doesn't work on OpenPAM. -DEPEND="sys-libs/pam - sys-devel/libtool" - -RDEPEND="sys-libs/pam - virtual/ssh" - -src_prepare() { - eautoreconf -} - -src_configure() { - econf \ - "--with-pam-dir=$(getpam_mod_dir)" \ - || die "econf failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "install failed" - dodoc AUTHORS ChangeLog NEWS README TODO || die - - find "${D}" -name '*.la' -delete || die "Unable to remove libtool archives." -} - -pkg_postinst() { - elog "You can enable pam_ssh for system authentication by enabling" - elog "the ssh USE flag on sys-auth/pambase." -} |