2009-05-14 16:09:17 +02:00
|
|
|
# Template file for 'GConf'
|
|
|
|
pkgname=GConf
|
2011-11-01 05:44:19 +01:00
|
|
|
version=3.2.3
|
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
|
2011-09-29 10:30:13 +02:00
|
|
|
configure_args="--without-openldap --with-gtk=3.0 --enable-defaults-service
|
|
|
|
--disable-orbit"
|
2011-11-12 09:45:15 +01: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"
|
2011-11-01 05:44:19 +01:00
|
|
|
checksum=9eb55dd1d009b6eba9c32e3fae87d3aa45a33629a5e2031ed9f5acb05efaa149
|
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
|
|
|
|
2010-10-24 07:39:47 +02:00
|
|
|
|
2009-05-14 16:09:17 +02:00
|
|
|
Add_dependency build pkg-config
|
|
|
|
Add_dependency build intltool
|
2011-07-12 00:10:07 +02:00
|
|
|
Add_dependency build gtk+3-devel
|
2010-02-28 06:30:13 +01:00
|
|
|
Add_dependency build dbus-glib-devel
|
|
|
|
Add_dependency build polkit-devel
|
|
|
|
Add_dependency build libxml2-devel
|
2010-10-24 17:44:20 +02:00
|
|
|
Add_dependency build gobject-introspection
|
2010-04-11 12:51:56 +02:00
|
|
|
|
|
|
|
post_install()
|
|
|
|
{
|
|
|
|
# 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
|
|
|
|
}
|