Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/seahorse: ChangeLog seahorse-3.12.0.ebuild
Date: Sun, 27 Apr 2014 15:27:51
Message-Id: 20140427152743.92A522004B@flycatcher.gentoo.org
1 eva 14/04/27 15:27:43
2
3 Modified: ChangeLog
4 Added: seahorse-3.12.0.ebuild
5 Log:
6 Version bump for Gnome 3.12.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key C6085806)
9
10 Revision Changes Path
11 1.181 app-crypt/seahorse/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/ChangeLog?rev=1.181&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/ChangeLog?rev=1.181&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/ChangeLog?r1=1.180&r2=1.181
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v
20 retrieving revision 1.180
21 retrieving revision 1.181
22 diff -u -r1.180 -r1.181
23 --- ChangeLog 23 Apr 2014 20:44:41 -0000 1.180
24 +++ ChangeLog 27 Apr 2014 15:27:43 -0000 1.181
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-crypt/seahorse
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v 1.180 2014/04/23 20:44:41 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v 1.181 2014/04/27 15:27:43 eva Exp $
30 +
31 +*seahorse-3.12.0 (27 Apr 2014)
32 +
33 + 27 Apr 2014; Gilles Dartiguelongue <eva@g.o> +seahorse-3.12.0.ebuild:
34 + Version bump for Gnome 3.12.
35
36 23 Apr 2014; Pacho Ramos <pacho@g.o> -seahorse-3.10.2.ebuild,
37 -seahorse-3.8.2.ebuild:
38
39
40
41 1.1 app-crypt/seahorse/seahorse-3.12.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/seahorse-3.12.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/seahorse-3.12.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: seahorse-3.12.0.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-3.12.0.ebuild,v 1.1 2014/04/27 15:27:43 eva Exp $
51
52 EAPI="5"
53 GCONF_DEBUG="yes"
54
55 inherit gnome2
56
57 DESCRIPTION="A GNOME application for managing encryption keys"
58 HOMEPAGE="https://wiki.gnome.org/Apps/Seahorse"
59
60 LICENSE="GPL-2+ FDL-1.1+"
61 SLOT="0"
62 IUSE="avahi debug ldap"
63 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
64
65 COMMON_DEPEND="
66 >=app-crypt/gcr-3.11.91:=
67 >=dev-libs/glib-2.10:2
68 >=x11-libs/gtk+-3.4:3
69 >=app-crypt/libsecret-0.16
70 >=net-libs/libsoup-2.33.92:2.4
71 x11-misc/shared-mime-info
72
73 net-misc/openssh
74 >=app-crypt/gpgme-1
75 || (
76 =app-crypt/gnupg-2.0*
77 =app-crypt/gnupg-1.4* )
78
79 avahi? ( >=net-dns/avahi-0.6:= )
80 ldap? ( net-nds/openldap:= )
81 "
82 DEPEND="${COMMON_DEPEND}
83 >=dev-util/intltool-0.35
84 sys-devel/gettext
85 virtual/pkgconfig
86 "
87 # Need seahorse-plugins git snapshot
88 RDEPEND="${COMMON_DEPEND}
89 !<app-crypt/seahorse-plugins-2.91.0_pre20110114
90 "
91
92 src_prepare() {
93 # FIXME: Do not mess with CFLAGS with USE="debug"
94 sed -e '/CFLAGS="$CFLAGS -g/d' \
95 -e '/CFLAGS="$CFLAGS -O0/d' \
96 -i configure.ac configure || die "sed 1 failed"
97
98 vala_src_prepare
99 gnome2_src_prepare
100 }
101
102 src_configure() {
103 gnome2_src_configure \
104 --enable-pgp \
105 --enable-ssh \
106 --enable-pkcs11 \
107 --enable-hkp \
108 $(use_enable avahi sharing) \
109 $(use_enable debug) \
110 $(use_enable ldap) \
111 ITSTOOL=$(type -P true) \
112 VALAC=$(type -P true)
113 }