Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 01/12] package/libsecret: enable gobject-introspection support
@ 2020-04-01  0:21 aduskett at gmail.com
  2020-04-01  0:21 ` [Buildroot] [PATCH 02/12] package/pango: " aduskett at gmail.com
                   ` (11 more replies)
  0 siblings, 12 replies; 16+ messages in thread
From: aduskett at gmail.com @ 2020-04-01  0:21 UTC (permalink / raw)
  To: buildroot

From: Adam Duskett <Aduskett@gmail.com>

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>
---
 package/libsecret/libsecret.mk | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/package/libsecret/libsecret.mk b/package/libsecret/libsecret.mk
index b48d2e7086..f87df47097 100644
--- a/package/libsecret/libsecret.mk
+++ b/package/libsecret/libsecret.mk
@@ -15,11 +15,17 @@ LIBSECRET_CONF_OPTS = \
 	--disable-manpages \
 	--disable-strict \
 	--disable-coverage \
-	--enable-introspection=no \
 	--enable-vala=no
 LIBSECRET_LICENSE = LGPL-2.1+
 LIBSECRET_LICENSE_FILES = COPYING
 
+ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
+LIBSECRET_CONF_OPTS += --enable-introspection=yes
+LIBSECRET_DEPENDENCIES += gobject-introspection
+else
+LIBSECRET_CONF_OPTS += --enable-introspection=no
+endif
+
 ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
 LIBSECRET_DEPENDENCIES += libgcrypt
 LIBSECRET_CONF_OPTS += --enable-gcrypt \
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 02/12] package/pango: enable gobject-introspection support
  2020-04-01  0:21 [Buildroot] [PATCH 01/12] package/libsecret: enable gobject-introspection support aduskett at gmail.com
@ 2020-04-01  0:21 ` aduskett at gmail.com
  2020-04-01  5:22   ` Thomas Petazzoni
  2020-04-01  0:21 ` [Buildroot] [PATCH 03/12] package/libgtk2: " aduskett at gmail.com
                   ` (10 subsequent siblings)
  11 siblings, 1 reply; 16+ messages in thread
From: aduskett at gmail.com @ 2020-04-01  0:21 UTC (permalink / raw)
  To: buildroot

From: Adam Duskett <Aduskett@gmail.com>

If gobject-introspection is selected, add the gobject-introspection package to
the dependency list and set the conf opt --enable-introspection for both host
and target.

Signed-off-by: Adam Duskett <Aduskett@gmail.com>
---
 package/pango/pango.mk | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/package/pango/pango.mk b/package/pango/pango.mk
index 48edd18b05..046501da30 100644
--- a/package/pango/pango.mk
+++ b/package/pango/pango.mk
@@ -12,8 +12,8 @@ PANGO_INSTALL_STAGING = YES
 PANGO_LICENSE = LGPL-2.0+
 PANGO_LICENSE_FILES = COPYING
 
-PANGO_CONF_OPTS = -Duse_fontconfig=true -Dintrospection=false
-HOST_PANGO_CONF_OPTS = -Duse_fontconfig=true -Dintrospection=false
+PANGO_CONF_OPTS = -Duse_fontconfig=true
+HOST_PANGO_CONF_OPTS = -Duse_fontconfig=true
 
 PANGO_DEPENDENCIES = \
 	$(TARGET_NLS_DEPENDENCIES) \
@@ -33,6 +33,16 @@ HOST_PANGO_DEPENDENCIES = \
 	host-fontconfig \
 	host-freetype
 
+ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
+PANGO_CONF_OPTS += -Dintrospection=true
+HOST_PANGO_CONF_OPTS += -Dintrospection=true
+PANGO_DEPENDENCIES += gobject-introspection
+HOST_PANGO_DEPENDENCIES += host-gobject-introspection
+else
+PANGO_CONF_OPTS += -Dintrospection=false
+HOST_PANGO_CONF_OPTS += -Dintrospection=false
+endif
+
 ifeq ($(BR2_PACKAGE_XORG7),y)
 PANGO_DEPENDENCIES += xlib_libX11
 endif
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 03/12] package/libgtk2: enable gobject-introspection support
  2020-04-01  0:21 [Buildroot] [PATCH 01/12] package/libsecret: enable gobject-introspection support aduskett at gmail.com
  2020-04-01  0:21 ` [Buildroot] [PATCH 02/12] package/pango: " aduskett at gmail.com
@ 2020-04-01  0:21 ` aduskett at gmail.com
  2020-04-01  0:21 ` [Buildroot] [PATCH 04/12] package/libgtk3: " aduskett at gmail.com
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: aduskett at gmail.com @ 2020-04-01  0:21 UTC (permalink / raw)
  To: buildroot

From: Adam Duskett <Aduskett@gmail.com>

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>
---
 package/libgtk2/libgtk2.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/libgtk2/libgtk2.mk b/package/libgtk2/libgtk2.mk
index 710e6e47db..9b7d39a532 100644
--- a/package/libgtk2/libgtk2.mk
+++ b/package/libgtk2/libgtk2.mk
@@ -35,6 +35,13 @@ LIBGTK2_CONF_OPTS += \
 LIBGTK2_DEPENDENCIES += \
 	fontconfig xlib_libX11 xlib_libXext xlib_libXrender
 
+ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
+LIBGTK2_CONF_OPTS += --enable-introspection
+LIBGTK2_DEPENDENCIES += gobject-introspection
+else
+LIBGTK2_CONF_OPTS += --disable-introspection
+endif
+
 ifeq ($(BR2_PACKAGE_XLIB_LIBXINERAMA),y)
 LIBGTK2_CONF_OPTS += --enable-xinerama
 LIBGTK2_DEPENDENCIES += xlib_libXinerama
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 04/12] package/libgtk3: enable gobject-introspection support
  2020-04-01  0:21 [Buildroot] [PATCH 01/12] package/libsecret: enable gobject-introspection support aduskett at gmail.com
  2020-04-01  0:21 ` [Buildroot] [PATCH 02/12] package/pango: " aduskett at gmail.com
  2020-04-01  0:21 ` [Buildroot] [PATCH 03/12] package/libgtk2: " aduskett at gmail.com
@ 2020-04-01  0:21 ` aduskett at gmail.com
  2020-04-01  0:21 ` [Buildroot] [PATCH 05/12] package/json-glib: " aduskett at gmail.com
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: aduskett at gmail.com @ 2020-04-01  0:21 UTC (permalink / raw)
  To: buildroot

From: Adam Duskett <Aduskett@gmail.com>

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>
---
 package/libgtk3/libgtk3.mk | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/package/libgtk3/libgtk3.mk b/package/libgtk3/libgtk3.mk
index 7df4426fa6..dbb975dbfd 100644
--- a/package/libgtk3/libgtk3.mk
+++ b/package/libgtk3/libgtk3.mk
@@ -20,7 +20,6 @@ LIBGTK3_CONF_ENV = \
 
 LIBGTK3_CONF_OPTS = \
 	--disable-glibtest \
-	--disable-introspection \
 	--enable-explicit-deps=no
 HOST_LIBGTK3_CONF_OPTS = --disable-introspection
 
@@ -43,6 +42,13 @@ else
 LIBGTK3_CONF_OPTS += --disable-x11-backend
 endif
 
+ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
+LIBGTK3_CONF_OPTS += --enable-introspection
+LIBGTK3_DEPENDENCIES += gobject-introspection
+else
+LIBGTK3_CONF_OPTS += --disable-introspection
+endif
+
 ifeq ($(BR2_PACKAGE_LIBGTK3_WAYLAND),y)
 LIBGTK3_DEPENDENCIES += wayland wayland-protocols libxkbcommon
 LIBGTK3_CONF_OPTS += --enable-wayland-backend
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 05/12] package/json-glib: enable gobject-introspection support
  2020-04-01  0:21 [Buildroot] [PATCH 01/12] package/libsecret: enable gobject-introspection support aduskett at gmail.com
                   ` (2 preceding siblings ...)
  2020-04-01  0:21 ` [Buildroot] [PATCH 04/12] package/libgtk3: " aduskett at gmail.com
@ 2020-04-01  0:21 ` aduskett at gmail.com
  2020-04-01  0:21 ` [Buildroot] [PATCH 06/12] package/gcr: " aduskett at gmail.com
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: aduskett at gmail.com @ 2020-04-01  0:21 UTC (permalink / raw)
  To: buildroot

From: Adam Duskett <Aduskett@gmail.com>

If gobject-introspection is selected, add the gobject-introspection package to
the dependency list and set the conf opt -Dintrospection=true.

Signed-off-by: Adam Duskett <Aduskett@gmail.com>
---
 package/json-glib/json-glib.mk | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/package/json-glib/json-glib.mk b/package/json-glib/json-glib.mk
index 7405b28b2e..accdb4f888 100644
--- a/package/json-glib/json-glib.mk
+++ b/package/json-glib/json-glib.mk
@@ -17,7 +17,12 @@ JSON_GLIB_DEPENDENCIES = \
 	host-pkgconf \
 	libglib2
 
-JSON_GLIB_CONF_OPTS = -Dintrospection=false
+ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
+JSON_GLIB_CONF_OPTS += -Dintrospection=true
+JSON_GLIB_DEPENDENCIES += gobject-introspection
+else
+JSON_GLIB_CONF_OPTS += -Dintrospection=false
+endif
 
 JSON_GLIB_LDFLAGS = $(TARGET_LDFLAGS) $(TARGET_NLS_LIBS)
 
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 06/12] package/gcr: enable gobject-introspection support
  2020-04-01  0:21 [Buildroot] [PATCH 01/12] package/libsecret: enable gobject-introspection support aduskett at gmail.com
                   ` (3 preceding siblings ...)
  2020-04-01  0:21 ` [Buildroot] [PATCH 05/12] package/json-glib: " aduskett at gmail.com
@ 2020-04-01  0:21 ` aduskett at gmail.com
  2020-04-19 14:28   ` Thomas Petazzoni
  2020-04-01  0:21 ` [Buildroot] [PATCH 07/12] package/gconf: " aduskett at gmail.com
                   ` (6 subsequent siblings)
  11 siblings, 1 reply; 16+ messages in thread
From: aduskett at gmail.com @ 2020-04-01  0:21 UTC (permalink / raw)
  To: buildroot

From: Adam Duskett <Aduskett@gmail.com>

If gobject-introspection is selected, add the gobject-introspection package to
the dependency list and set the conf opt --with-introspection.

Signed-off-by: Adam Duskett <Aduskett@gmail.com>
---
 package/gcr/gcr.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/gcr/gcr.mk b/package/gcr/gcr.mk
index 2fe583978c..56bfe1110a 100644
--- a/package/gcr/gcr.mk
+++ b/package/gcr/gcr.mk
@@ -23,6 +23,13 @@ GCR_CONF_OPTS = \
 GCR_LICENSE = LGPL-2.1+
 GCR_LICENSE_FILES = COPYING
 
+ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
+GCR_DEPENDENCIES += gobject-introspection
+GCR_CONF_OPTS += --with-introspection
+else
+GCR_CONF_OPTS += --without-introspection
+endif
+
 # Only the X11 backend is supported for the simple GUI
 ifeq ($(BR2_PACKAGE_LIBGTK3_X11),y)
 GCR_DEPENDENCIES += libgtk3
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 07/12] package/gconf: enable gobject-introspection support
  2020-04-01  0:21 [Buildroot] [PATCH 01/12] package/libsecret: enable gobject-introspection support aduskett at gmail.com
                   ` (4 preceding siblings ...)
  2020-04-01  0:21 ` [Buildroot] [PATCH 06/12] package/gcr: " aduskett at gmail.com
@ 2020-04-01  0:21 ` aduskett at gmail.com
  2020-04-01  0:21 ` [Buildroot] [PATCH 08/12] package/atk: " aduskett at gmail.com
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: aduskett at gmail.com @ 2020-04-01  0:21 UTC (permalink / raw)
  To: buildroot

From: Adam Duskett <Aduskett@gmail.com>

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>
---
 package/gconf/gconf.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/gconf/gconf.mk b/package/gconf/gconf.mk
index 60ced95e18..c468d1433c 100644
--- a/package/gconf/gconf.mk
+++ b/package/gconf/gconf.mk
@@ -13,4 +13,11 @@ GCONF_DEPENDENCIES = dbus dbus-glib libglib2 libxml2 \
 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))
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 08/12] package/atk: enable gobject-introspection support
  2020-04-01  0:21 [Buildroot] [PATCH 01/12] package/libsecret: enable gobject-introspection support aduskett at gmail.com
                   ` (5 preceding siblings ...)
  2020-04-01  0:21 ` [Buildroot] [PATCH 07/12] package/gconf: " aduskett at gmail.com
@ 2020-04-01  0:21 ` aduskett at gmail.com
  2020-05-11  5:12   ` Thomas Petazzoni
  2020-04-01  0:21 ` [Buildroot] [PATCH 09/12] package/libgee: " aduskett at gmail.com
                   ` (4 subsequent siblings)
  11 siblings, 1 reply; 16+ messages in thread
From: aduskett at gmail.com @ 2020-04-01  0:21 UTC (permalink / raw)
  To: buildroot

From: Adam Duskett <Aduskett@gmail.com>

If gobject-introspection is selected, add the gobject-introspection package to
the dependency list and set the conf opt -Dintrospection=true.

Signed-off-by: Adam Duskett <Aduskett@gmail.com>
---
 package/atk/atk.mk | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/package/atk/atk.mk b/package/atk/atk.mk
index 7039666059..a16143d2c0 100644
--- a/package/atk/atk.mk
+++ b/package/atk/atk.mk
@@ -13,7 +13,13 @@ ATK_LICENSE_FILES = COPYING
 ATK_INSTALL_STAGING = YES
 ATK_DEPENDENCIES = libglib2 $(TARGET_NLS_DEPENDENCIES)
 
-ATK_CONF_OPTS = -Dintrospection=false
+ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
+ATK_CONF_OPTS += -Dintrospection=true
+ATK_DEPENDENCIES += gobject-introspection
+else
+ATK_CONF_OPTS += -Dintrospection=false
+endif
+
 ATK_LDFLAGS = $(TARGET_LDFLAGS) $(TARGET_NLS_LIBS)
 
 $(eval $(meson-package))
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 09/12] package/libgee: enable gobject-introspection support
  2020-04-01  0:21 [Buildroot] [PATCH 01/12] package/libsecret: enable gobject-introspection support aduskett at gmail.com
                   ` (6 preceding siblings ...)
  2020-04-01  0:21 ` [Buildroot] [PATCH 08/12] package/atk: " aduskett at gmail.com
@ 2020-04-01  0:21 ` aduskett at gmail.com
  2020-04-01  0:21 ` [Buildroot] [PATCH 10/12] package/libmediaart: " aduskett at gmail.com
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: aduskett at gmail.com @ 2020-04-01  0:21 UTC (permalink / raw)
  To: buildroot

From: Adam Duskett <Aduskett@gmail.com>

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>
---
 package/libgee/libgee.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/libgee/libgee.mk b/package/libgee/libgee.mk
index 81fd354fe8..4b2581e171 100644
--- a/package/libgee/libgee.mk
+++ b/package/libgee/libgee.mk
@@ -13,4 +13,11 @@ LIBGEE_INSTALL_STAGING = YES
 LIBGEE_LICENSE = LGPL-2.1+
 LIBGEE_LICENSE_FILES = COPYING
 
+ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
+LIBGEE_CONF_OPTS += --enable-introspection
+LIBGEE_DEPENDENCIES += gobject-introspection
+else
+LIBGEE_CONF_OPTS += --disable-introspection
+endif
+
 $(eval $(autotools-package))
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 10/12] package/libmediaart: enable gobject-introspection support
  2020-04-01  0:21 [Buildroot] [PATCH 01/12] package/libsecret: enable gobject-introspection support aduskett at gmail.com
                   ` (7 preceding siblings ...)
  2020-04-01  0:21 ` [Buildroot] [PATCH 09/12] package/libgee: " aduskett at gmail.com
@ 2020-04-01  0:21 ` aduskett at gmail.com
  2020-04-01  0:21 ` [Buildroot] [PATCH 11/12] package/rygel: " aduskett at gmail.com
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: aduskett at gmail.com @ 2020-04-01  0:21 UTC (permalink / raw)
  To: buildroot

From: Adam Duskett <Aduskett@gmail.com>

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>
---
 package/libmediaart/libmediaart.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/libmediaart/libmediaart.mk b/package/libmediaart/libmediaart.mk
index 4933b74c19..0d110a43e5 100644
--- a/package/libmediaart/libmediaart.mk
+++ b/package/libmediaart/libmediaart.mk
@@ -33,4 +33,11 @@ LIBMEDIAART_CONF_OPTS += \
 	--disable-qt
 endif
 
+ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
+LIBMEDIAART_CONF_OPTS += --enable-introspection
+LIBMEDIAART_DEPENDENCIES += gobject-introspection
+else
+LIBMEDIAART_CONF_OPTS += --disable-introspection
+endif
+
 $(eval $(autotools-package))
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 11/12] package/rygel: enable gobject-introspection support
  2020-04-01  0:21 [Buildroot] [PATCH 01/12] package/libsecret: enable gobject-introspection support aduskett at gmail.com
                   ` (8 preceding siblings ...)
  2020-04-01  0:21 ` [Buildroot] [PATCH 10/12] package/libmediaart: " aduskett at gmail.com
@ 2020-04-01  0:21 ` aduskett at gmail.com
  2020-04-01  0:21 ` [Buildroot] [PATCH 12/12] package/vte: " aduskett at gmail.com
  2020-04-06 20:38 ` [Buildroot] [PATCH 01/12] package/libsecret: " Yann E. MORIN
  11 siblings, 0 replies; 16+ messages in thread
