* [PATCH] alsa-tools: Enable GTK support for X11, Wayland and DirectFB
@ 2014-04-30 20:40 Otavio Salvador
2014-05-01 6:10 ` Martin Jansa
0 siblings, 1 reply; 3+ messages in thread
From: Otavio Salvador @ 2014-04-30 20:40 UTC (permalink / raw)
To: OpenEmbedded Core Mailing List; +Cc: Otavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb b/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb
index dfa9b97..3113481 100644
--- a/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb
+++ b/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb
@@ -11,7 +11,8 @@ LIC_FILES_CHKSUM = "file://hdsploader/COPYING;md5=94d55d512a9ba36caa9b7df079bae1
SRC_URI = "ftp://ftp.alsa-project.org/pub/tools/alsa-tools-${PV}.tar.bz2 \
file://mips_has_no_io_h.patch \
file://autotools.patch \
- ${@bb.utils.contains('DISTRO_FEATURES', 'x11', '', 'file://makefile_no_gtk.patch', d)}"
+ ${@bb.utils.contains_any('DISTRO_FEATURES', 'x11 wayland directfb', '', \
+ 'file://makefile_no_gtk.patch', d)}"
SRC_URI[md5sum] = "1ea381d00a6069a98613aa7effa4cb51"
SRC_URI[sha256sum] = "6562611b5a6560712f109e09740a9d4fa47296b07ed9590cb44139c5f154ada2"
@@ -20,7 +21,7 @@ inherit autotools-brokensep
EXTRA_OEMAKE += "GITCOMPILE_ARGS='--host=${HOST_SYS} --build=${BUILD_SYS} --target=${TARGET_SYS} --with-libtool-sysroot=${STAGING_DIR_HOST} --prefix=${prefix}'"
-PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'gtk+', '', d)}"
+PACKAGECONFIG ??= "${@bb.utils.contains_any('DISTRO_FEATURES', 'x11 wayland directfb', 'gtk+', '', d)}"
PACKAGECONFIG[gtk+] = ",,gtk+ gtk+3,"
# configure.ac/.in doesn't exist so force copy
--
2.0.0.rc0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] alsa-tools: Enable GTK support for X11, Wayland and DirectFB
2014-04-30 20:40 [PATCH] alsa-tools: Enable GTK support for X11, Wayland and DirectFB Otavio Salvador
@ 2014-05-01 6:10 ` Martin Jansa
2014-05-01 19:38 ` Otavio Salvador
0 siblings, 1 reply; 3+ messages in thread
From: Martin Jansa @ 2014-05-01 6:10 UTC (permalink / raw)
To: Otavio Salvador; +Cc: OpenEmbedded Core Mailing List
[-- Attachment #1: Type: text/plain, Size: 2077 bytes --]
On Wed, Apr 30, 2014 at 05:40:53PM -0300, Otavio Salvador wrote:
> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
This should include required bitbake version bump.
> ---
> meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb b/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb
> index dfa9b97..3113481 100644
> --- a/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb
> +++ b/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb
> @@ -11,7 +11,8 @@ LIC_FILES_CHKSUM = "file://hdsploader/COPYING;md5=94d55d512a9ba36caa9b7df079bae1
> SRC_URI = "ftp://ftp.alsa-project.org/pub/tools/alsa-tools-${PV}.tar.bz2 \
> file://mips_has_no_io_h.patch \
> file://autotools.patch \
> - ${@bb.utils.contains('DISTRO_FEATURES', 'x11', '', 'file://makefile_no_gtk.patch', d)}"
> + ${@bb.utils.contains_any('DISTRO_FEATURES', 'x11 wayland directfb', '', \
> + 'file://makefile_no_gtk.patch', d)}"
>
> SRC_URI[md5sum] = "1ea381d00a6069a98613aa7effa4cb51"
> SRC_URI[sha256sum] = "6562611b5a6560712f109e09740a9d4fa47296b07ed9590cb44139c5f154ada2"
> @@ -20,7 +21,7 @@ inherit autotools-brokensep
>
> EXTRA_OEMAKE += "GITCOMPILE_ARGS='--host=${HOST_SYS} --build=${BUILD_SYS} --target=${TARGET_SYS} --with-libtool-sysroot=${STAGING_DIR_HOST} --prefix=${prefix}'"
>
> -PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'gtk+', '', d)}"
> +PACKAGECONFIG ??= "${@bb.utils.contains_any('DISTRO_FEATURES', 'x11 wayland directfb', 'gtk+', '', d)}"
> PACKAGECONFIG[gtk+] = ",,gtk+ gtk+3,"
>
> # configure.ac/.in doesn't exist so force copy
> --
> 2.0.0.rc0
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] alsa-tools: Enable GTK support for X11, Wayland and DirectFB
2014-05-01 6:10 ` Martin Jansa
@ 2014-05-01 19:38 ` Otavio Salvador
0 siblings, 0 replies; 3+ messages in thread
From: Otavio Salvador @ 2014-05-01 19:38 UTC (permalink / raw)
To: Martin Jansa; +Cc: OpenEmbedded Core Mailing List
On Thu, May 1, 2014 at 3:10 AM, Martin Jansa <martin.jansa@gmail.com> wrote:
> On Wed, Apr 30, 2014 at 05:40:53PM -0300, Otavio Salvador wrote:
>> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
>
> This should include required bitbake version bump.
Sent a new patch for it.
--
Otavio Salvador O.S. Systems
http://www.ossystems.com.br http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-05-01 19:38 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-30 20:40 [PATCH] alsa-tools: Enable GTK support for X11, Wayland and DirectFB Otavio Salvador
2014-05-01 6:10 ` Martin Jansa
2014-05-01 19:38 ` Otavio Salvador
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox