* [Buildroot] [PATCH] package/libdvbsi: new package
@ 2013-06-23 14:34 Carsten Schoenert
2013-06-23 14:42 ` Thomas Petazzoni
0 siblings, 1 reply; 3+ messages in thread
From: Carsten Schoenert @ 2013-06-23 14:34 UTC (permalink / raw)
To: buildroot
From: Carsten Schoenert <c.schoenert@gmail.com>
libdvbsi++ is a C++ library for parsing DVB SI sections and providing
the output in C++ objects. It's usefull in any case you need prepared
and preselected DVB SI data from the raw stream.
Signed-off-by: Carsten Schoenert <c.schoenert@gmail.com>
---
package/Config.in | 1 +
package/libdvbsi/Config.in | 9 +++++++++
package/libdvbsi/libdvbsi.mk | 17 +++++++++++++++++
3 files changed, 27 insertions(+)
create mode 100644 package/libdvbsi/Config.in
create mode 100644 package/libdvbsi/libdvbsi.mk
diff --git a/package/Config.in b/package/Config.in
index 0eb6a9c..dfc4584 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -513,6 +513,7 @@ source "package/json-javascript/Config.in"
endmenu
menu "Multimedia"
+source "package/libdvbsi/Config.in"
source "package/libdvdread/Config.in"
source "package/libdvdnav/Config.in"
source "package/libebml/Config.in"
diff --git a/package/libdvbsi/Config.in b/package/libdvbsi/Config.in
new file mode 100644
index 0000000..2f58d2a
--- /dev/null
+++ b/package/libdvbsi/Config.in
@@ -0,0 +1,9 @@
+config BR2_PACKAGE_LIBDVBSI
+ bool "libdvbsi"
+ depends on BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS
+ help
+ C++ parsing library for Service Information (SI) in DVB systems.
+ With libdvbsi++ you can convert raw DVB service information to
+ a set of C++ objects, removing the need to parse data manually.
+
+ http://www.saftware.de/
diff --git a/package/libdvbsi/libdvbsi.mk b/package/libdvbsi/libdvbsi.mk
new file mode 100644
index 0000000..1fc0701
--- /dev/null
+++ b/package/libdvbsi/libdvbsi.mk
@@ -0,0 +1,17 @@
+################################################################################
+#
+# libdvbsi++
+#
+################################################################################
+
+LIBDVBSI_VERSION = 0.3.6
+LIBDVBSI_SOURCE = libdvbsi++-$(LIBDVBSI_VERSION).tar.bz2
+LIBDVBSI_SITE = http://www.saftware.de/
+LIBDVBSI_INSTALL_STAGING = YES
+LIBDVBSI_LICENSE = LGPLv2.1
+LIBDVBSI_LICENSE_FILE = COPYING
+
+# sometimes no Makefile is in the archive
+LIBDVBSI_AUTORECONF=YES
+
+$(eval $(autotools-package))
--
1.7.10.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] package/libdvbsi: new package
2013-06-23 14:34 [Buildroot] [PATCH] package/libdvbsi: new package Carsten Schoenert
@ 2013-06-23 14:42 ` Thomas Petazzoni
2013-06-23 15:02 ` Carsten Schoenert
0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2013-06-23 14:42 UTC (permalink / raw)
To: buildroot
Dear Carsten Schoenert,
On Sun, 23 Jun 2013 16:34:56 +0200, Carsten Schoenert wrote:
> --- /dev/null
> +++ b/package/libdvbsi/Config.in
> @@ -0,0 +1,9 @@
> +config BR2_PACKAGE_LIBDVBSI
> + bool "libdvbsi"
> + depends on BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS
We generally put these dependencies each on a separate line, for some
reason.
> + help
> + C++ parsing library for Service Information (SI) in DVB systems.
> + With libdvbsi++ you can convert raw DVB service information to
> + a set of C++ objects, removing the need to parse data manually.
> +
> + http://www.saftware.de/
Missing comment when the package cannot be selected due to the absence
of the toolchain dependencies.
> +LIBDVBSI_VERSION = 0.3.6
> +LIBDVBSI_SOURCE = libdvbsi++-$(LIBDVBSI_VERSION).tar.bz2
> +LIBDVBSI_SITE = http://www.saftware.de/
> +LIBDVBSI_INSTALL_STAGING = YES
> +LIBDVBSI_LICENSE = LGPLv2.1
> +LIBDVBSI_LICENSE_FILE = COPYING
> +
> +# sometimes no Makefile is in the archive
> +LIBDVBSI_AUTORECONF=YES
> +
> +$(eval $(autotools-package))
Otherwise, looks good.
Thanks,
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] package/libdvbsi: new package
2013-06-23 14:42 ` Thomas Petazzoni
@ 2013-06-23 15:02 ` Carsten Schoenert
0 siblings, 0 replies; 3+ messages in thread
From: Carsten Schoenert @ 2013-06-23 15:02 UTC (permalink / raw)
To: buildroot
Hello Thomas,
Am 23.06.2013 16:42, schrieb Thomas Petazzoni:
> We generally put these dependencies each on a separate line, for some
> reason.
O.k. put this from another Config.in. :-)
But I agree.
> Missing comment when the package cannot be selected due to the absence
> of the toolchain dependencies.
Dito^^
> Otherwise, looks good.
Yann found another issue, I prepare a new patch.
Thx for the quick re looking!
Regards
Carsten
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-06-23 15:02 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-23 14:34 [Buildroot] [PATCH] package/libdvbsi: new package Carsten Schoenert
2013-06-23 14:42 ` Thomas Petazzoni
2013-06-23 15:02 ` Carsten Schoenert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox