From: Romain Naour <romain.naour@openwide.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v5 03/36] package/efl/libefl: new host-package
Date: Sun, 25 Oct 2015 20:24:53 +0100 [thread overview]
Message-ID: <562D2C85.5060705@openwide.fr> (raw)
In-Reply-To: <20151025131019.GE3665@free.fr>
Yann, All,
Le 25/10/2015 14:10, Yann E. MORIN a ?crit :
> On 2015-10-24 23:00 +0200, Romain Naour spake thusly:
>> This new host-package provide edje_cc, embryo_cc and eet binaries
>> that will be used by the upcomming libefl packages which will
>> contain the new version of efl libraries.
>>
>> Signed-off-by: Romain Naour <romain.naour@openwide.fr>
>> ---
>> v4: keep efl as a sub-directory.
>> rename this new package to libefl since we want to keep a efl
>> and elementary version in sync.
>> v3: remove trailing slash (Vicente Bergas)
>> bump to 1.15.2
>> ---
>> package/efl/libefl/libefl.hash | 2 ++
>> package/efl/libefl/libefl.mk | 75 ++++++++++++++++++++++++++++++++++++++++++
>> 2 files changed, 77 insertions(+)
>> create mode 100644 package/efl/libefl/libefl.hash
>> create mode 100644 package/efl/libefl/libefl.mk
>>
>> diff --git a/package/efl/libefl/libefl.hash b/package/efl/libefl/libefl.hash
>> new file mode 100644
>> index 0000000..7ac26f4
>> --- /dev/null
>> +++ b/package/efl/libefl/libefl.hash
>> @@ -0,0 +1,2 @@
>> +# From https://download.enlightenment.org/rel/libs/efl/efl-1.15.2.tar.xz.sha256
>> +sha256 dd738f19f454621a7fa1fdb4c008457c170989f5f0c535edfed7b6773ae6c2a4 efl-1.15.2.tar.xz
>> diff --git a/package/efl/libefl/libefl.mk b/package/efl/libefl/libefl.mk
>> new file mode 100644
>> index 0000000..4dca733
>> --- /dev/null
>> +++ b/package/efl/libefl/libefl.mk
>> @@ -0,0 +1,75 @@
>> +################################################################################
>> +#
>> +# libefl
>> +#
>> +################################################################################
>> +
>> +# hardcode the version here since the bump to 1.15 is not complete in Buildroot
>> +LIBEFL_VERSION = 1.15.2
>> +LIBEFL_SOURCE = efl-$(LIBEFL_VERSION).tar.xz
>> +LIBEFL_SITE = http://download.enlightenment.org/rel/libs/efl
>> +LIBEFL_LICENSE = BSD-2c, LGPLv2.1+, GPLv2+
>> +LIBEFL_LICENSE_FILES = COPYING
>
> There are much more license files:
>
> LIBEFL_LICENSE_FILES = \
> COPYING \
> licenses/COPYING.BSD \
> licenses/COPYING.FTL \
> licenses/COPYING.GPL \
> licenses/COPYING.LGPL \
> licenses/COPYING.SMALL
>
> We may also want to add COMPLIANCE to this list, since it has a few
> suggestions about legal info.
Thanks, I missed the directory licenses (I was looking for COPYING file).
I'll add all of them.
Best regards,
Romain
>
> Regards,
> Yann E. MORIN.
>
>> +################################################################################
>> +#
>> +# host-libefl
>> +#
>> +################################################################################
>> +
>> +# We want to build only some host tools used later in the build.
>> +# Actually we want: edje_cc, embryo_cc and eet.
>> +
>> +# Host dependencies:
>> +# * host-dbus: for Eldbus
>> +# * host-freetype: for libevas
>> +# * host-libglib2: for libecore
>> +# * host-libjpeg, host-libpng: for libevas image loader
>> +# * host-lua: disable luajit dependency
>> +HOST_LIBEFL_DEPENDENCIES = \
>> + host-pkgconf \
>> + host-dbus \
>> + host-freetype \
>> + host-libglib2 \
>> + host-libjpeg \
>> + host-libpng \
>> + host-lua \
>> + host-zlib
>> +
>> +# Configure options:
>> +# --disable-audio, --disable-multisense remove libsndfile dependency.
>> +# --disable-cxx-bindings: disable C++11 bindings.
>> +# --disable-fontconfig: remove dependency on fontconfig.
>> +# --disable-fribidi: remove dependency on libfribidi.
>> +# --disable-gstreamer1: remove dependency on gtreamer 1.0.
>> +# --disable-libeeze: remove libudev dependency.
>> +# --disable-libmount: remove dependency on host-util-linux libmount.
>> +# --disable-physics: remove Bullet dependency.
>> +# --enable-image-loader-gif=no: disable Gif dependency.
>> +# --enable-image-loader-tiff=no: disable Tiff dependency.
>> +# --enable-lua-old: disable Elua and remove luajit dependency.
>> +# --with-crypto=none: remove dependencies on openssl or gnutls.
>> +# --with-x11=none: remove dependency on X.org.
>> +# Yes I really know what I am doing.
>> +HOST_LIBEFL_CONF_OPTS += \
>> + --disable-audio \
>> + --disable-cxx-bindings \
>> + --disable-fontconfig \
>> + --disable-fribidi \
>> + --disable-gstreamer1 \
>> + --disable-libeeze \
>> + --disable-libmount \
>> + --disable-multisense \
>> + --disable-physics \
>> + --enable-image-loader-gif=no \
>> + --enable-image-loader-jpeg=yes \
>> + --enable-image-loader-png=yes \
>> + --enable-image-loader-tiff=no \
>> + --enable-lua-old \
>> + --with-crypto=none \
>> + --with-glib=yes \
>> + --with-opengl=none \
>> + --with-x11=none \
>> + --enable-i-really-know-what-i-am-doing-and-that-this-will-probably-break-things-and-i-will-fix-them-myself-and-send-patches-aba
>> +
>> +$(eval $(host-autotools-package))
>> --
>> 2.4.3
>>
>> _______________________________________________
>> buildroot mailing list
>> buildroot at busybox.net
>> http://lists.busybox.net/mailman/listinfo/buildroot
>
next prev parent reply other threads:[~2015-10-25 19:24 UTC|newest]
Thread overview: 94+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-24 21:00 [Buildroot] [PATCH v5 00/36] efl bump to 1.15.2 Romain Naour
2015-10-24 21:00 ` [Buildroot] [PATCH v5 01/36] package/expedite: move to package directory Romain Naour
2015-10-25 12:33 ` Yann E. MORIN
2015-10-24 21:00 ` [Buildroot] [PATCH v5 02/36] package/libevas-generic-loaders: " Romain Naour
2015-10-25 12:56 ` Yann E. MORIN
2015-10-25 19:21 ` Romain Naour
2015-10-25 21:04 ` Yann E. MORIN
2015-10-25 21:41 ` Romain Naour
2015-10-25 21:50 ` Yann E. MORIN
2015-10-24 21:00 ` [Buildroot] [PATCH v5 03/36] package/efl/libefl: new host-package Romain Naour
2015-10-25 13:10 ` Yann E. MORIN
2015-10-25 19:24 ` Romain Naour [this message]
2015-10-24 21:00 ` [Buildroot] [PATCH v5 04/36] package/efl/libefl: new package Romain Naour
2015-10-25 13:55 ` Yann E. MORIN
2015-10-26 21:53 ` Romain Naour
2015-10-27 19:16 ` Arnout Vandecappelle
2015-10-24 21:00 ` [Buildroot] [PATCH v5 05/36] package/efl/libefl: regenerate the configure script Romain Naour
2015-10-25 14:00 ` Yann E. MORIN
2015-10-24 21:00 ` [Buildroot] [PATCH v5 06/36] package/efl/libefl: add harfbuzz dependency Romain Naour
2015-10-25 14:22 ` Yann E. MORIN
2015-10-24 21:00 ` [Buildroot] [PATCH v5 07/36] package/efl/libefl: add wayland dependency Romain Naour
2015-10-25 14:25 ` Yann E. MORIN
2015-10-24 21:00 ` [Buildroot] [PATCH v5 08/36] package/efl/libefl: add libcurl dependency Romain Naour
2015-10-25 14:37 ` Yann E. MORIN
2015-10-28 21:39 ` Romain Naour
2015-10-24 21:00 ` [Buildroot] [PATCH v5 09/36] package/efl/libefl: add libblkid dependency Romain Naour
2015-10-25 14:40 ` Yann E. MORIN
2015-10-28 22:03 ` Romain Naour
2015-10-24 21:00 ` [Buildroot] [PATCH v5 10/36] package/efl/libefl: add webp dependency Romain Naour
2015-10-25 14:41 ` Yann E. MORIN
2015-10-24 21:00 ` [Buildroot] [PATCH v5 11/36] package/efl/libefl: add frame buffer config option Romain Naour
2015-10-25 12:31 ` Yann E. MORIN
2015-10-25 12:33 ` Yann E. MORIN
2015-10-25 14:43 ` Yann E. MORIN
2015-10-24 21:00 ` [Buildroot] [PATCH v5 12/36] package/efl/libefl: fix framebuffer support Romain Naour
2015-10-25 14:45 ` Yann E. MORIN
2015-10-24 21:00 ` [Buildroot] [PATCH v5 13/36] package/efl/libefl: add jp2k config option Romain Naour
2015-10-25 14:48 ` Yann E. MORIN
2015-10-26 22:04 ` Romain Naour
2015-10-25 14:48 ` Yann E. MORIN
2015-10-24 21:00 ` [Buildroot] [PATCH v5 14/36] package/efl/libefl: add X11 support Romain Naour
2015-10-25 15:01 ` Yann E. MORIN
2015-10-29 20:49 ` Romain Naour
2015-10-29 21:01 ` Yann E. MORIN
2015-10-24 21:00 ` [Buildroot] [PATCH v5 15/36] package/efl/libefl: add OpenGL/OpenGLES support Romain Naour
2015-10-25 15:08 ` Yann E. MORIN
2015-10-29 21:02 ` Romain Naour
2015-10-24 21:00 ` [Buildroot] [PATCH v5 16/36] package/efl/libefl: enable xinput2.2 Romain Naour
2015-10-25 15:11 ` Yann E. MORIN
2015-10-24 21:00 ` [Buildroot] [PATCH v5 17/36] package/efl/libefl: add systemd dependency Romain Naour
2015-10-25 15:13 ` Yann E. MORIN
2015-10-29 21:38 ` Romain Naour
2015-10-24 21:00 ` [Buildroot] [PATCH v5 18/36] package/efl/libefl: add sdl2 support Romain Naour
2015-10-25 15:20 ` Yann E. MORIN
2015-10-29 21:17 ` Romain Naour
2015-10-24 21:00 ` [Buildroot] [PATCH v5 19/36] package/libevas-generic-loaders: bump to version 1.15.0 Romain Naour
2015-10-25 16:01 ` Yann E. MORIN
2015-10-25 21:08 ` Yann E. MORIN
2015-10-24 21:01 ` [Buildroot] [PATCH v5 20/36] package/libevas-generic-loaders: add libraw dependency Romain Naour
2015-10-25 16:03 ` Yann E. MORIN
2015-10-24 21:01 ` [Buildroot] [PATCH v5 21/36] package/efl/libelementary: bump to version 1.15.2 Romain Naour
2015-10-25 16:09 ` Yann E. MORIN
2015-10-24 21:01 ` [Buildroot] [PATCH v5 22/36] package/efl/libelementary: add host package Romain Naour
2015-10-25 16:11 ` Yann E. MORIN
2015-10-24 21:01 ` [Buildroot] [PATCH v5 23/36] package/efl: libefl and libelementary share the same version number Romain Naour
2015-10-25 16:13 ` Yann E. MORIN
2015-10-24 21:01 ` [Buildroot] [PATCH v5 24/36] package/enlightenment: bump to version 0.19.12 Romain Naour
2015-10-25 16:28 ` Yann E. MORIN
2015-10-31 14:10 ` Romain Naour
2015-10-24 21:01 ` [Buildroot] [PATCH v5 25/36] package/expedite: bump to efl-1.15 branch Romain Naour
2015-10-25 16:36 ` Yann E. MORIN
2015-10-31 14:19 ` Romain Naour
2015-10-24 21:01 ` [Buildroot] [PATCH v5 26/36] package/efl/libethumb: remove package Romain Naour
2015-10-25 16:38 ` Yann E. MORIN
2015-10-24 21:01 ` [Buildroot] [PATCH v5 27/36] package/efl/libedje: " Romain Naour
2015-10-25 16:41 ` Yann E. MORIN
2015-10-24 21:01 ` [Buildroot] [PATCH v5 28/36] package/efl/libembryo: " Romain Naour
2015-10-25 16:43 ` Yann E. MORIN
2015-10-24 21:01 ` [Buildroot] [PATCH v5 29/36] package/efl/libeio: " Romain Naour
2015-10-25 16:44 ` Yann E. MORIN
2015-10-24 21:01 ` [Buildroot] [PATCH v5 30/36] package/efl/libefreet: " Romain Naour
2015-10-25 16:45 ` Yann E. MORIN
2015-10-24 21:01 ` [Buildroot] [PATCH v5 31/36] package/efl/libedbus: " Romain Naour
2015-10-25 16:46 ` Yann E. MORIN
2015-10-24 21:01 ` [Buildroot] [PATCH v5 32/36] package/efl/libecore: " Romain Naour
2015-10-25 16:50 ` Yann E. MORIN
2015-10-24 21:01 ` [Buildroot] [PATCH v5 33/36] package/efl/libevas: " Romain Naour
2015-10-25 16:52 ` Yann E. MORIN
2015-10-24 21:01 ` [Buildroot] [PATCH v5 34/36] package/efl/libeet: " Romain Naour
2015-10-25 16:52 ` Yann E. MORIN
2015-10-24 21:01 ` [Buildroot] [PATCH v5 35/36] package/efl/libeina: " Romain Naour
2015-10-25 16:56 ` Yann E. MORIN
2015-10-24 21:01 ` [Buildroot] [PATCH v5 36/36] package/libemotion-generic-players: new package Romain Naour
2015-10-25 17:04 ` Yann E. MORIN
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=562D2C85.5060705@openwide.fr \
--to=romain.naour@openwide.fr \
--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 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.