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.12.2.ebuild ChangeLog
Date: Sat, 31 May 2014 08:19:57
Message-Id: 20140531081951.65A632004E@flycatcher.gentoo.org
1 pacho 14/05/31 08:19:51
2
3 Modified: ChangeLog
4 Added: seahorse-3.12.2.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.183 app-crypt/seahorse/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/ChangeLog?rev=1.183&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/ChangeLog?rev=1.183&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/ChangeLog?r1=1.182&r2=1.183
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v
20 retrieving revision 1.182
21 retrieving revision 1.183
22 diff -u -r1.182 -r1.183
23 --- ChangeLog 27 Apr 2014 22:15:32 -0000 1.182
24 +++ ChangeLog 31 May 2014 08:19:51 -0000 1.183
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.182 2014/04/27 22:15:32 eva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v 1.183 2014/05/31 08:19:51 pacho Exp $
30 +
31 +*seahorse-3.12.2 (31 May 2014)
32 +
33 + 31 May 2014; Pacho Ramos <pacho@g.o> +seahorse-3.12.2.ebuild:
34 + Version bump
35
36 27 Apr 2014; Gilles Dartiguelongue <eva@g.o> seahorse-3.12.0.ebuild:
37 Fix .desktop macro expansion, bug #508610.
38
39
40
41 1.1 app-crypt/seahorse/seahorse-3.12.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/seahorse-3.12.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/seahorse/seahorse-3.12.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: seahorse-3.12.2.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.2.ebuild,v 1.1 2014/05/31 08:19:51 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="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 gnome2_src_prepare
99 }
100
101 src_configure() {
102 # bindir is needed due to bad macro expansion in desktop file, bug #508610
103 gnome2_src_configure \
104 --bindir=/usr/bin \
105 --enable-pgp \
106 --enable-ssh \
107 --enable-pkcs11 \
108 --enable-hkp \
109 $(use_enable avahi sharing) \
110 $(use_enable debug) \
111 $(use_enable ldap) \
112 ITSTOOL=$(type -P true) \
113 VALAC=$(type -P true)
114 }