Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libcryptui: metadata.xml ChangeLog libcryptui-3.2.0.ebuild
Date: Sun, 30 Oct 2011 07:47:15
Message-Id: 20111030074705.857132004B@flycatcher.gentoo.org
1 tetromino 11/10/30 07:47:05
2
3 Added: metadata.xml ChangeLog libcryptui-3.2.0.ebuild
4 Log:
5 New ebuild from the gnome overlay. Contains the widget library that was split off from app-crypt/seahorse in gnome-3.1.x.
6
7 (Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 x11-libs/libcryptui/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libcryptui/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libcryptui/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>gnome</herd>
21 <use>
22 <flag name="introspection">Use <pkg>dev-libs/gobject-introspection</pkg>
23 for introspection</flag>
24 </use>
25 </pkgmetadata>
26
27
28
29 1.1 x11-libs/libcryptui/ChangeLog
30
31 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libcryptui/ChangeLog?rev=1.1&view=markup
32 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libcryptui/ChangeLog?rev=1.1&content-type=text/plain
33
34 Index: ChangeLog
35 ===================================================================
36 # ChangeLog for x11-libs/libcryptui
37 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
38 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libcryptui/ChangeLog,v 1.1 2011/10/30 07:47:05 tetromino Exp $
39
40 *libcryptui-3.2.0 (30 Oct 2011)
41
42 30 Oct 2011; Alexandre Rostovtsev <tetromino@g.o>
43 +libcryptui-3.2.0.ebuild, +metadata.xml:
44 New ebuild from the gnome overlay. Contains the widget library that was split
45 off from app-crypt/seahorse in gnome-3.1.x.
46
47
48
49
50 1.1 x11-libs/libcryptui/libcryptui-3.2.0.ebuild
51
52 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libcryptui/libcryptui-3.2.0.ebuild?rev=1.1&view=markup
53 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libcryptui/libcryptui-3.2.0.ebuild?rev=1.1&content-type=text/plain
54
55 Index: libcryptui-3.2.0.ebuild
56 ===================================================================
57 # Copyright 1999-2011 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libcryptui/libcryptui-3.2.0.ebuild,v 1.1 2011/10/30 07:47:05 tetromino Exp $
60
61 EAPI="4"
62 GCONF_DEBUG="yes"
63 GNOME2_LA_PUNT="yes"
64
65 inherit gnome2
66
67 DESCRIPTION="User interface components for OpenPGP"
68 HOMEPAGE="http://www.gnome.org/projects/seahorse/index.html"
69
70 LICENSE="GPL-2 LGPL-2"
71 SLOT="0"
72 IUSE="debug doc +introspection libnotify test"
73 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
74
75 # Pull in libnotify-0.7 because it's controlled via an automagic ifdef
76 COMMON_DEPEND="
77 >=dev-libs/glib-2.10:2
78 >=x11-libs/gtk+-2.90.0:3[introspection?]
79 >=dev-libs/dbus-glib-0.72
80 >=gnome-base/gnome-keyring-2.91.2
81
82 >=app-crypt/gpgme-1
83 || (
84 =app-crypt/gnupg-2.0*
85 =app-crypt/gnupg-1.4* )
86
87 introspection? ( >=dev-libs/gobject-introspection-0.6.4 )
88 libnotify? ( >=x11-libs/libnotify-0.7.0 )
89 "
90 DEPEND="${COMMON_DEPEND}
91 sys-devel/gettext
92 >=app-text/scrollkeeper-0.3
93 >=dev-util/pkgconfig-0.20
94 >=dev-util/intltool-0.35
95 doc? ( >=dev-util/gtk-doc-1.9 )
96 "
97 # Before 3.1.4, libcryptui was part of seahorse
98 RDEPEND="${COMMON_DEPEND}
99 !<app-crypt/seahorse-3.1.4
100 "
101
102 pkg_setup() {
103 G2CONF="${G2CONF}
104 --disable-static
105 --disable-scrollkeeper
106 --disable-update-mime-database
107 $(use_enable debug)
108 $(use_enable introspection)
109 $(use_enable libnotify)
110 $(use_enable test tests)"
111 DOCS="AUTHORS ChangeLog NEWS README"
112 }
113
114 src_prepare() {
115 # FIXME: Do not mess with CFLAGS with USE="debug"
116 sed -e '/CFLAGS="$CFLAGS -g -O0/d' \
117 -e 's/-Werror//' \
118 -i configure.ac configure || die "sed failed"
119
120 gnome2_src_prepare
121 }