Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] gconf: new package
@ 2017-11-21  2:02 Joseph Kogut
  2017-12-02 15:34 ` Marcus Folkesson
  2018-01-01 11:34 ` Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: Joseph Kogut @ 2017-11-21  2:02 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Joseph Kogut <joseph.kogut@gmail.com>
---
 DEVELOPERS               |  1 +
 package/Config.in        |  1 +
 package/gconf/Config.in  | 10 ++++++++++
 package/gconf/gconf.hash |  4 ++++
 package/gconf/gconf.mk   | 10 ++++++++++
 5 files changed, 26 insertions(+)
 create mode 100644 package/gconf/Config.in
 create mode 100644 package/gconf/gconf.hash
 create mode 100644 package/gconf/gconf.mk

diff --git a/DEVELOPERS b/DEVELOPERS
index bb81a19883..0131f21a1f 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -794,6 +794,7 @@ F:	board/qemu/ppc64le-pseries/
 F:	configs/qemu_ppc64le_pseries_defconfig
 
 N:	Joseph Kogut <joseph.kogut@gmail.com>
+F:	package/gconf/
 F:	package/python-websockets/
 
 N:	Johan Derycke <johanderycke@gmail.com>
diff --git a/package/Config.in b/package/Config.in
index fe5ccc434e..b28e656907 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -1433,6 +1433,7 @@ menu "Other"
 	source "package/elfutils/Config.in"
 	source "package/fftw/Config.in"
 	source "package/flann/Config.in"
+	source "package/gconf/Config.in"
 	source "package/gflags/Config.in"
 	source "package/glibmm/Config.in"
 	source "package/glm/Config.in"
diff --git a/package/gconf/Config.in b/package/gconf/Config.in
new file mode 100644
index 0000000000..364caea1ca
--- /dev/null
+++ b/package/gconf/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_GCONF
+	bool "gconf"
+	select BR2_PACKAGE_DBUS
+	select BR2_PACKAGE_DBUS_GLIB
+	select BR2_PACKAGE_LIBGLIB2
+	select BR2_PACKAGE_LIBXML2
+	help
+	  GConf was a system used by the GNOME desktop environment for storing
+	  configuration settings for the desktop and applications. It is similar
+	  to the Windows Registry.
diff --git a/package/gconf/gconf.hash b/package/gconf/gconf.hash
new file mode 100644
index 0000000000..24d0cf9b17
--- /dev/null
+++ b/package/gconf/gconf.hash
@@ -0,0 +1,4 @@
+# http://ftp.acc.umu.se/pub/gnome/sources/GConf/3.2/GConf-3.2.6.sha256sum
+sha256 1912b91803ab09a5eed34d364bf09fe3a2a9c96751fde03a4e0cfa51a04d784c  GConf-3.2.6.tar.xz
+# License files, locally calculated
+sha256 94b03f1a60a7fd5007149530626a895a6ef5a8b9342abfd56860c5f3956f5d23  COPYING
diff --git a/package/gconf/gconf.mk b/package/gconf/gconf.mk
new file mode 100644
index 0000000000..5f33290d7a
--- /dev/null
+++ b/package/gconf/gconf.mk
@@ -0,0 +1,10 @@
+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 --disable-nls --disable-dependency-tracking
+GCONF_DEPENDENCIES = dbus dbus-glib libglib2 libxml2
+
+GCONF_LICENSE = GPL-2.0
+GCONF_LICENSE_FILES = COPYING
+
+$(eval $(autotools-package))
-- 
2.15.0

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

* [Buildroot] [PATCH 1/1] gconf: new package
  2017-11-21  2:02 [Buildroot] [PATCH 1/1] gconf: new package Joseph Kogut
@ 2017-12-02 15:34 ` Marcus Folkesson
  2018-01-01 11:34 ` Thomas Petazzoni
  1 sibling, 0 replies; 4+ messages in thread
From: Marcus Folkesson @ 2017-12-02 15:34 UTC (permalink / raw)
  To: buildroot

Hi,

On Mon, Nov 20, 2017 at 06:02:58PM -0800, Joseph Kogut wrote:
> diff --git a/package/gconf/Config.in b/package/gconf/Config.in
> new file mode 100644
> index 0000000000..364caea1ca
> --- /dev/null
> +++ b/package/gconf/Config.in
> @@ -0,0 +1,10 @@

You need to propagate some dependencies from packages gconf depends
on.

> +config BR2_PACKAGE_GCONF
> +	bool "gconf"
> +	select BR2_PACKAGE_DBUS

dbus contains:
	depends on BR2_TOOLCHAIN_HAS_THREADS
	# uses fork()
	depends on BR2_USE_MMU

> +	select BR2_PACKAGE_DBUS_GLIB
dbus-glib contains:
	depends on BR2_PACKAGE_DBUS
	depends on BR2_USE_WCHAR # glib2
	depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
	depends on BR2_USE_MMU # glib2

> +	select BR2_PACKAGE_LIBGLIB2
libglib2 contains:
	depends on BR2_USE_WCHAR # gettext
	depends on BR2_TOOLCHAIN_HAS_THREADS
	depends on BR2_USE_MMU # fork()

> +	select BR2_PACKAGE_LIBXML2



