Gentoo Archives: gentoo-commits

From: Alexandre Restovtsev <tetromino@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: gnome-base/libgnome-keyring/
Date: Mon, 27 Feb 2012 02:25:09
Message-Id: 1330309422.f3d4b40c03d67008c211f064b7da521c29f0e1b7.tetromino@gentoo
1 commit: f3d4b40c03d67008c211f064b7da521c29f0e1b7
2 Author: Alexandre Rostovtsev <tetromino <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 27 02:23:42 2012 +0000
4 Commit: Alexandre Restovtsev <tetromino <AT> gmail <DOT> com>
5 CommitDate: Mon Feb 27 02:23:42 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=f3d4b40c
7
8 gnome-base/libgnome-keyring: add 3.3.5
9
10 ---
11 .../libgnome-keyring/libgnome-keyring-3.3.5.ebuild | 50 ++++++++++++++++++++
12 1 files changed, 50 insertions(+), 0 deletions(-)
13
14 diff --git a/gnome-base/libgnome-keyring/libgnome-keyring-3.3.5.ebuild b/gnome-base/libgnome-keyring/libgnome-keyring-3.3.5.ebuild
15 new file mode 100644
16 index 0000000..2880b12
17 --- /dev/null
18 +++ b/gnome-base/libgnome-keyring/libgnome-keyring-3.3.5.ebuild
19 @@ -0,0 +1,50 @@
20 +# Copyright 1999-2012 Gentoo Foundation
21 +# Distributed under the terms of the GNU General Public License v2
22 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libgnome-keyring/libgnome-keyring-3.2.2.ebuild,v 1.2 2012/01/13 20:23:49 tetromino Exp $
23 +
24 +EAPI="4"
25 +GCONF_DEBUG="yes"
26 +GNOME2_LA_PUNT="yes"
27 +
28 +inherit gnome2 python
29 +
30 +DESCRIPTION="Compatibility library for accessing secrets"
31 +HOMEPAGE="http://live.gnome.org/GnomeKeyring"
32 +
33 +LICENSE="LGPL-2"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~mips ~sh ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris"
36 +IUSE="debug doc +introspection test"
37 +
38 +RDEPEND=">=sys-apps/dbus-1.0
39 + >=gnome-base/gnome-keyring-3.1.92
40 + introspection? ( >=dev-libs/gobject-introspection-1.30.0 )"
41 +DEPEND="${RDEPEND}
42 + sys-devel/gettext
43 + >=dev-util/intltool-0.35
44 + >=dev-util/pkgconfig-0.9
45 + doc? ( >=dev-util/gtk-doc-1.9 )
46 + test? ( =dev-lang/python-2* )"
47 +
48 +pkg_setup() {
49 + DOCS="AUTHORS ChangeLog NEWS README"
50 +
51 + if use test; then
52 + python_set_active_version 2
53 + python_pkg_setup
54 + fi
55 +}
56 +
57 +src_prepare() {
58 + gnome2_src_prepare
59 +
60 + # FIXME: Remove silly CFLAGS
61 + sed -e 's:CFLAGS="$CFLAGS -g:CFLAGS="$CFLAGS:' \
62 + -e 's:CFLAGS="$CFLAGS -O0:CFLAGS="$CFLAGS:' \
63 + -i configure.ac configure || die "sed failed"
64 +}
65 +
66 +src_test() {
67 + unset DBUS_SESSION_BUS_ADDRESS
68 + dbus-launch emake check || die "tests failed"
69 +}