All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] infozip: Add a host variant
@ 2014-04-01 22:24 Maxime Hadjinlian
  2014-04-01 22:24 ` [Buildroot] [PATCH 2/2] xbmc: Add missing host-infozip dependency Maxime Hadjinlian
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Maxime Hadjinlian @ 2014-04-01 22:24 UTC (permalink / raw)
  To: buildroot

Adding a host variant to the package infozip.
It will be used by XBMC.

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
---
 package/infozip/infozip.mk | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/package/infozip/infozip.mk b/package/infozip/infozip.mk
index 8e51224..9648b4f 100644
--- a/package/infozip/infozip.mk
+++ b/package/infozip/infozip.mk
@@ -26,4 +26,17 @@ define INFOZIP_INSTALL_TARGET_CMDS
 		prefix=$(TARGET_DIR)/usr
 endef
 
+define HOST_INFOZIP_BUILD_CMDS
+	$(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D) \
+		CFLAGS="$(HOST_CFLAGS) -I. -DUNIX" \
+		AS="$(HOST_CC) -c" \
+		-f unix/Makefile generic
+endef
+
+define HOST_INFOZIP_INSTALL_CMDS
+	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) -f unix/Makefile install \
+		prefix=$(HOST_DIR)/usr
+endef
+
 $(eval $(generic-package))
+$(eval $(host-generic-package))
-- 
1.9.1

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

* [Buildroot] [PATCH 2/2] xbmc: Add missing host-infozip dependency
  2014-04-01 22:24 [Buildroot] [PATCH 1/2] infozip: Add a host variant Maxime Hadjinlian
@ 2014-04-01 22:24 ` Maxime Hadjinlian
  2014-04-01 22:34   ` Yann E. MORIN
                     ` (2 more replies)
  2014-04-01 22:33 ` [Buildroot] [PATCH 1/2] infozip: Add a host variant Yann E. MORIN
                   ` (2 subsequent siblings)
  3 siblings, 3 replies; 8+ messages in thread
From: Maxime Hadjinlian @ 2014-04-01 22:24 UTC (permalink / raw)
  To: buildroot

XBMC needs the zip command for the host to build.

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
---
 package/xbmc/xbmc.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/xbmc/xbmc.mk b/package/xbmc/xbmc.mk
index 9e346bd..59255a4 100644
--- a/package/xbmc/xbmc.mk
+++ b/package/xbmc/xbmc.mk
@@ -12,7 +12,7 @@ XBMC_LICENSE_FILES = LICENSE.GPL
 # called TexturePacker. It is responsible to take all the images used in the
 # GUI and pack them in a blob.
 # http://wiki.xbmc.org/index.php?title=TexturePacker
-XBMC_DEPENDENCIES = host-gperf host-lzo host-sdl_image host-swig
+XBMC_DEPENDENCIES = host-gperf host-infozip host-lzo host-sdl_image host-swig
 XBMC_DEPENDENCIES += boost bzip2 expat flac fontconfig freetype jasper jpeg \
 	libass libcdio libcurl libegl libfribidi libgcrypt libgles libmad libmodplug libmpeg2 \
 	libogg libplist libpng libsamplerate libungif libvorbis libxml2 lzo ncurses \
-- 
1.9.1

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

* [Buildroot] [PATCH 1/2] infozip: Add a host variant
  2014-04-01 22:24 [Buildroot] [PATCH 1/2] infozip: Add a host variant Maxime Hadjinlian
  2014-04-01 22:24 ` [Buildroot] [PATCH 2/2] xbmc: Add missing host-infozip dependency Maxime Hadjinlian
@ 2014-04-01 22:33 ` Yann E. MORIN
  2014-04-02 19:31 ` Bernd Kuhls
  2014-04-03 18:16 ` Thomas Petazzoni
  3 siblings, 0 replies; 8+ messages in thread
From: Yann E. MORIN @ 2014-04-01 22:33 UTC (permalink / raw)
  To: buildroot

Maxime, All,

On 2014-04-02 00:24 +0200, Maxime Hadjinlian spake thusly:
> Adding a host variant to the package infozip.
> It will be used by XBMC.
> 
> Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>

Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

It's a bit too late for me here to run a test, but I'll try to do a
build tomorrow.

Regards,
Yann E. MORIN.

> ---
>  package/infozip/infozip.mk | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
> 
> diff --git a/package/infozip/infozip.mk b/package/infozip/infozip.mk
> index 8e51224..9648b4f 100644
> --- a/package/infozip/infozip.mk
> +++ b/package/infozip/infozip.mk
> @@ -26,4 +26,17 @@ define INFOZIP_INSTALL_TARGET_CMDS
>  		prefix=$(TARGET_DIR)/usr
>  endef
>  
> +define HOST_INFOZIP_BUILD_CMDS
> +	$(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D) \
> +		CFLAGS="$(HOST_CFLAGS) -I. -DUNIX" \
> +		AS="$(HOST_CC) -c" \
> +		-f unix/Makefile generic
> +endef
> +
> +define HOST_INFOZIP_INSTALL_CMDS
> +	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) -f unix/Makefile install \
> +		prefix=$(HOST_DIR)/usr
> +endef
> +
>  $(eval $(generic-package))
> +$(eval $(host-generic-package))
> -- 
> 1.9.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 2/2] xbmc: Add missing host-infozip dependency
  2014-04-01 22:24 ` [Buildroot] [PATCH 2/2] xbmc: Add missing host-infozip dependency Maxime Hadjinlian
@ 2014-04-01 22:34   ` Yann E. MORIN
  2014-04-02 19:31   ` Bernd Kuhls
  2014-04-03 18:16   ` Thomas Petazzoni
  2 siblings, 0 replies; 8+ messages in thread
From: Yann E. MORIN @ 2014-04-01 22:34 UTC (permalink / raw)
  To: buildroot

On 2014-04-02 00:24 +0200, Maxime Hadjinlian spake thusly:
> XBMC needs the zip command for the host to build.
> 
> Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>

Reported-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Ditto for a test-build: tomorrow.

Regards,
Yann E. MORIN.

> ---
>  package/xbmc/xbmc.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/xbmc/xbmc.mk b/package/xbmc/xbmc.mk
> index 9e346bd..59255a4 100644
> --- a/package/xbmc/xbmc.mk
> +++ b/package/xbmc/xbmc.mk
> @@ -12,7 +12,7 @@ XBMC_LICENSE_FILES = LICENSE.GPL
>  # called TexturePacker. It is responsible to take all the images used in the
>  # GUI and pack them in a blob.
>  # http://wiki.xbmc.org/index.php?title=TexturePacker
> -XBMC_DEPENDENCIES = host-gperf host-lzo host-sdl_image host-swig
> +XBMC_DEPENDENCIES = host-gperf host-infozip host-lzo host-sdl_image host-swig
>  XBMC_DEPENDENCIES += boost bzip2 expat flac fontconfig freetype jasper jpeg \
>  	libass libcdio libcurl libegl libfribidi libgcrypt libgles libmad libmodplug libmpeg2 \
>  	libogg libplist libpng libsamplerate libungif libvorbis libxml2 lzo ncurses \
> -- 
> 1.9.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 1/2] infozip: Add a host variant
  2014-04-01 22:24 [Buildroot] [PATCH 1/2] infozip: Add a host variant Maxime Hadjinlian
  2014-04-01 22:24 ` [Buildroot] [PATCH 2/2] xbmc: Add missing host-infozip dependency Maxime Hadjinlian
  2014-04-01 22:33 ` [Buildroot] [PATCH 1/2] infozip: Add a host variant Yann E. MORIN
@ 2014-04-02 19:31 ` Bernd Kuhls
  2014-04-03 18:16 ` Thomas Petazzoni
  3 siblings, 0 replies; 8+ messages in thread