From: aduskett at gmail.com @ 2020-04-01  0:21 UTC (permalink / raw)
  To: buildroot

From: Adam Duskett <Aduskett@gmail.com>

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>
---
 package/rygel/rygel.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/rygel/rygel.mk b/package/rygel/rygel.mk
index c43030d69f..21c8ebee6a 100644
--- a/package/rygel/rygel.mk
+++ b/package/rygel/rygel.mk
@@ -33,6 +33,13 @@ ifeq ($(BR2_PACKAGE_GDK_PIXBUF),y)
 RYGEL_DEPENDENCIES += gdk-pixbuf
 endif
 
+ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
+RYGEL_CONF_OPTS += --enable-introspection
+RYGEL_DEPENDENCIES += gobject-introspection
+else
+RYGEL_CONF_OPTS += --disable-introspection
+endif
+
 ifeq ($(BR2_PACKAGE_RYGEL_MEDIA_ENGINE_GSTREAMER1),y)
 RYGEL_CONF_OPTS += \
 	--with-media-engine=gstreamer \
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 12/12] package/vte: enable gobject-introspection support
  2020-04-01  0:21 [Buildroot] [PATCH 01/12] package/libsecret: enable gobject-introspection support aduskett at gmail.com
                   ` (9 preceding siblings ...)
  2020-04-01  0:21 ` [Buildroot] [PATCH 11/12] package/rygel: " aduskett at gmail.com
@ 2020-04-01  0:21 ` aduskett at gmail.com
  2020-04-06 20:38 ` [Buildroot] [PATCH 01/12] package/libsecret: " Yann E. MORIN
  11 siblings, 0 replies; 16+ messages in thread
From: aduskett at gmail.com @ 2020-04-01  0:21 UTC (permalink / raw)
  To: buildroot

From: Adam Duskett <Aduskett@gmail.com>

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>
---
 package/vte/vte.mk | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/package/vte/vte.mk b/package/vte/vte.mk
index 0d5db34b62..6c8d1433f5 100644
--- a/package/vte/vte.mk
+++ b/package/vte/vte.mk
@@ -10,7 +10,14 @@ VTE_SITE = http://ftp.gnome.org/pub/gnome/sources/vte/0.48
 VTE_DEPENDENCIES = host-intltool host-pkgconf libgtk3 libxml2 pcre2
 VTE_LICENSE = LGPL-2.1+
 VTE_LICENSE_FILES = COPYING
-VTE_CONF_OPTS += --disable-introspection --disable-vala
+VTE_CONF_OPTS += --disable-vala
+
+ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
+VTE_CONF_OPTS += --enable-introspection
+VTE_DEPENDENCIES += gobject-introspection
+else
+VTE_CONF_OPTS += --disable-introspection
+endif
 
 ifeq ($(BR2_PACKAGE_GNUTLS),y)
 VTE_CONF_OPTS += --with-gnutls
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 02/12] package/pango: enable gobject-introspection support
  2020-04-01  0:21 ` [Buildroot] [PATCH 02/12] package/pango: " aduskett at gmail.com
@ 2020-04-01  5:22   ` Thomas Petazzoni
  0 siblings, 0 replies; 16+ messages in thread
From: Thomas Petazzoni @ 2020-04-01  5:22 UTC (permalink / raw)
  To: buildroot

On Tue, 31 Mar 2020 17:21:24 -0700
aduskett at gmail.com wrote:

> From: Adam Duskett <Aduskett@gmail.com>
> 
> If gobject-introspection is selected, add the gobject-introspection package to
> the dependency list and set the conf opt --enable-introspection for both host
> and target.
> 
> Signed-off-by: Adam Duskett <Aduskett@gmail.com>

Why for the host ?

Best regards,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 01/12] package/libsecret: enable gobject-introspection support
  2020-04-01  0:21 [Buildroot] [PATCH 01/12] package/libsecret: enable gobject-introspection support aduskett at gmail.com
                   ` (10 preceding siblings ...)
  2020-04-01  0:21 ` [Buildroot] [PATCH 12/12] package/vte: " aduskett at gmail.com
@ 2020-04-06 20:38 ` Yann E. MORIN
  11 siblings, 0 replies; 16+ messages in thread
From: Yann E. MORIN @ 2020-04-06 20:38 UTC (permalink / raw)
  To: buildroot

Adam, All,

On 2020-03-31 17:21 -0700, aduskett at gmail.com spake thusly:
> From: Adam Duskett <Aduskett@gmail.com>
> 
> 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>

Except for patch 2, on which Thomas asked a question that was not
answered, I have applied the entire series to master, thanks!

Regards,
Yann E. MORIN.

> ---
>  package/libsecret/libsecret.mk | 8 +++++++-
>  1 file changed, 7 insertions(+), 1 deletion(-)
> 
> diff --git a/package/libsecret/libsecret.mk b/package/libsecret/libsecret.mk
> index b48d2e7086..f87df47097 100644
> --- a/package/libsecret/libsecret.mk
> +++ b/package/libsecret/libsecret.mk
> @@ -15,11 +15,17 @@ LIBSECRET_CONF_OPTS = \
>  	--disable-manpages \
>  	--disable-strict \
>  	--disable-coverage \
> -	--enable-introspection=no \
>  	--enable-vala=no
>  LIBSECRET_LICENSE = LGPL-2.1+
>  LIBSECRET_LICENSE_FILES = COPYING
>  
> +ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
> +LIBSECRET_CONF_OPTS += --enable-introspection=yes
> +LIBSECRET_DEPENDENCIES += gobject-introspection
> +else
> +LIBSECRET_CONF_OPTS += --enable-introspection=no
> +endif
> +
>  ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
>  LIBSECRET_DEPENDENCIES += libgcrypt
>  LIBSECRET_CONF_OPTS += --enable-gcrypt \
> -- 
> 2.25.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 06/12] package/gcr: enable gobject-introspection support
  2020-04-01  0:21 ` [Buildroot] [PATCH 06/12] package/gcr: " aduskett at gmail.com
