Magellan Linux

Contents of /trunk/extras/dconf/dconf-0.28.0-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 30896 - (show annotations) (download)
Tue May 15 06:24:04 2018 UTC (5 years, 11 months ago) by niro
File size: 817 byte(s)
-use meson
1 # $Id$
2
3 PNAME="dconf"
4 PVER="0.28.0"
5 PBUILD="r1"
6
7 PCAT="gnome-base"
8
9 DESCRIPTION="A low-level configuration system."
10 HOMEPAGE="http://www.gnome.org/"
11
12 DEPEND=">= dev-libs/glib2-2.56
13 >= sys-apps/dbus-1.10"
14
15 SDEPEND=">= dev-util/pkgconfig-0.25
16 >= dev-lang/vala-0.40
17 >= app-text/docbook-xsl-stylesheets-1.78"
18
19 SRCFILE="${PNAME}-${PVER}.tar.xz"
20
21 sminclude mtools gnome2 meson
22
23 UP2DATE="updatecmd_gnome ${PNAME}"
24
25 src_install_dconf()
26 {
27 cd ${SRCDIR}
28 meson_src_install || die
29
30 # GSettings backend may be one of: memory, gconf, dconf
31 # Only dconf is really considered functional by upstream
32 # must have it enabled over gconf if both are installed
33 minstalldir /etc/env.d || die
34 MCONFIG="/etc/env.d/51dconf"
35 mclearconfig || die
36 maddconfig 'CONFIG_PROTECT_MASK="/etc/dconf"'
37 maddconfig 'GSETTINGS_BACKEND="dconf"'
38 }