All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/6] gvfs: add libusb support
@ 2018-10-19 20:13 Fabrice Fontaine
  2018-10-19 20:13 ` [Buildroot] [PATCH 2/6] gvfs: use --enable-gudev option Fabrice Fontaine
                   ` (5 more replies)
  0 siblings, 6 replies; 12+ messages in thread
From: Fabrice Fontaine @ 2018-10-19 20:13 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/gvfs/gvfs.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/gvfs/gvfs.mk b/package/gvfs/gvfs.mk
index 19747b4cb0..b62923a500 100644
--- a/package/gvfs/gvfs.mk
+++ b/package/gvfs/gvfs.mk
@@ -99,6 +99,13 @@ else
 GVFS_CONF_OPTS += --disable-http
 endif
 
+ifeq ($(BR2_PACKAGE_LIBUSB),y)
+GVFS_DEPENDENCIES += libusb
+GVFS_CONF_OPTS += --enable-libusb
+else
+GVFS_CONF_OPTS += --disable-libusb
+endif
+
 ifeq ($(BR2_PACKAGE_SAMBA4),y)
 GVFS_DEPENDENCIES += samba4
 GVFS_CONF_OPTS += \
-- 
2.17.1

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

* [Buildroot] [PATCH 2/6] gvfs: use --enable-gudev option
  2018-10-19 20:13 [Buildroot] [PATCH 1/6] gvfs: add libusb support Fabrice Fontaine
@ 2018-10-19 20:13 ` Fabrice Fontaine
  2018-10-20 16:09   ` Peter Korsgaard
  2018-10-19 20:13 ` [Buildroot] [PATCH 3/6] gvfs: enable admin backend Fabrice Fontaine
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Fabrice Fontaine @ 2018-10-19 20:13 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/gvfs/gvfs.mk | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/package/gvfs/gvfs.mk b/package/gvfs/gvfs.mk
index b62923a500..82683d7da1 100644
--- a/package/gvfs/gvfs.mk
+++ b/package/gvfs/gvfs.mk
@@ -44,6 +44,9 @@ endif
 
 ifeq ($(BR2_PACKAGE_LIBGUDEV),y)
 GVFS_DEPENDENCIES += libgudev
+GVFS_CONF_OPTS  += --enable-gudev
+else
+GVFS_CONF_OPTS += --disable-gudev
 endif
 
 ifeq ($(BR2_PACKAGE_LIBARCHIVE),y)
-- 
2.17.1

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

* [Buildroot] [PATCH 3/6] gvfs: enable admin backend
  2018-10-19 20:13 [Buildroot] [PATCH 1/6] gvfs: add libusb support Fabrice Fontaine
  2018-10-19 20:13 ` [Buildroot] [PATCH 2/6] gvfs: use --enable-gudev option Fabrice Fontaine
@ 2018-10-19 20:13 ` Fabrice Fontaine
  2018-10-20 16:09   ` Peter Korsgaard
  2018-10-19 20:13 ` [Buildroot] [PATCH 4/6] gvfs: enable cdda backend Fabrice Fontaine
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Fabrice Fontaine @ 2018-10-19 20:13 UTC (permalink / raw)
  To: buildroot

Enable admin backend if libcap and polkit are available

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/gvfs/gvfs.mk | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/package/gvfs/gvfs.mk b/package/gvfs/gvfs.mk
index 82683d7da1..4ad66b8a6a 100644
--- a/package/gvfs/gvfs.mk
+++ b/package/gvfs/gvfs.mk
@@ -20,7 +20,6 @@ GVFS_CONF_ENV = ac_cv_path_LIBGCRYPT_CONFIG=$(STAGING_DIR)/usr/bin/libgcrypt-con
 # Most of these are missing library support
 GVFS_CONF_OPTS = \
 	--disable-afc \
-	--disable-admin \
 	--disable-cdda \
 	--disable-gcr \
 	--disable-gdu \
@@ -66,6 +65,13 @@ else
 GVFS_CONF_OPTS += --disable-bluray
 endif
 
+ifeq ($(BR2_PACKAGE_LIBCAP)$(BR2_PACKAGE_POLKIT),yy)
+GVFS_DEPENDENCIES += libcap polkit
+GVFS_CONF_OPTS += --enable-admin
+else
+GVFS_CONF_OPTS += --disable-admin
+endif
+
 ifeq ($(BR2_PACKAGE_LIBFUSE),y)
 GVFS_DEPENDENCIES += libfuse
 GVFS_CONF_OPTS += --enable-fuse
-- 
2.17.1

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

* [Buildroot] [PATCH 4/6] gvfs: enable cdda backend
  2018-10-19 20:13 [Buildroot] [PATCH 1/6] gvfs: add libusb support Fabrice Fontaine
  2018-10-19 20:13 ` [Buildroot] [PATCH 2/6] gvfs: use --enable-gudev option Fabrice Fontaine
  2018-10-19 20:13 ` [Buildroot] [PATCH 3/6] gvfs: enable admin backend Fabrice Fontaine
@ 2018-10-19 20:13 ` Fabrice Fontaine
  2018-10-20 16:09   ` Peter Korsgaard
  2018-10-19 20:13 ` [Buildroot] [PATCH 5/6] gvfs: enable gcr Fabrice Fontaine
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Fabrice Fontaine @ 2018-10-19 20:13 UTC (permalink / raw)
  To: buildroot

Enable cdda if libcdio-paranoia and libgudev are available

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/gvfs/gvfs.mk | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/package/gvfs/gvfs.mk b/package/gvfs/gvfs.mk
index 4ad66b8a6a..b0722ffb00 100644
--- a/package/gvfs/gvfs.mk
+++ b/package/gvfs/gvfs.mk
@@ -20,7 +20,6 @@ GVFS_CONF_ENV = ac_cv_path_LIBGCRYPT_CONFIG=$(STAGING_DIR)/usr/bin/libgcrypt-con
 # Most of these are missing library support
 GVFS_CONF_OPTS = \
 	--disable-afc \
-	--disable-cdda \
 	--disable-gcr \
 	--disable-gdu \
 	--disable-goa \
@@ -72,6 +71,13 @@ else
 GVFS_CONF_OPTS += --disable-admin
 endif
 
+ifeq ($(BR2_PACKAGE_LIBCDIO_PARANOIA)$(BR2_PACKAGE_LIBGUDEV),yy)
+GVFS_DEPENDENCIES += libcdio-paranoia libgudev
+GVFS_CONF_OPTS += --enable-cdda
+else
+GVFS_CONF_OPTS += --disable-cdda
+endif
+
 ifeq ($(BR2_PACKAGE_LIBFUSE),y)
 GVFS_DEPENDENCIES += libfuse
 GVFS_CONF_OPTS += --enable-fuse
-- 
2.17.1

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

* [Buildroot] [PATCH 5/6] gvfs: enable gcr
  2018-10-19 20:13 [Buildroot] [PATCH 1/6] gvfs: add libusb support Fabrice Fontaine
                   ` (2 preceding siblings ...)
  2018-10-19 20:13 ` [Buildroot] [PATCH 4/6] gvfs: enable cdda backend Fabrice Fontaine
@ 2018-10-19 20:13 ` Fabrice Fontaine
  2018-10-20 16:10   ` Peter Korsgaard
  2018-10-19 20:13 ` [Buildroot] [PATCH 6/6] gvfs: enable gphoto2 Fabrice Fontaine
  2018-10-20 16:05 ` [Buildroot] [PATCH 1/6] gvfs: add libusb support Peter Korsgaard
  5 siblings, 1 reply; 12+ messages in thread
From: Fabrice Fontaine @ 2018-10-19 20:13 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/gvfs/gvfs.mk | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/package/gvfs/gvfs.mk b/package/gvfs/gvfs.mk
index b0722ffb00..e34033d5c7 100644
--- a/package/gvfs/gvfs.mk
+++ b/package/gvfs/gvfs.mk
@@ -20,7 +20,6 @@ GVFS_CONF_ENV = ac_cv_path_LIBGCRYPT_CONFIG=$(STAGING_DIR)/usr/bin/libgcrypt-con
 # Most of these are missing library support
 GVFS_CONF_OPTS = \
 	--disable-afc \
-	--disable-gcr \
 	--disable-gdu \
 	--disable-goa \
 	--disable-google \
@@ -36,6 +35,13 @@ else
 GVFS_CONF_OPTS += --disable-avahi
 endif
 
+ifeq ($(BR2_PACKAGE_GCR),y)
+GVFS_DEPENDENCIES += gcr
+GVFS_CONF_OPTS += --enable-gcr
+else
+GVFS_CONF_OPTS += --disable-gcr
+endif
+
 ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
 GVFS_DEPENDENCIES += udev
 endif
-- 
2.17.1

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

* [Buildroot] [PATCH 6/6] gvfs: enable gphoto2
  2018-10-19 20:13 [Buildroot] [PATCH 1/6] gvfs: add libusb support Fabrice Fontaine
                   ` (3 preceding siblings ...)
  2018-10-19 20:13 ` [Buildroot] [PATCH 5/6] gvfs: enable gcr Fabrice Fontaine