@ 2020-04-19 14:28   ` Thomas Petazzoni
  0 siblings, 0 replies; 16+ messages in thread
From: Thomas Petazzoni @ 2020-04-19 14:28 UTC (permalink / raw)
  To: buildroot

On Tue, 31 Mar 2020 17:21:28 -0700
aduskett at gmail.com wrote:

> From: Adam Duskett <Aduskett@gmail.com>
> 
> If gobject-introspection is selected, add the gobject-introspection package to
> the dependency list and set the conf opt --with-introspection.
> 
> Signed-off-by: Adam Duskett <Aduskett@gmail.com>
> ---
>  package/gcr/gcr.mk | 7 +++++++
>  1 file changed, 7 insertions(+)

This fails to build:

  XSLTPROC Gcr-3.gir
/bin/bash: xsltproc: command not found
Makefile:6878: recipe for target 'Gcr-3.gir' failed

See:

  http://autobuild.buildroot.net/results/178/178ea11b71c87e167fc3f3787fb31ce4ebacb4ff/build-end.log

Could you have a look ?

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 08/12] package/atk: enable gobject-introspection support
  2020-04-01  0:21 ` [Buildroot] [PATCH 08/12] package/atk: " aduskett at gmail.com
@ 2020-05-11  5:12   ` Thomas Petazzoni
  0 siblings, 0 replies; 16+ messages in thread
From: Thomas Petazzoni @ 2020-05-11  5:12 UTC (permalink / raw)
  To: buildroot

Hello,

On Tue, 31 Mar 2020 17:21:30 -0700
aduskett at gmail.com wrote:

> From: Adam Duskett <Aduskett@gmail.com>
> 
> If gobject-introspection is selected, add the gobject-introspection package to
> the dependency list and set the conf opt -Dintrospection=true.
> 
> Signed-off-by: Adam Duskett <Aduskett@gmail.com>

This patch breaks the build:

  http://autobuild.buildroot.net/results/f40/f40805c59cef2bc56ea7f816f09c489fc631e7af/build-end.log

/bin/sh: 1: /tmp/instance-2/output-1/host/bin/../arm-buildroot-linux-gnueabihf/sysroot/tmp/instance-2/output-1/host/bin/g-ir-scanner: not found

Could you have a look ?

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2020-05-11  5:12 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-01  0:21 [Buildroot] [PATCH 01/12] package/libsecret: enable gobject-introspection support aduskett at gmail.com
2020-04-01  0:21 ` [Buildroot] [PATCH 02/12] package/pango: " aduskett at gmail.com
2020-04-01  5:22   ` Thomas Petazzoni
2020-04-01  0:21 ` [Buildroot] [PATCH 03/12] package/libgtk2: " aduskett at gmail.com
2020-04-01  0:21 ` [Buildroot] [PATCH 04/12] package/libgtk3: " aduskett at gmail.com
2020-04-01  0:21 ` [Buildroot] [PATCH 05/12] package/json-glib: " aduskett at gmail.com
2020-04-01  0:21 ` [Buildroot] [PATCH 06/12] package/gcr: " aduskett at gmail.com
2020-04-19 14:28   ` Thomas Petazzoni
2020-04-01  0:21 ` [Buildroot] [PATCH 07/12] package/gconf: " aduskett at gmail.com
2020-04-01  0:21 ` [Buildroot] [PATCH 08/12] package/atk: " aduskett at gmail.com
2020-05-11  5:12   ` Thomas Petazzoni
2020-04-01  0:21 ` [Buildroot] [PATCH 09/12] package/libgee: " aduskett at gmail.com
2020-04-01  0:21 ` [Buildroot] [PATCH 10/12] package/libmediaart: " aduskett at gmail.com
2020-04-01  0:21 ` [Buildroot] [PATCH 11/12] package/rygel: " aduskett at gmail.com
2020-04-01  0:21 ` [Buildroot] [PATCH 12/12] package/vte: " aduskett at gmail.com
2020-04-06 20:38 ` [Buildroot] [PATCH 01/12] package/libsecret: " Yann E. MORIN

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox