Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-base/gnome-keyring: ChangeLog gnome-keyring-2.32.0.ebuild
Date: Sat, 09 Oct 2010 21:04:21
Message-Id: 20101009205338.2D7D92004C@flycatcher.gentoo.org
1 pacho 10/10/09 20:53:38
2
3 Modified: ChangeLog
4 Added: gnome-keyring-2.32.0.ebuild
5 Log:
6 Version bump for Gnome 2.32
7
8 (Portage version: 2.1.9.14/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.186 gnome-base/gnome-keyring/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-keyring/ChangeLog?rev=1.186&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-keyring/ChangeLog?rev=1.186&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-keyring/ChangeLog?r1=1.185&r2=1.186
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnome-base/gnome-keyring/ChangeLog,v
20 retrieving revision 1.185
21 retrieving revision 1.186
22 diff -u -r1.185 -r1.186
23 --- ChangeLog 9 Oct 2010 10:01:44 -0000 1.185
24 +++ ChangeLog 9 Oct 2010 20:53:38 -0000 1.186
25 @@ -1,6 +1,14 @@
26 # ChangeLog for gnome-base/gnome-keyring
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-keyring/ChangeLog,v 1.185 2010/10/09 10:01:44 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-keyring/ChangeLog,v 1.186 2010/10/09 20:53:38 pacho Exp $
30 +
31 +*gnome-keyring-2.32.0 (09 Oct 2010)
32 +
33 + 09 Oct 2010; Pacho Ramos <pacho@g.o> +gnome-keyring-2.32.0.ebuild:
34 + Version bump for Gnome 2.32: New GPG Agent built into
35 + gnome-keyring-daemon, fix broken startup when used with gdm and
36 + password-less login, other bugfixes and translation updates. Remove
37 + DISABLE_DEPRECATED flags.
38
39 09 Oct 2010; Samuli Suominen <ssuominen@g.o>
40 gnome-keyring-2.30.3.ebuild:
41
42
43
44 1.1 gnome-base/gnome-keyring/gnome-keyring-2.32.0.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-keyring/gnome-keyring-2.32.0.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-keyring/gnome-keyring-2.32.0.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gnome-keyring-2.32.0.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-keyring/gnome-keyring-2.32.0.ebuild,v 1.1 2010/10/09 20:53:38 pacho Exp $
54
55 EAPI="3"
56 GCONF_DEBUG="yes"
57
58 inherit gnome2 pam virtualx
59
60 DESCRIPTION="Password and keyring managing daemon"
61 HOMEPAGE="http://www.gnome.org/"
62
63 LICENSE="GPL-2 LGPL-2"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
66 IUSE="debug doc pam test"
67 # USE=valgrind is probably not a good idea for the tree
68
69 RDEPEND=">=dev-libs/glib-2.25.0
70 >=x11-libs/gtk+-2.20.0
71 gnome-base/gconf
72 >=sys-apps/dbus-1.0
73 pam? ( virtual/pam )
74 >=dev-libs/libgcrypt-1.2.2
75 >=dev-libs/libtasn1-1"
76 # valgrind? ( dev-util/valgrind )"
77 DEPEND="${RDEPEND}
78 sys-devel/gettext
79 >=dev-util/intltool-0.35
80 >=dev-util/pkgconfig-0.9
81 >=dev-util/gtk-doc-am-1.9
82 doc? ( >=dev-util/gtk-doc-1.9 )"
83 PDEPEND="gnome-base/libgnome-keyring"
84
85 DOCS="AUTHORS ChangeLog NEWS README"
86
87 pkg_setup() {
88 G2CONF="${G2CONF}
89 $(use_enable debug)
90 $(use_enable test tests)
91 $(use_enable pam)
92 $(use_with pam pam-dir $(getpam_mod_dir))
93 --with-root-certs=/usr/share/ca-certificates/
94 --enable-acl-prompts
95 --enable-ssh-agent
96 --enable-gpg-agent
97 --with-gtk=2.0"
98 # $(use_enable valgrind)
99 }
100
101 src_prepare() {
102 gnome2_src_prepare
103
104 # Remove silly CFLAGS
105 sed 's:CFLAGS="$CFLAGS -Werror:CFLAGS="$CFLAGS:' \
106 -i configure.in configure || die "sed failed"
107
108 # Remove DISABLE_DEPRECATED flags
109 sed -e '/-D[A-Z_]*DISABLE_DEPRECATED/d' \
110 -i configure.in configure || die "sed 2 failed"
111 }
112
113 src_test() {
114 unset DBUS_SESSION_BUS_ADDRESS
115 Xemake check || die "emake check failed!"
116 }