# Template file for 'GConf'
pkgname=GConf
version=3.2.6
revision=4
build_style=gnu-configure
configure_args="--without-openldap --enable-gtk --enable-defaults-service
 --disable-orbit --enable-gsettings-backend --disable-static"
conf_files="/etc/gconf/2/path"
hostmakedepends="libtool pkg-config intltool glib-devel"
makedepends="gtk+3-devel dbus-glib-devel polkit-devel libxml2-devel"
short_desc="A process-transparent configuration system"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://projects.gnome.org/gconf"
license="GPL-2"
distfiles="${GNOME_SITE}/GConf/3.2/GConf-${version}.tar.xz"
checksum=1912b91803ab09a5eed34d364bf09fe3a2a9c96751fde03a4e0cfa51a04d784c

# Package build options
build_options="gir"
desc_option_gir="Enable support for building gobject introspection data"

# Disable gir for cross builds.
if [ -z "$CROSS_BUILD" ]; then
	build_options_default="gir"
fi

if [ "$build_option_gir" ]; then
	configure_args+=" --enable-introspection"
	makedepends+=" gobject-introspection"
else
	configure_args+=" --disable-introspection"
fi

pre_configure() {
	libtoolize -f
}

post_install() {
	# Create GCONF_SCHEMAS_DIR
	vmkdir 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
		vmkdir etc/gconf/gconf.xml.${d}
		touch -f ${DESTDIR}/etc/gconf/gconf.xml.${d}/.empty_on_purpose
	done
}

GConf-devel_package() {
	depends="glib-devel dbus-devel ${sourcepkg}>=${version}_${revision}"
	short_desc+=" - development files"
	pkg_install() {
		vmove usr/include
		vmove usr/lib/pkgconfig
		vmove "usr/lib/*.so"
		if [ "$build_option_gir" ]; then
			vmove usr/share/gir-1.0
		fi
		vmove usr/share/sgml
		vmove usr/share/aclocal
		vmove usr/share/gtk-doc
		# Install gconf-merge-schema
		vinstall ${FILESDIR}/gconf-merge-schema.sh 755 usr/bin gconf-merge-schema
	}
}
