diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2008-03-23 11:24:03 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2008-03-23 11:24:03 +0000 |
commit | 71caddc3cc80a2c22fd3456ac16e024f840915c3 (patch) | |
tree | edec68c0eafa1a15b25e5228e9b6efa31e8e7e94 /gnome-base | |
parent | Version bump. (diff) | |
download | gentoo-2-71caddc3cc80a2c22fd3456ac16e024f840915c3.tar.gz gentoo-2-71caddc3cc80a2c22fd3456ac16e024f840915c3.tar.bz2 gentoo-2-71caddc3cc80a2c22fd3456ac16e024f840915c3.zip |
New version for GNOME-2.22. Features an SSH agent, adds support for X.509
certificates and key store and a PKCS#11 module for accessing them.
(Portage version: 2.1.4.4)
Diffstat (limited to 'gnome-base')
-rw-r--r-- | gnome-base/gnome-keyring/ChangeLog | 9 | ||||
-rw-r--r-- | gnome-base/gnome-keyring/gnome-keyring-2.22.0-r2.ebuild | 46 |
2 files changed, 54 insertions, 1 deletions
diff --git a/gnome-base/gnome-keyring/ChangeLog b/gnome-base/gnome-keyring/ChangeLog index 5aa9ae9ca50a..de6f11c4b3d8 100644 --- a/gnome-base/gnome-keyring/ChangeLog +++ b/gnome-base/gnome-keyring/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for gnome-base/gnome-keyring # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-keyring/ChangeLog,v 1.117 2008/02/04 04:50:53 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-keyring/ChangeLog,v 1.118 2008/03/23 11:24:03 eva Exp $ + +*gnome-keyring-2.22.0-r2 (23 Mar 2008) + + 23 Mar 2008; Gilles Dartiguelongue <eva@gentoo.org> + +gnome-keyring-2.22.0-r2.ebuild: + New version for GNOME-2.22. Features an SSH agent, adds support for X.509 + certificates and key store and a PKCS#11 module for accessing them. 04 Feb 2008; Jeroen Roovers <jer@gentoo.org> gnome-keyring-2.20.3.ebuild: Stable for HPPA (bug #208366). diff --git a/gnome-base/gnome-keyring/gnome-keyring-2.22.0-r2.ebuild b/gnome-base/gnome-keyring/gnome-keyring-2.22.0-r2.ebuild new file mode 100644 index 000000000000..a75fcca819f3 --- /dev/null +++ b/gnome-base/gnome-keyring/gnome-keyring-2.22.0-r2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-keyring/gnome-keyring-2.22.0-r2.ebuild,v 1.1 2008/03/23 11:24:03 eva Exp $ + +inherit gnome2 eutils pam + +DESCRIPTION="Password and keyring managing daemon" +HOMEPAGE="http://www.gnome.org/" + +LICENSE="GPL-2 LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="debug doc hal pam test" + +RDEPEND=">=dev-libs/glib-2.8 + >=x11-libs/gtk+-2.6 + gnome-base/gconf + >=sys-apps/dbus-1.0 + hal? ( >=sys-apps/hal-0.5.7 ) + pam? ( virtual/pam ) + >=dev-libs/libgcrypt-1.2.2 + >=dev-libs/libtasn1-0.3.4" +DEPEND="${RDEPEND} + sys-devel/gettext + >=dev-util/intltool-0.35 + >=dev-util/pkgconfig-0.9 + doc? ( dev-util/gtk-doc )" + +DOCS="AUTHORS ChangeLog NEWS README TODO" + +src_unpack() { + gnome2_src_unpack + + echo "gkr-pk-object-storage.c" >> po/POTFILES.in + echo "gkr-ask-tool.c" >> po/POTFILES.in +} + +pkg_setup() { + G2CONF="${G2CONF} + $(use_enable debug) + $(use_enable hal) + $(use_enable test tests) + $(use_enable pam) + $(use_with pam pam-dir $(getpam_mod_dir)) + --with-root-certs=/usr/share/ca-certificates/" +} |