0609aeed7c
If gobject-introspection is selected, add the gobject-introspection package to the dependency list and set the conf opt --enable-introspection. Signed-off-by: Adam Duskett <Aduskett@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
24 lines
708 B
Makefile
24 lines
708 B
Makefile
################################################################################
|
|
#
|
|
# gconf
|
|
#
|
|
################################################################################
|
|
|
|
GCONF_VERSION = 3.2.6
|
|
GCONF_SOURCE = GConf-$(GCONF_VERSION).tar.xz
|
|
GCONF_SITE = http://ftp.gnome.org/pub/gnome/sources/GConf/3.2
|
|
GCONF_CONF_OPTS = --disable-orbit
|
|
GCONF_DEPENDENCIES = dbus dbus-glib libglib2 libxml2 \
|
|
host-intltool $(TARGET_NLS_DEPENDENCIES)
|
|
GCONF_LICENSE = LGPL-2.0+
|
|
GCONF_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
|
|
GCONF_CONF_OPTS += --enable-introspection
|
|
GCONF_DEPENDENCIES += gobject-introspection
|
|
else
|
|
GCONF_CONF_OPTS += --disable-introspection
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|