Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 30277 - (hide annotations) (download)
Thu Nov 16 08:19:10 2017 UTC (6 years, 7 months ago) by niro
File size: 955 byte(s)
auto added: ver bump to 0.26.1-r1
1 niro 30277 # $Id$
2    
3     PNAME="dconf"
4     PVER="0.26.1"
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.48
13     >= sys-apps/dbus-1.10"
14    
15     SDEPEND=">= dev-util/pkgconfig-0.25
16     >= dev-lang/vala-0.32
17     >= app-text/docbook-xsl-stylesheets-1.78"
18    
19     SRCFILE="${PNAME}-${PVER}.tar.xz"
20    
21     sminclude mtools gnome2
22    
23     UP2DATE="updatecmd_gnome ${PNAME}"
24    
25     src_compile()
26     {
27     cd ${SRCDIR}
28    
29     gn2_configure --disable-schema-compile || die
30     mmake || die
31     }
32    
33     src_install_dconf()
34     {
35     cd ${SRCDIR}
36     mmake DESTDIR=${BINDIR} install || die
37    
38     # GSettings backend may be one of: memory, gconf, dconf
39     # Only dconf is really considered functional by upstream
40     # must have it enabled over gconf if both are installed
41     minstalldir /etc/env.d || die
42     MCONFIG="/etc/env.d/51dconf"
43     mclearconfig || die
44     maddconfig 'CONFIG_PROTECT_MASK="/etc/dconf"'
45     maddconfig 'GSETTINGS_BACKEND="dconf"'
46    
47     minstalldocs COPYING NEWS || die
48     }