Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 30897 - (show annotations) (download)
Tue May 15 06:46:15 2018 UTC (5 years, 11 months ago) by niro
File size: 882 byte(s)
-disabled src_check
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 msetfeature "!check" # dbus test will fail, because of buildroot
23
24 UP2DATE="updatecmd_gnome ${PNAME}"
25
26 src_install_dconf()
27 {
28 cd ${SRCDIR}
29 meson_src_install || die
30
31 # GSettings backend may be one of: memory, gconf, dconf
32 # Only dconf is really considered functional by upstream
33 # must have it enabled over gconf if both are installed
34 minstalldir /etc/env.d || die
35 MCONFIG="/etc/env.d/51dconf"
36 mclearconfig || die
37 maddconfig 'CONFIG_PROTECT_MASK="/etc/dconf"'
38 maddconfig 'GSETTINGS_BACKEND="dconf"'
39 }