@ 2018-10-19 20:13 ` Fabrice Fontaine
  2018-10-20 16:10   ` Peter Korsgaard
  2018-10-20 16:05 ` [Buildroot] [PATCH 1/6] gvfs: add libusb support Peter Korsgaard
  5 siblings, 1 reply; 12+ messages in thread
From: Fabrice Fontaine @ 2018-10-19 20:13 UTC (permalink / raw)
  To: buildroot

Enable gphoto2 if libgphoto2 and libgudev are available

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/gvfs/gvfs.mk | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/package/gvfs/gvfs.mk b/package/gvfs/gvfs.mk
index e34033d5c7..0fdb9e1267 100644
--- a/package/gvfs/gvfs.mk
+++ b/package/gvfs/gvfs.mk
@@ -23,7 +23,6 @@ GVFS_CONF_OPTS = \
 	--disable-gdu \
 	--disable-goa \
 	--disable-google \
-	--disable-gphoto2 \
 	--disable-keyring \
 	--disable-libmtp \
 	--disable-udisks2
@@ -99,6 +98,13 @@ else
 GVFS_CONF_OPTS += --disable-afp
 endif
 
+ifeq ($(BR2_PACKAGE_LIBGPHOTO2)$(BR2_PACKAGE_LIBGUDEV),yy)
+GVFS_DEPENDENCIES += libgphoto2 libgudev
+GVFS_CONF_OPTS += --enable-gphoto2
+else
+GVFS_CONF_OPTS += --disable-gphoto2
+endif
+
 ifeq ($(BR2_PACKAGE_LIBGTK3),y)
 GVFS_CONF_OPTS += --enable-gtk
 GVFS_DEPENDENCIES += libgtk3
-- 
2.17.1

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

* [Buildroot] [PATCH 1/6] gvfs: add libusb support
  2018-10-19 20:13 [Buildroot] [PATCH 1/6] gvfs: add libusb support Fabrice Fontaine
                   ` (4 preceding siblings ...)
  2018-10-19 20:13 ` [Buildroot] [PATCH 6/6] gvfs: enable gphoto2 Fabrice Fontaine
@ 2018-10-20 16:05 ` Peter Korsgaard
  5 siblings, 0 replies; 12+ messages in thread
From: Peter Korsgaard @ 2018-10-20 16:05 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

We normally name this "add optional libusb support".

Committed with the commit message tweaked, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/6] gvfs: use --enable-gudev option
  2018-10-19 20:13 ` [Buildroot] [PATCH 2/6] gvfs: use --enable-gudev option Fabrice Fontaine
@ 2018-10-20 16:09   ` Peter Korsgaard
  0 siblings, 0 replies; 12+ messages in thread
From: Peter Korsgaard @ 2018-10-20 16:09 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

I reworded this to "use explicit --enable-gudev option" and committed,
thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 3/6] gvfs: enable admin backend
  2018-10-19 20:13 ` [Buildroot] [PATCH 3/6] gvfs: enable admin backend Fabrice Fontaine
@ 2018-10-20 16:09   ` Peter Korsgaard
  0 siblings, 0 replies; 12+ messages in thread
From: Peter Korsgaard @ 2018-10-20 16:09 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Enable admin backend if libcap and polkit are available
 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 4/6] gvfs: enable cdda backend
  2018-10-19 20:13 ` [Buildroot] [PATCH 4/6] gvfs: enable cdda backend Fabrice Fontaine
@ 2018-10-20 16:09   ` Peter Korsgaard
  0 siblings, 0 replies; 12+ messages in thread
From: Peter Korsgaard @ 2018-10-20 16:09 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Enable cdda if libcdio-paranoia and libgudev are available
 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 5/6] gvfs: enable gcr
  2018-10-19 20:13 ` [Buildroot] [PATCH 5/6] gvfs: enable gcr Fabrice Fontaine
@ 2018-10-20 16:10   ` Peter Korsgaard
  0 siblings, 0 replies; 12+ messages in thread
From: Peter Korsgaard @ 2018-10-20 16:10 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Reworded this to "enable optional gcr support" and applied, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 6/6] gvfs: enable gphoto2
  2018-10-19 20:13 ` [Buildroot] [PATCH 6/6] gvfs: enable gphoto2 Fabrice Fontaine
@ 2018-10-20 16:10   ` Peter Korsgaard
  0 siblings, 0 replies; 12+ messages in thread
From: Peter Korsgaard @ 2018-10-20 16:10 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Enable gphoto2 if libgphoto2 and libgudev are available
 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2018-10-20 16:10 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-19 20:13 [Buildroot] [PATCH 1/6] gvfs: add libusb support Fabrice Fontaine
2018-10-19 20:13 ` [Buildroot] [PATCH 2/6] gvfs: use --enable-gudev option Fabrice Fontaine
2018-10-20 16:09   ` Peter Korsgaard
2018-10-19 20:13 ` [Buildroot] [PATCH 3/6] gvfs: enable admin backend Fabrice Fontaine
2018-10-20 16:09   ` Peter Korsgaard
2018-10-19 20:13 ` [Buildroot] [PATCH 4/6] gvfs: enable cdda backend Fabrice Fontaine
2018-10-20 16:09   ` Peter Korsgaard
2018-10-19 20:13 ` [Buildroot] [PATCH 5/6] gvfs: enable gcr Fabrice Fontaine
2018-10-20 16:10   ` Peter Korsgaard
2018-10-19 20:13 ` [Buildroot] [PATCH 6/6] gvfs: enable gphoto2 Fabrice Fontaine
2018-10-20 16:10   ` Peter Korsgaard
2018-10-20 16:05 ` [Buildroot] [PATCH 1/6] gvfs: add libusb support Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.