* [Buildroot] [PATCH 1/3] package/tvheadend: Rework CFLAGS handling for liburiparser
@ 2014-12-06 15:00 Bernd Kuhls
2014-12-06 15:00 ` [Buildroot] [PATCH 2/3] package/tvheadend: Fix inclusion of DVB frequency tables in bundled build Bernd Kuhls
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Bernd Kuhls @ 2014-12-06 15:00 UTC (permalink / raw)
To: buildroot
Suggested by Thomas:
http://article.gmane.org/gmane.comp.lib.uclibc.buildroot/100646
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/tvheadend/tvheadend.mk | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk
index f593b3f..e0ce160 100644
--- a/package/tvheadend/tvheadend.mk
+++ b/package/tvheadend/tvheadend.mk
@@ -32,9 +32,10 @@ ifeq ($(BR2_PACKAGE_LIBICONV),y)
TVHEADEND_DEPENDENCIES += libiconv
endif
+TVHEADEND_CFLAGS = $(TARGET_CFLAGS)
ifeq ($(BR2_PACKAGE_LIBURIPARSER),y)
TVHEADEND_DEPENDENCIES += liburiparser
-TVHEADEND_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) $(if $(BR2_USE_WCHAR),,-DURI_NO_UNICODE)"
+TVHEADEND_CFLAGS += $(if $(BR2_USE_WCHAR),,-DURI_NO_UNICODE)
endif
TVHEADEND_DEPENDENCIES += dtv-scan-tables
@@ -43,7 +44,7 @@ define TVHEADEND_CONFIGURE_CMDS
(cd $(@D); \
$(TARGET_CONFIGURE_OPTS) \
$(TARGET_CONFIGURE_ARGS) \
- $(TVHEADEND_CONF_ENV) \
+ CFLAGS="$(TVHEADEND_CFLAGS)" \
./configure \
--prefix=/usr \
--arch="$(ARCH)" \
--
1.7.10.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 2/3] package/tvheadend: Fix inclusion of DVB frequency tables in bundled build
2014-12-06 15:00 [Buildroot] [PATCH 1/3] package/tvheadend: Rework CFLAGS handling for liburiparser Bernd Kuhls
@ 2014-12-06 15:00 ` Bernd Kuhls
2014-12-06 15:24 ` Thomas Petazzoni
2014-12-06 15:00 ` [Buildroot] [PATCH 3/3] package/tvheadend: Bump version Bernd Kuhls
` (2 subsequent siblings)
3 siblings, 1 reply; 6+ messages in thread
From: Bernd Kuhls @ 2014-12-06 15:00 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/tvheadend/tvheadend.mk | 3 +++
1 file changed, 3 insertions(+)
diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk
index e0ce160..7d0ae08 100644
--- a/package/tvheadend/tvheadend.mk
+++ b/package/tvheadend/tvheadend.mk
@@ -58,6 +58,9 @@ define TVHEADEND_CONFIGURE_CMDS
endef
define TVHEADEND_BUILD_CMDS
+ $(INSTALL) -d $(@D)/data/dvb-scan
+ cp -r $(TARGET_DIR)/usr/share/dvb/* $(@D)/data/dvb-scan/
+ touch $(@D)/data/dvb-scan/.stamp
$(MAKE) -C $(@D)
endef
--
1.7.10.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 3/3] package/tvheadend: Bump version
2014-12-06 15:00 [Buildroot] [PATCH 1/3] package/tvheadend: Rework CFLAGS handling for liburiparser Bernd Kuhls
2014-12-06 15:00 ` [Buildroot] [PATCH 2/3] package/tvheadend: Fix inclusion of DVB frequency tables in bundled build Bernd Kuhls
@ 2014-12-06 15:00 ` Bernd Kuhls
2014-12-07 20:12 ` [Buildroot] [PATCH 1/3] package/tvheadend: Rework CFLAGS handling for liburiparser Yann E. MORIN
2014-12-07 20:22 ` Thomas Petazzoni
3 siblings, 0 replies; 6+ messages in thread
From: Bernd Kuhls @ 2014-12-06 15:00 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/tvheadend/tvheadend.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk
index 7d0ae08..ebbca81 100644
--- a/package/tvheadend/tvheadend.mk
+++ b/package/tvheadend/tvheadend.mk
@@ -4,7 +4,7 @@
#
################################################################################
-TVHEADEND_VERSION = fcd16fa0d835d7fd4f57c350ed8b76350440c68c
+TVHEADEND_VERSION = 5ba389bd863cf144bdbdfc0e543a7c73470f0610
TVHEADEND_SITE = $(call github,tvheadend,tvheadend,$(TVHEADEND_VERSION))
TVHEADEND_LICENSE = GPLv3+
TVHEADEND_LICENSE_FILES = LICENSE.md
--
1.7.10.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 2/3] package/tvheadend: Fix inclusion of DVB frequency tables in bundled build
2014-12-06 15:00 ` [Buildroot] [PATCH 2/3] package/tvheadend: Fix inclusion of DVB frequency tables in bundled build Bernd Kuhls
@ 2014-12-06 15:24 ` Thomas Petazzoni
0 siblings, 0 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2014-12-06 15:24 UTC (permalink / raw)
To: buildroot
Dear Bernd Kuhls,
On Sat, 6 Dec 2014 16:00:32 +0100, Bernd Kuhls wrote:
>
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
> package/tvheadend/tvheadend.mk | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk
> index e0ce160..7d0ae08 100644
> --- a/package/tvheadend/tvheadend.mk
> +++ b/package/tvheadend/tvheadend.mk
> @@ -58,6 +58,9 @@ define TVHEADEND_CONFIGURE_CMDS
> endef
>
> define TVHEADEND_BUILD_CMDS
> + $(INSTALL) -d $(@D)/data/dvb-scan
> + cp -r $(TARGET_DIR)/usr/share/dvb/* $(@D)/data/dvb-scan/
> + touch $(@D)/data/dvb-scan/.stamp
> $(MAKE) -C $(@D)
> endef
This probably needs a little comment in the code.
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 1/3] package/tvheadend: Rework CFLAGS handling for liburiparser
2014-12-06 15:00 [Buildroot] [PATCH 1/3] package/tvheadend: Rework CFLAGS handling for liburiparser Bernd Kuhls
2014-12-06 15:00 ` [Buildroot] [PATCH 2/3] package/tvheadend: Fix inclusion of DVB frequency tables in bundled build Bernd Kuhls
2014-12-06 15:00 ` [Buildroot] [PATCH 3/3] package/tvheadend: Bump version Bernd Kuhls
@ 2014-12-07 20:12 ` Yann E. MORIN
2014-12-07 20:22 ` Thomas Petazzoni
3 siblings, 0 replies; 6+ messages in thread
From: Yann E. MORIN @ 2014-12-07 20:12 UTC (permalink / raw)
To: buildroot
Bernd, All,
On 2014-12-06 16:00 +0100, Bernd Kuhls spake thusly:
> Suggested by Thomas:
> http://article.gmane.org/gmane.comp.lib.uclibc.buildroot/100646
>
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> package/tvheadend/tvheadend.mk | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk
> index f593b3f..e0ce160 100644
> --- a/package/tvheadend/tvheadend.mk
> +++ b/package/tvheadend/tvheadend.mk
> @@ -32,9 +32,10 @@ ifeq ($(BR2_PACKAGE_LIBICONV),y)
> TVHEADEND_DEPENDENCIES += libiconv
> endif
>
> +TVHEADEND_CFLAGS = $(TARGET_CFLAGS)
> ifeq ($(BR2_PACKAGE_LIBURIPARSER),y)
> TVHEADEND_DEPENDENCIES += liburiparser
> -TVHEADEND_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) $(if $(BR2_USE_WCHAR),,-DURI_NO_UNICODE)"
> +TVHEADEND_CFLAGS += $(if $(BR2_USE_WCHAR),,-DURI_NO_UNICODE)
> endif
>
> TVHEADEND_DEPENDENCIES += dtv-scan-tables
> @@ -43,7 +44,7 @@ define TVHEADEND_CONFIGURE_CMDS
> (cd $(@D); \
> $(TARGET_CONFIGURE_OPTS) \
> $(TARGET_CONFIGURE_ARGS) \
> - $(TVHEADEND_CONF_ENV) \
> + CFLAGS="$(TVHEADEND_CFLAGS)" \
> ./configure \
> --prefix=/usr \
> --arch="$(ARCH)" \
> --
> 1.7.10.4
>
> _______________________________________________
> 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] 6+ messages in thread
* [Buildroot] [PATCH 1/3] package/tvheadend: Rework CFLAGS handling for liburiparser
2014-12-06 15:00 [Buildroot] [PATCH 1/3] package/tvheadend: Rework CFLAGS handling for liburiparser Bernd Kuhls
` (2 preceding siblings ...)
2014-12-07 20:12 ` [Buildroot] [PATCH 1/3] package/tvheadend: Rework CFLAGS handling for liburiparser Yann E. MORIN
@ 2014-12-07 20:22 ` Thomas Petazzoni
3 siblings, 0 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2014-12-07 20:22 UTC (permalink / raw)
To: buildroot
Dear Bernd Kuhls,
On Sat, 6 Dec 2014 16:00:31 +0100, Bernd Kuhls wrote:
> Suggested by Thomas:
> http://article.gmane.org/gmane.comp.lib.uclibc.buildroot/100646
>
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
> package/tvheadend/tvheadend.mk | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
Applied, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-12-07 20:22 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-06 15:00 [Buildroot] [PATCH 1/3] package/tvheadend: Rework CFLAGS handling for liburiparser Bernd Kuhls
2014-12-06 15:00 ` [Buildroot] [PATCH 2/3] package/tvheadend: Fix inclusion of DVB frequency tables in bundled build Bernd Kuhls
2014-12-06 15:24 ` Thomas Petazzoni
2014-12-06 15:00 ` [Buildroot] [PATCH 3/3] package/tvheadend: Bump version Bernd Kuhls
2014-12-07 20:12 ` [Buildroot] [PATCH 1/3] package/tvheadend: Rework CFLAGS handling for liburiparser Yann E. MORIN
2014-12-07 20:22 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox