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