Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-base/gnome-keyring: ChangeLog gnome-keyring-2.28.1.ebuild gnome-keyring-2.26.1-r1.ebuild gnome-keyring-2.24.1.ebuild
Date: Thu, 29 Oct 2009 22:09:57
Message-Id: E1N3dBr-0002lh-Hx@stork.gentoo.org
1 eva 09/10/29 22:09:55
2
3 Modified: ChangeLog
4 Added: gnome-keyring-2.28.1.ebuild
5 Removed: gnome-keyring-2.26.1-r1.ebuild
6 gnome-keyring-2.24.1.ebuild
7 Log:
8 New version for GNOME 2.28. Clean up old revision.
9 (Portage version: 2.2_rc46/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.161 gnome-base/gnome-keyring/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gnome-keyring/ChangeLog?rev=1.161&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gnome-keyring/ChangeLog?rev=1.161&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gnome-keyring/ChangeLog?r1=1.160&r2=1.161
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/gnome-base/gnome-keyring/ChangeLog,v
21 retrieving revision 1.160
22 retrieving revision 1.161
23 diff -u -r1.160 -r1.161
24 --- ChangeLog 24 Oct 2009 16:29:00 -0000 1.160
25 +++ ChangeLog 29 Oct 2009 22:09:54 -0000 1.161
26 @@ -1,6 +1,14 @@
27 # ChangeLog for gnome-base/gnome-keyring
28 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-keyring/ChangeLog,v 1.160 2009/10/24 16:29:00 nixnut Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-keyring/ChangeLog,v 1.161 2009/10/29 22:09:54 eva Exp $
31 +
32 +*gnome-keyring-2.28.1 (29 Oct 2009)
33 +
34 + 29 Oct 2009; Gilles Dartiguelongue <eva@g.o>
35 + -gnome-keyring-2.24.1.ebuild, -gnome-keyring-2.26.1-r1.ebuild,
36 + +files/gnome-keyring-2.27.92-as-needed.patch,
37 + +gnome-keyring-2.28.1.ebuild:
38 + New version for GNOME 2.28. Clean up old revision.
39
40 24 Oct 2009; nixnut <nixnut@g.o> gnome-keyring-2.26.3.ebuild:
41 ppc stable #281427
42
43
44
45 1.1 gnome-base/gnome-keyring/gnome-keyring-2.28.1.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gnome-keyring/gnome-keyring-2.28.1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gnome-keyring/gnome-keyring-2.28.1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: gnome-keyring-2.28.1.ebuild
51 ===================================================================
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-keyring/gnome-keyring-2.28.1.ebuild,v 1.1 2009/10/29 22:09:54 eva Exp $
55
56 EAPI="2"
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 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
66 IUSE="debug doc hal pam test"
67 # USE=valgrind is probably not a good idea for the tree
68
69 RDEPEND=">=dev-libs/glib-2.16
70 >=x11-libs/gtk+-2.6
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 doc? ( >=dev-util/gtk-doc-1.9 )"
82
83 DOCS="AUTHORS ChangeLog NEWS README TODO keyring-intro.txt"
84
85 pkg_setup() {
86 G2CONF="${G2CONF}
87 $(use_enable debug)
88 $(use_enable test tests)
89 $(use_enable pam)
90 $(use_with pam pam-dir $(getpam_mod_dir))
91 --with-root-certs=/usr/share/ca-certificates/
92 --enable-acl-prompts
93 --enable-ssh-agent"
94 # $(use_enable valgrind)
95 }
96
97 src_prepare() {
98 gnome2_src_prepare
99
100 # Remove silly CFLAGS
101 sed 's:CFLAGS="$CFLAGS -Werror:CFLAGS="$CFLAGS:' \
102 -i configure.in configure || die "sed failed"
103 }
104
105 src_test() {
106 unset DBUS_SESSION_BUS_ADDRESS
107 Xemake check || die "emake check failed!"
108 }