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: seahorse-3.2.1.ebuild ChangeLog
Date: Sun, 30 Oct 2011 07:39:29
Message-Id: 20111030073920.1186F2004B@flycatcher.gentoo.org
1 tetromino 11/10/30 07:39:20
2
3 Modified: ChangeLog
4 Added: seahorse-3.2.1.ebuild
5 Log:
6 Bump to 3.2.1 from the gnome overlay. The widget library has been split off into a separate package (x11-libs/libcryptui). Drop alpha, ia64, ppc, ppc64, sparc keywords due to gnome-keyring-3.2 dependency. Keywording bug will be filed later for all of gnome-3.2.
7
8 (Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.151 app-crypt/seahorse/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/ChangeLog?rev=1.151&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/ChangeLog?rev=1.151&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/ChangeLog?r1=1.150&r2=1.151
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v
20 retrieving revision 1.150
21 retrieving revision 1.151
22 diff -u -r1.150 -r1.151
23 --- ChangeLog 16 Aug 2011 23:22:14 -0000 1.150
24 +++ ChangeLog 30 Oct 2011 07:39:19 -0000 1.151
25 @@ -1,6 +1,14 @@
26 # ChangeLog for app-crypt/seahorse
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v 1.150 2011/08/16 23:22:14 nirbheek Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v 1.151 2011/10/30 07:39:19 tetromino Exp $
30 +
31 +*seahorse-3.2.1 (30 Oct 2011)
32 +
33 + 30 Oct 2011; Alexandre Rostovtsev <tetromino@g.o>
34 + +seahorse-3.2.1.ebuild:
35 + Bump to 3.2.1 from the gnome overlay. The widget library has been split off
36 + into a separate package (x11-libs/libcryptui). Drop alpha, ia64, ppc, ppc64,
37 + sparc keywords due to gnome-keyring-3.2 dependency.
38
39 *seahorse-3.0.2 (16 Aug 2011)
40
41
42
43
44 1.1 app-crypt/seahorse/seahorse-3.2.1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/seahorse-3.2.1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/seahorse-3.2.1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: seahorse-3.2.1.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-3.2.1.ebuild,v 1.1 2011/10/30 07:39:19 tetromino Exp $
54
55 EAPI="4"
56 GCONF_DEBUG="yes"
57 GNOME2_LA_PUNT="yes"
58
59 inherit gnome2
60
61 DESCRIPTION="A GNOME application for managing encryption keys"
62 HOMEPAGE="http://www.gnome.org/projects/seahorse/index.html"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 IUSE="avahi debug doc ldap test"
67 KEYWORDS="~amd64 ~x86 ~x86-fbsd"
68
69 COMMON_DEPEND="
70 >=dev-libs/glib-2.10:2
71 >=x11-libs/gtk+-2.90.0:3
72 >=gnome-base/gnome-keyring-3.1.5
73 net-libs/libsoup:2.4
74 x11-misc/shared-mime-info
75
76 net-misc/openssh
77 >=app-crypt/gpgme-1
78 || (
79 =app-crypt/gnupg-2.0*
80 =app-crypt/gnupg-1.4* )
81
82 avahi? ( >=net-dns/avahi-0.6 )
83 ldap? ( net-nds/openldap )
84 "
85 DEPEND="${COMMON_DEPEND}
86 sys-devel/gettext
87 >=app-text/gnome-doc-utils-0.3.2
88 >=app-text/scrollkeeper-0.3
89 >=dev-util/pkgconfig-0.20
90 >=dev-util/intltool-0.35
91 doc? ( >=dev-util/gtk-doc-1.9 )
92 "
93 # Need seahorse-plugins git snapshot
94 RDEPEND="${COMMON_DEPEND}
95 !<app-crypt/seahorse-plugins-2.91.0_pre20110114
96 "
97
98 pkg_setup() {
99 G2CONF="${G2CONF}
100 --enable-pgp
101 --enable-ssh
102 --enable-pkcs11
103 --disable-static
104 --disable-scrollkeeper
105 --disable-update-mime-database
106 --enable-hkp
107 $(use_enable avahi sharing)
108 $(use_enable debug)
109 $(use_enable ldap)
110 $(use_enable test tests)"
111 DOCS="AUTHORS ChangeLog NEWS README TODO THANKS"
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 1 failed"
119
120 gnome2_src_prepare
121 }