Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-base/dconf: dconf-0.20.0.ebuild ChangeLog
Date: Sun, 27 Apr 2014 16:41:22
Message-Id: 20140427164119.189652004B@flycatcher.gentoo.org
1 eva 14/04/27 16:41:19
2
3 Modified: ChangeLog
4 Added: dconf-0.20.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.58 gnome-base/dconf/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/dconf/ChangeLog?rev=1.58&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/dconf/ChangeLog?rev=1.58&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/dconf/ChangeLog?r1=1.57&r2=1.58
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnome-base/dconf/ChangeLog,v
20 retrieving revision 1.57
21 retrieving revision 1.58
22 diff -u -r1.57 -r1.58
23 --- ChangeLog 26 Apr 2014 17:52:12 -0000 1.57
24 +++ ChangeLog 27 Apr 2014 16:41:18 -0000 1.58
25 @@ -1,6 +1,11 @@
26 # ChangeLog for gnome-base/dconf
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/dconf/ChangeLog,v 1.57 2014/04/26 17:52:12 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/dconf/ChangeLog,v 1.58 2014/04/27 16:41:18 eva Exp $
30 +
31 +*dconf-0.20.0 (27 Apr 2014)
32 +
33 + 27 Apr 2014; Gilles Dartiguelongue <eva@g.o> +dconf-0.20.0.ebuild:
34 + Version bump for Gnome 3.12.
35
36 26 Apr 2014; Pacho Ramos <pacho@g.o> -dconf-0.16.1.ebuild:
37 drop old
38
39
40
41 1.1 gnome-base/dconf/dconf-0.20.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/dconf/dconf-0.20.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/dconf/dconf-0.20.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: dconf-0.20.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/gnome-base/dconf/dconf-0.20.0.ebuild,v 1.1 2014/04/27 16:41:18 eva Exp $
51
52 EAPI="5"
53 GCONF_DEBUG="no"
54
55 inherit gnome2 bash-completion-r1 virtualx
56
57 DESCRIPTION="Simple low-level configuration system"
58 HOMEPAGE="https://wiki.gnome.org/dconf"
59
60 LICENSE="LGPL-2.1+"
61 SLOT="0"
62
63 # TODO: coverage ?
64 IUSE="test +X"
65
66 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~arm-linux ~x86-linux"
67
68 RDEPEND="
69 >=dev-libs/glib-2.39.1:2
70 sys-apps/dbus
71 X? (
72 >=dev-libs/libxml2-2.7.7:2
73 >=x11-libs/gtk+-3.4:3 )
74 "
75 DEPEND="${RDEPEND}
76 dev-libs/libxslt
77 dev-util/gdbus-codegen
78 >=dev-util/gtk-doc-am-1.15
79 >=dev-util/intltool-0.50
80 sys-devel/gettext
81 virtual/pkgconfig
82 "
83
84 src_configure() {
85 gnome2_src_configure \
86 --disable-gcov \
87 --enable-man \
88 $(use_enable X editor) \
89 VALAC=$(type -P true)
90 }
91
92 src_test() {
93 Xemake check
94 }
95
96 src_install() {
97 gnome2_src_install
98
99 # GSettings backend may be one of: memory, gconf, dconf
100 # Only dconf is really considered functional by upstream
101 # must have it enabled over gconf if both are installed
102 echo 'CONFIG_PROTECT_MASK="/etc/dconf"' >> 51dconf
103 echo 'GSETTINGS_BACKEND="dconf"' >> 51dconf
104 doenvd 51dconf
105
106 # Install bash-completion file properly to the system
107 rm -rv "${ED}usr/share/bash-completion" || die
108 dobashcomp "${S}/bin/completion/dconf"
109 }
110
111 pkg_postinst() {
112 gnome2_pkg_postinst
113 # Kill existing dconf-service processes as recommended by upstream due to
114 # possible changes in the dconf private dbus API.
115 # dconf-service will be dbus-activated on next use.
116 pids=$(pgrep -x dconf-service)
117 if [[ $? == 0 ]]; then
118 ebegin "Stopping dconf-service; it will automatically restart on demand"
119 kill ${pids}
120 eend $?
121 fi
122 }