diff options
-rw-r--r-- | sys-auth/pam_p11/ChangeLog | 10 | ||||
-rw-r--r-- | sys-auth/pam_p11/pam_p11-0.1.5.ebuild | 26 |
2 files changed, 34 insertions, 2 deletions
diff --git a/sys-auth/pam_p11/ChangeLog b/sys-auth/pam_p11/ChangeLog index cbea79245b0a..209c968ec1a9 100644 --- a/sys-auth/pam_p11/ChangeLog +++ b/sys-auth/pam_p11/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-auth/pam_p11 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_p11/ChangeLog,v 1.20 2008/08/31 13:36:01 dragonheart Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_p11/ChangeLog,v 1.21 2009/04/05 18:43:09 arfrever Exp $ + +*pam_p11-0.1.5 (05 Apr 2009) + + 05 Apr 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +pam_p11-0.1.5.ebuild: + Version bump (bug #252444). *pam_p11-0.1.4 (31 Aug 2008) diff --git a/sys-auth/pam_p11/pam_p11-0.1.5.ebuild b/sys-auth/pam_p11/pam_p11-0.1.5.ebuild new file mode 100644 index 000000000000..0992471b90e0 --- /dev/null +++ b/sys-auth/pam_p11/pam_p11-0.1.5.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_p11/pam_p11-0.1.5.ebuild,v 1.1 2009/04/05 18:43:09 arfrever Exp $ + +inherit pam + +DESCRIPTION="pam_p11 is a pam package for using cryptographic tokens as authentication" +HOMEPAGE="http://www.opensc-project.org/pam_p11/" +SRC_URI="http://www.opensc-project.org/files/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +DEPEND="virtual/pam + dev-libs/libp11 + dev-libs/openssl" +RDEPEND="${DEPEND}" + +src_install() { + dopammod src/.libs/pam_p11_opensc.so + dopammod src/.libs/pam_p11_openssh.so + + dohtml doc/*.html doc/*.css +} |