Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 30897 - (hide annotations) (download)
Tue May 15 06:46:15 2018 UTC (6 years ago) by niro
File size: 882 byte(s)
-disabled src_check
1 niro 30895 # $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 niro 30896 sminclude mtools gnome2 meson
22 niro 30897 msetfeature "!check" # dbus test will fail, because of buildroot
23 niro 30895
24     UP2DATE="updatecmd_gnome ${PNAME}"
25    
26     src_install_dconf()
27     {
28     cd ${SRCDIR}
29 niro 30896 meson_src_install || die
30 niro 30895
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     }