From: Bernd Kuhls @ 2014-04-02 19:31 UTC (permalink / raw)
  To: buildroot

Maxime Hadjinlian
<maxime.hadjinlian@gmail.com> wrote in
news:1396391079-28455-1-git-send-email-maxime.hadjinlian at gmail.com: 

> Adding a host variant to the package infozip.
> It will be used by XBMC.

Acked-by: Bernd Kuhls <bernd.kuhls@t-online.de>

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

* [Buildroot] [PATCH 2/2] xbmc: Add missing host-infozip dependency
  2014-04-01 22:24 ` [Buildroot] [PATCH 2/2] xbmc: Add missing host-infozip dependency Maxime Hadjinlian
  2014-04-01 22:34   ` Yann E. MORIN
@ 2014-04-02 19:31   ` Bernd Kuhls
  2014-04-03 18:16   ` Thomas Petazzoni
  2 siblings, 0 replies; 8+ messages in thread
From: Bernd Kuhls @ 2014-04-02 19:31 UTC (permalink / raw)
  To: buildroot

Maxime Hadjinlian
<maxime.hadjinlian@gmail.com> wrote in
news:1396391079-28455-2-git-send-email-maxime.hadjinlian at gmail.com: 

> XBMC needs the zip command for the host to build.

Acked-by: Bernd Kuhls <bernd.kuhls@t-online.de>

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

* [Buildroot] [PATCH 1/2] infozip: Add a host variant
  2014-04-01 22:24 [Buildroot] [PATCH 1/2] infozip: Add a host variant Maxime Hadjinlian
                   ` (2 preceding siblings ...)
  2014-04-02 19:31 ` Bernd Kuhls
@ 2014-04-03 18:16 ` Thomas Petazzoni
  3 siblings, 0 replies; 8+ messages in thread
From: Thomas Petazzoni @ 2014-04-03 18:16 UTC (permalink / raw)
  To: buildroot

Dear Maxime Hadjinlian,

On Wed,  2 Apr 2014 00:24:38 +0200, Maxime Hadjinlian wrote:
> +define HOST_INFOZIP_INSTALL_CMDS
> +	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) -f unix/Makefile install \

You should have used HOST_CONFIGURE_OPTS here.

Committed with this fixed.

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

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

* [Buildroot] [PATCH 2/2] xbmc: Add missing host-infozip dependency
  2014-04-01 22:24 ` [Buildroot] [PATCH 2/2] xbmc: Add missing host-infozip dependency Maxime Hadjinlian
  2014-04-01 22:34   ` Yann E. MORIN
  2014-04-02 19:31   ` Bernd Kuhls
@ 2014-04-03 18:16   ` Thomas Petazzoni
  2 siblings, 0 replies; 8+ messages in thread
From: Thomas Petazzoni @ 2014-04-03 18:16 UTC (permalink / raw)
  To: buildroot

Dear Maxime Hadjinlian,

On Wed,  2 Apr 2014 00:24:39 +0200, Maxime Hadjinlian wrote:
> XBMC needs the zip command for the host to build.
> 
> Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
> ---
>  package/xbmc/xbmc.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied, thanks.

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

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

end of thread, other threads:[~2014-04-03 18:16 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-01 22:24 [Buildroot] [PATCH 1/2] infozip: Add a host variant Maxime Hadjinlian
2014-04-01 22:24 ` [Buildroot] [PATCH 2/2] xbmc: Add missing host-infozip dependency Maxime Hadjinlian
2014-04-01 22:34   ` Yann E. MORIN
2014-04-02 19:31   ` Bernd Kuhls
2014-04-03 18:16   ` Thomas Petazzoni
2014-04-01 22:33 ` [Buildroot] [PATCH 1/2] infozip: Add a host variant Yann E. MORIN
2014-04-02 19:31 ` Bernd Kuhls
2014-04-03 18:16 ` Thomas Petazzoni

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.