Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/seahorse: seahorse-3.10.1.ebuild ChangeLog
Date: Tue, 24 Dec 2013 15:24:53
Message-Id: 20131224152450.D63092004C@flycatcher.gentoo.org
1 pacho 13/12/24 15:24:50
2
3 Modified: ChangeLog
4 Added: seahorse-3.10.1.ebuild
5 Log:
6 Version bump for Gnome 3.10, drop old
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.172 app-crypt/seahorse/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/ChangeLog?rev=1.172&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/ChangeLog?rev=1.172&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/ChangeLog?r1=1.171&r2=1.172
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v
20 retrieving revision 1.171
21 retrieving revision 1.172
22 diff -u -r1.171 -r1.172
23 --- ChangeLog 8 Dec 2013 17:39:30 -0000 1.171
24 +++ ChangeLog 24 Dec 2013 15:24:50 -0000 1.172
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-crypt/seahorse
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v 1.171 2013/12/08 17:39:30 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v 1.172 2013/12/24 15:24:50 pacho Exp $
30 +
31 +*seahorse-3.10.1 (24 Dec 2013)
32 +
33 + 24 Dec 2013; Pacho Ramos <pacho@g.o> +seahorse-3.10.1.ebuild:
34 + Version bump for Gnome 3.10, drop old
35
36 08 Dec 2013; Pacho Ramos <pacho@g.o> seahorse-3.8.2.ebuild:
37 x86 stable, bug #478252
38
39
40
41 1.1 app-crypt/seahorse/seahorse-3.10.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/seahorse-3.10.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/seahorse-3.10.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: seahorse-3.10.1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.10.1.ebuild,v 1.1 2013/12/24 15:24:50 pacho 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="http://projects.gnome.org/seahorse/index.html"
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.9.1:=
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 gnome2_src_prepare
99 }
100
101 src_configure() {
102 gnome2_src_configure \
103 --enable-pgp \
104 --enable-ssh \
105 --enable-pkcs11 \
106 --disable-static \
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 }