Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libcryptui: libcryptui-3.8.0.ebuild ChangeLog
Date: Thu, 28 Mar 2013 22:17:17
Message-Id: 20130328221643.8AE862171D@flycatcher.gentoo.org
1 pacho 13/03/28 22:16:43
2
3 Modified: ChangeLog
4 Added: libcryptui-3.8.0.ebuild
5 Log:
6 Version bump for Gnome 3.8
7
8 (Portage version: 2.1.11.58/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.6 x11-libs/libcryptui/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libcryptui/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libcryptui/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libcryptui/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libcryptui/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 23 Dec 2012 17:28:27 -0000 1.5
24 +++ ChangeLog 28 Mar 2013 22:16:43 -0000 1.6
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-libs/libcryptui
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libcryptui/ChangeLog,v 1.5 2012/12/23 17:28:27 eva Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libcryptui/ChangeLog,v 1.6 2013/03/28 22:16:43 pacho Exp $
31 +
32 +*libcryptui-3.8.0 (28 Mar 2013)
33 +
34 + 28 Mar 2013; Pacho Ramos <pacho@g.o> +libcryptui-3.8.0.ebuild:
35 + Version bump for Gnome 3.8
36
37 *libcryptui-3.6.0 (23 Dec 2012)
38
39 @@ -33,4 +38,3 @@
40 +libcryptui-3.2.0.ebuild, +metadata.xml:
41 New ebuild from the gnome overlay. Contains the widget library that was split
42 off from app-crypt/seahorse in gnome-3.1.x.
43 -
44
45
46
47 1.1 x11-libs/libcryptui/libcryptui-3.8.0.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libcryptui/libcryptui-3.8.0.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libcryptui/libcryptui-3.8.0.ebuild?rev=1.1&content-type=text/plain
51
52 Index: libcryptui-3.8.0.ebuild
53 ===================================================================
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libcryptui/libcryptui-3.8.0.ebuild,v 1.1 2013/03/28 22:16:43 pacho Exp $
57
58 EAPI="5"
59 GCONF_DEBUG="yes"
60
61 inherit gnome2
62
63 DESCRIPTION="User interface components for OpenPGP"
64 HOMEPAGE="http://www.gnome.org/projects/seahorse/index.html"
65
66 LICENSE="GPL-2+ LGPL-2.1+ FDL-1.1"
67 SLOT="0"
68 IUSE="+introspection libnotify test"
69 KEYWORDS="~amd64 ~x86 ~x86-fbsd"
70
71 # Pull in libnotify-0.7 because it's controlled via an automagic ifdef
72 COMMON_DEPEND="
73 >=dev-libs/glib-2.32:2
74 >=x11-libs/gtk+-3:3[introspection?]
75 >=dev-libs/dbus-glib-0.72
76 >=gnome-base/gnome-keyring-2.91.2
77 x11-libs/libICE
78 x11-libs/libSM
79
80 >=app-crypt/gpgme-1
81 || (
82 =app-crypt/gnupg-2.0*
83 =app-crypt/gnupg-1.4* )
84
85 introspection? ( >=dev-libs/gobject-introspection-0.6.4 )
86 libnotify? ( >=x11-libs/libnotify-0.7.0 )
87 "
88 DEPEND="${COMMON_DEPEND}
89 >=app-text/scrollkeeper-0.3
90 >=dev-util/gtk-doc-am-1.9
91 >=dev-util/intltool-0.35
92 sys-devel/gettext
93 virtual/pkgconfig
94 "
95 # Before 3.1.4, libcryptui was part of seahorse
96 RDEPEND="${COMMON_DEPEND}
97 !<app-crypt/seahorse-3.1.4
98 "
99
100 src_prepare() {
101 # FIXME: Do not mess with CFLAGS with USE="debug"
102 sed -e '/CFLAGS="$CFLAGS -g -O0/d' \
103 -e 's/-Werror//' \
104 -i configure.ac configure || die "sed failed"
105
106 gnome2_src_prepare
107 }
108
109 src_configure() {
110 G2CONF="${G2CONF}
111 --disable-static
112 --disable-update-mime-database
113 $(use_enable introspection)
114 $(use_enable libnotify)
115 $(use_enable test tests)"
116 gnome2_src_configure
117 }