Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/seahorse: ChangeLog seahorse-3.2.2.ebuild seahorse-3.0.2.ebuild
Date: Thu, 17 Nov 2011 06:11:18
Message-Id: 20111117061108.5C07A2004B@flycatcher.gentoo.org
1 tetromino 11/11/17 06:11:08
2
3 Modified: ChangeLog
4 Added: seahorse-3.2.2.ebuild
5 Removed: seahorse-3.0.2.ebuild
6 Log:
7 Bump, drop old. Notable changes: gpg key loading improvements.
8
9 (Portage version: 2.2.0_alpha74/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.152 app-crypt/seahorse/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/ChangeLog?rev=1.152&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/ChangeLog?rev=1.152&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/ChangeLog?r1=1.151&r2=1.152
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v
21 retrieving revision 1.151
22 retrieving revision 1.152
23 diff -u -r1.151 -r1.152
24 --- ChangeLog 30 Oct 2011 07:39:19 -0000 1.151
25 +++ ChangeLog 17 Nov 2011 06:11:08 -0000 1.152
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-crypt/seahorse
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v 1.151 2011/10/30 07:39:19 tetromino Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v 1.152 2011/11/17 06:11:08 tetromino Exp $
31 +
32 +*seahorse-3.2.2 (17 Nov 2011)
33 +
34 + 17 Nov 2011; Alexandre Rostovtsev <tetromino@g.o>
35 + -seahorse-3.0.2.ebuild, +seahorse-3.2.2.ebuild:
36 + Bump, drop old. Notable changes: gpg key loading improvements.
37
38 *seahorse-3.2.1 (30 Oct 2011)
39
40
41
42
43 1.1 app-crypt/seahorse/seahorse-3.2.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/seahorse-3.2.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/seahorse-3.2.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: seahorse-3.2.2.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-3.2.2.ebuild,v 1.1 2011/11/17 06:11:08 tetromino Exp $
53
54 EAPI="4"
55 GCONF_DEBUG="yes"
56 GNOME2_LA_PUNT="yes"
57
58 inherit gnome2
59
60 DESCRIPTION="A GNOME application for managing encryption keys"
61 HOMEPAGE="http://www.gnome.org/projects/seahorse/index.html"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 IUSE="avahi debug doc ldap test"
66 KEYWORDS="~amd64 ~x86 ~x86-fbsd"
67
68 COMMON_DEPEND="
69 >=dev-libs/glib-2.10:2
70 >=x11-libs/gtk+-2.90.0:3
71 >=gnome-base/gnome-keyring-3.1.5
72 net-libs/libsoup:2.4
73 x11-misc/shared-mime-info
74
75 net-misc/openssh
76 >=app-crypt/gpgme-1
77 || (
78 =app-crypt/gnupg-2.0*
79 =app-crypt/gnupg-1.4* )
80
81 avahi? ( >=net-dns/avahi-0.6 )
82 ldap? ( net-nds/openldap )
83 "
84 DEPEND="${COMMON_DEPEND}
85 sys-devel/gettext
86 >=app-text/gnome-doc-utils-0.3.2
87 >=app-text/scrollkeeper-0.3
88 >=dev-util/pkgconfig-0.20
89 >=dev-util/intltool-0.35
90 doc? ( >=dev-util/gtk-doc-1.9 )
91 "
92 # Need seahorse-plugins git snapshot
93 RDEPEND="${COMMON_DEPEND}
94 !<app-crypt/seahorse-plugins-2.91.0_pre20110114
95 "
96
97 pkg_setup() {
98 G2CONF="${G2CONF}
99 --enable-pgp
100 --enable-ssh
101 --enable-pkcs11
102 --disable-static
103 --disable-scrollkeeper
104 --disable-update-mime-database
105 --enable-hkp
106 $(use_enable avahi sharing)
107 $(use_enable debug)
108 $(use_enable ldap)
109 $(use_enable test tests)"
110 DOCS="AUTHORS ChangeLog NEWS README TODO THANKS"
111 }
112
113 src_prepare() {
114 # FIXME: Do not mess with CFLAGS with USE="debug"
115 sed -e '/CFLAGS="$CFLAGS -g -O0/d' \
116 -e 's/-Werror//' \
117 -i configure.ac configure || die "sed 1 failed"
118
119 gnome2_src_prepare
120 }