Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Korsgaard <jacmet@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 20/20] enlightenment: new package
Date: Sat, 29 Dec 2012 21:13:48 +0100	[thread overview]
Message-ID: <87fw2owr9f.fsf@dell.be.48ers.dk> (raw)
In-Reply-To: <df0808d07efd1959cfca0558857283d2e7240f4a.1356723702.git.thomas.petazzoni@free-electrons.com> (Thomas Petazzoni's message of "Fri, 28 Dec 2012 20:42:13 +0100")

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 Thomas> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
 Thomas> ---
 Thomas>  package/Config.in                                  |    1 +
 Thomas>  package/enlightenment/Config.in                    |   29 ++++++++++++++
 Thomas>  .../enlightenment/enlightenment-no-execinfo.patch  |   27 +++++++++++++
 Thomas>  package/enlightenment/enlightenment.mk             |   40 ++++++++++++++++++++
 Thomas>  4 files changed, 97 insertions(+)
 Thomas>  create mode 100644 package/enlightenment/Config.in
 Thomas>  create mode 100644 package/enlightenment/enlightenment-no-execinfo.patch
 Thomas>  create mode 100644 package/enlightenment/enlightenment.mk

 Thomas> diff --git a/package/Config.in b/package/Config.in
 Thomas> index 3d556b2..97a28c8 100644
 Thomas> --- a/package/Config.in
 Thomas> +++ b/package/Config.in
 Thomas> @@ -151,6 +151,7 @@ source "package/liberation/Config.in"
 Thomas>  source "package/libsexy/Config.in"
 
 Thomas>  comment "X Window managers"
 Thomas> +source "package/enlightenment/Config.in"
 Thomas>  source "package/matchbox/Config.in"
 Thomas>  source "package/metacity/Config.in"
 Thomas>  source "package/blackbox/Config.in"
 Thomas> diff --git a/package/enlightenment/Config.in b/package/enlightenment/Config.in
 Thomas> new file mode 100644
 Thomas> index 0000000..d973813
 Thomas> --- /dev/null
 Thomas> +++ b/package/enlightenment/Config.in
 Thomas> @@ -0,0 +1,29 @@
 Thomas> +config BR2_PACKAGE_ENLIGHTENMENT
 Thomas> +	bool "enlightenment"
 Thomas> +	select BR2_PACKAGE_LIBECORE
 Thomas> +	select BR2_PACKAGE_LIBECORE_X
 Thomas> +	select BR2_PACKAGE_LIBEINA
 Thomas> +	select BR2_PACKAGE_LIBEET
 Thomas> +	select BR2_PACKAGE_LIBEVAS
 Thomas> +	select BR2_PACKAGE_LIBEVAS_JPEG
 Thomas> +	select BR2_PACKAGE_LIBEVAS_PNG
 Thomas> +	select BR2_PACKAGE_LIBEVAS_EET
 Thomas> +	select BR2_PACKAGE_LIBECORE_EVAS
 Thomas> +	select BR2_PACKAGE_LIBEDJE
 Thomas> +	select BR2_PACKAGE_LIBEFREET
 Thomas> +	select BR2_PACKAGE_LIBEDBUS
 Thomas> +	select BR2_PACKAGE_LIBEIO
 Thomas> +	select BR2_PACKAGE_XCB_UTIL_KEYSYMS
 Thomas> +	select BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
 Thomas> +	select BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS_SVG
 Thomas> +	# libevas-generic-loaders-svg -> librsvg -> glib2
 Thomas> +	depends on BR2_USE_WCHAR
 Thomas> +	# libedbus -> dbus
 Thomas> +	depends on BR2_TOOLCHAIN_HAS_THREADS
 Thomas> +	# libedbus -> dbus
 Thomas> +	depends on BR2_USE_MMU
 Thomas> +	depends on BR2_PACKAGE_XORG7
 Thomas> +

No help text?

 Thomas> +++ b/package/enlightenment/enlightenment-no-execinfo.patch
 Thomas> @@ -0,0 +1,27 @@
 Thomas> +Do not include <execinfo.h> when not available
 Thomas> +
 Thomas> +On uClibc, <execinfo.h> is not necessarily installed, depending on the
 Thomas> +configuration. Enlightenment properly makes <execinfo.h> optional, but
 Thomas> +uses __GLIBC__ to check if it is available or not. Unfortunately,
 Thomas> +uClibc defines __GLIBC__, so it is not the right way to decide if
 Thomas> +<execinfo.h> is available.
 Thomas> +
 Thomas> +Instead, Enlightenment already has a configure.ac check for
 Thomas> +execinfo.h, so we simply use the result of this configure.ac check to
 Thomas> +decide whether execinfo.h is to be included or not.
 Thomas> +
 Thomas> +Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Don't forget to send this upstream.

-- 
Bye, Peter Korsgaard

      reply	other threads:[~2012-12-29 20:13 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-28 19:41 [Buildroot] [pull request] Pull request for branch e17 Thomas Petazzoni
2012-12-28 19:41 ` [Buildroot] [PATCH 01/20] efl/libecore: bump version to 1.7.4 Thomas Petazzoni
2012-12-28 19:41 ` [Buildroot] [PATCH 02/20] efl/expedite: bump to version 1.7.4 Thomas Petazzoni
2012-12-28 19:41 ` [Buildroot] [PATCH 03/20] efl/libedbus: " Thomas Petazzoni
2012-12-28 19:41 ` [Buildroot] [PATCH 04/20] efl/libedje: " Thomas Petazzoni
2012-12-28 19:41 ` [Buildroot] [PATCH 05/20] efl/libeet: " Thomas Petazzoni
2012-12-28 19:41 ` [Buildroot] [PATCH 06/20] efl/libefreet: " Thomas Petazzoni
2012-12-28 19:42 ` [Buildroot] [PATCH 07/20] efl/libeina: " Thomas Petazzoni
2012-12-28 19:42 ` [Buildroot] [PATCH 08/20] efl/libelementary: bump to version 1.7.4 and change download location Thomas Petazzoni
2012-12-28 19:42 ` [Buildroot] [PATCH 09/20] efl/libembryo: bump to version 1.7.4 Thomas Petazzoni
2012-12-28 19:42 ` [Buildroot] [PATCH 10/20] efl/libevas: " Thomas Petazzoni
2012-12-28 19:42 ` [Buildroot] [PATCH 11/20] efl/libevas: remove SVG support Thomas Petazzoni
2012-12-28 19:42 ` [Buildroot] [PATCH 12/20] efl/libevas: adjust dependency on X11 libraries Thomas Petazzoni
2012-12-28 19:42 ` [Buildroot] [PATCH 13/20] efl/libevas: remove examples source code from target filesystem Thomas Petazzoni
2012-12-28 19:42 ` [Buildroot] [PATCH 14/20] efl/libeio: new package Thomas Petazzoni
2012-12-29 20:09   ` Peter Korsgaard
2012-12-28 19:42 ` [Buildroot] [PATCH 15/20] efl/expedite: bump to 1.7.4 Thomas Petazzoni
2012-12-28 19:50   ` Thomas Petazzoni
2012-12-29 20:15     ` Peter Korsgaard
2012-12-29 21:56       ` Thomas Petazzoni
2012-12-28 19:42 ` [Buildroot] [PATCH 16/20] efl/libethumb: bump to 1.7.4 and change download location Thomas Petazzoni
2012-12-28 19:42 ` [Buildroot] [PATCH 17/20] librsvg: relax dependency on Gtk, add gdk-pixbuf dependency Thomas Petazzoni
2012-12-28 19:42 ` [Buildroot] [PATCH 18/20] efl/libevas-generic-loaders: new package Thomas Petazzoni
2012-12-28 19:42 ` [Buildroot] [PATCH 19/20] xcb-util-keysyms: " Thomas Petazzoni
2012-12-28 19:42 ` [Buildroot] [PATCH 20/20] enlightenment: " Thomas Petazzoni
2012-12-29 20:13   ` Peter Korsgaard [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87fw2owr9f.fsf@dell.be.48ers.dk \
    --to=jacmet@uclibc.org \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox