2009-05-14 16:09:17 +02:00
|
|
|
# Template file for 'GConf'
|
|
|
|
pkgname=GConf
|
2012-03-20 11:19:23 +01:00
|
|
|
version=3.2.5
|
2011-09-28 16:20:11 +02:00
|
|
|
distfiles="${GNOME_SITE}/GConf/3.2/GConf-$version.tar.xz"
|
2011-10-24 14:14:47 +02:00
|
|
|
build_style=gnu-configure
|
2012-03-20 11:19:23 +01:00
|
|
|
configure_args="--without-openldap --enable-gtk --enable-defaults-service
|
|
|
|
--disable-orbit --enable-gsettings-backend"
|
2012-05-23 18:26:56 +02:00
|
|
|
makedepends="pkg-config intltool gobject-introspection gtk+3-devel dbus-glib-devel polkit-devel libxml2-devel"
|
2012-06-03 09:08:53 +02:00
|
|
|
revision=1
|
2009-05-14 16:09:17 +02:00
|
|
|
short_desc="A process-transparent configuration system"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-06-29 15:44:54 +02:00
|
|
|
homepage="http://projects.gnome.org/gconf"
|
|
|
|
license="GPL-2"
|
2012-03-20 11:19:23 +01:00
|
|
|
checksum=4ddea9503a212ee126c5b46a0a958fd5484574c3cb6ef2baf38db02e819e58c6
|
2009-05-14 16:09:17 +02:00
|
|
|
long_desc="
|
|
|
|
GConf is a process-transparent configuration database API used to
|
|
|
|
store user preferences. It has pluggable backends and features to
|
|
|
|
support workgroup administration."
|
|
|
|
|
2010-04-11 12:51:56 +02:00
|
|
|
conf_files="/etc/gconf/2/path"
|
2011-03-02 20:36:07 +01:00
|
|
|
subpackages="$pkgname-devel"
|
2010-04-11 12:51:56 +02:00
|
|
|
|
|
|
|
|
2012-03-20 11:19:23 +01:00
|
|
|
post_install() {
|
2010-04-11 12:51:56 +02:00
|
|
|
# Create GCONF_SCHEMAS_DIR
|
|
|
|
install -d ${DESTDIR}/usr/share/gconf/schemas
|
|
|
|
touch -f ${DESTDIR}/usr/share/gconf/schemas/.empty_on_purpose
|
|
|
|
# Create required sysconfdir dirs.
|
|
|
|
for d in defaults mandatory system; do
|
|
|
|
install -d ${DESTDIR}/etc/gconf/gconf.xml.${d}
|
|
|
|
touch -f ${DESTDIR}/etc/gconf/gconf.xml.${d}/.empty_on_purpose
|
|
|
|
done
|
|
|
|
}
|