Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 26225 - (show annotations) (download)
Sun Jun 21 16:40:28 2015 UTC (8 years, 11 months ago) by niro
File size: 954 byte(s)
-dconf-editor was split by upstream
1 # $Id$
2
3 PNAME="dconf"
4 PVER="0.24.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.44
13 >= sys-apps/dbus-1.8"
14
15 SDEPEND=">= dev-util/pkgconfig-0.25
16 >= dev-lang/vala-0.28
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 }