# 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.92.ebuild,v 1.21 2009/03/15 16:55:46 ranger Exp $ inherit pam eutils toolchain-funcs 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_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}/${PN}-1.91-debian.patch" #105546 epatch "${FILESDIR}/${PN}-1.91-syslog.patch" # glibc-2.4 if tc-is-cross-compiler ; then # Remove RSA tests, they useless because rsa support included in openssl export ac_cv_openssldir="(system)" epatch "${FILESDIR}/${PN}-1.92-remove-rsa-tests.patch" eautoreconf fi } src_compile() { econf \ "--with-pam-dir=$(getpam_mod_dir)" \ || die "econf failed" emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "install failed" dodoc AUTHORS ChangeLog NEWS README TODO 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." }