> +	help
> +	  GConf was a system used by the GNOME desktop environment for storing
> +	  configuration settings for the desktop and applications. It is similar
> +	  to the Windows Registry.
> diff --git a/package/gconf/gconf.hash b/package/gconf/gconf.hash
> new file mode 100644
> index 0000000000..24d0cf9b17
> --- /dev/null
> +++ b/package/gconf/gconf.hash
> @@ -0,0 +1,4 @@
> +# http://ftp.acc.umu.se/pub/gnome/sources/GConf/3.2/GConf-3.2.6.sha256sum
> +sha256 1912b91803ab09a5eed34d364bf09fe3a2a9c96751fde03a4e0cfa51a04d784c  GConf-3.2.6.tar.xz
> +# License files, locally calculated
> +sha256 94b03f1a60a7fd5007149530626a895a6ef5a8b9342abfd56860c5f3956f5d23  COPYING
> diff --git a/package/gconf/gconf.mk b/package/gconf/gconf.mk
> new file mode 100644
> index 0000000000..5f33290d7a
> --- /dev/null
> +++ b/package/gconf/gconf.mk
> @@ -0,0 +1,10 @@
> +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 --disable-nls --disable-dependency-tracking
> +GCONF_DEPENDENCIES = dbus dbus-glib libglib2 libxml2
> +
> +GCONF_LICENSE = GPL-2.0

The license is LGPL-2.0 (+ ?)


Best regards
Marcus Folkesson

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

* [Buildroot] [PATCH 1/1] gconf: new package
  2017-11-21  2:02 [Buildroot] [PATCH 1/1] gconf: new package Joseph Kogut
  2017-12-02 15:34 ` Marcus Folkesson
@ 2018-01-01 11:34 ` Thomas Petazzoni
  2018-01-01 12:05   ` Joseph Kogut
  1 sibling, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2018-01-01 11:34 UTC (permalink / raw)
  To: buildroot

Hello,

On Mon, 20 Nov 2017 18:02:58 -0800, Joseph Kogut wrote:
> Signed-off-by: Joseph Kogut <joseph.kogut@gmail.com>
> ---
>  DEVELOPERS               |  1 +
>  package/Config.in        |  1 +
>  package/gconf/Config.in  | 10 ++++++++++
>  package/gconf/gconf.hash |  4 ++++
>  package/gconf/gconf.mk   | 10 ++++++++++
>  5 files changed, 26 insertions(+)
>  create mode 100644 package/gconf/Config.in
>  create mode 100644 package/gconf/gconf.hash
>  create mode 100644 package/gconf/gconf.mk

Thanks for your contribution. I've applied, after fixing a number of
issues:

    [Thomas:
     - propagate dependencies of selected packages in Config.in
     - add missing Config.in comment about dependencies
     - add missing upstream URL in Config.in
     - add missing comment header in .mk file
     - remove --disable-nls from configuration options, it is taken care
       of by the package infrastructure
     - remove --disable-dependency-tracking, it is taken care of in the
       package infrastructure
     - add $(TARGET_NLS_DEPENDENCIES) to <pkg>_DEPENDENCIES, since gconf
       has optional NLS support
     - add host-intltool to <pkg>_DEPENDENCIES, since gconf needs
       intltool-update
     - fix license: it's LGPL-2.0+, not GPL-2.0.]

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 1/1] gconf: new package
  2018-01-01 11:34 ` Thomas Petazzoni
@ 2018-01-01 12:05   ` Joseph Kogut
  0 siblings, 0 replies; 4+ messages in thread
From: Joseph Kogut @ 2018-01-01 12:05 UTC (permalink / raw)
  To: buildroot

Hi,

On Jan 1, 2018 3:34 AM, "Thomas Petazzoni" <
thomas.petazzoni@free-electrons.com> wrote:

Hello,

On Mon, 20 Nov 2017 18:02:58 -0800, Joseph Kogut wrote:
> Signed-off-by: Joseph Kogut <joseph.kogut@gmail.com>
> ---
>  DEVELOPERS               |  1 +
>  package/Config.in        |  1 +
>  package/gconf/Config.in  | 10 ++++++++++
>  package/gconf/gconf.hash |  4 ++++
>  package/gconf/gconf.mk   | 10 ++++++++++
>  5 files changed, 26 insertions(+)
>  create mode 100644 package/gconf/Config.in
>  create mode 100644 package/gconf/gconf.hash
>  create mode 100644 package/gconf/gconf.mk

Thanks for your contribution. I've applied, after fixing a number of
issues:

    [Thomas:
     - propagate dependencies of selected packages in Config.in
     - add missing Config.in comment about dependencies
     - add missing upstream URL in Config.in
     - add missing comment header in .mk file
     - remove --disable-nls from configuration options, it is taken care
       of by the package infrastructure
     - remove --disable-dependency-tracking, it is taken care of in the
       package infrastructure
     - add $(TARGET_NLS_DEPENDENCIES) to <pkg>_DEPENDENCIES, since gconf
       has optional NLS support
     - add host-intltool to <pkg>_DEPENDENCIES, since gconf needs
       intltool-update
     - fix license: it's LGPL-2.0+, not GPL-2.0.]

Thanks!

Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com


Thanks, Thomas! I meant to fix this one, but I've been busy with other work.

Best,

Joseph
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180101/350dec74/attachment.html>

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

end of thread, other threads:[~2018-01-01 12:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-21  2:02 [Buildroot] [PATCH 1/1] gconf: new package Joseph Kogut
2017-12-02 15:34 ` Marcus Folkesson
2018-01-01 11:34 ` Thomas Petazzoni
2018-01-01 12:05   ` Joseph Kogut

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