From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 1/8] package/libdvbcsa: New package
Date: Tue, 14 Oct 2014 10:20:52 +0200 [thread overview]
Message-ID: <20141014082052.GE3730@free.fr> (raw)
In-Reply-To: <1413137610-21887-1-git-send-email-bernd.kuhls@t-online.de>
Bernd, All,
On 2014-10-12 20:13 +0200, Bernd Kuhls spake thusly:
>
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Hashes match. However, I wonder how interesting it is to have md5,
especially since we have sha1 and sha256. I'd just remove it.
Otherwise:
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> package/Config.in | 1 +
> package/libdvbcsa/Config.in | 9 +++++++++
> package/libdvbcsa/libdvbcsa.hash | 6 ++++++
> package/libdvbcsa/libdvbcsa.mk | 31 +++++++++++++++++++++++++++++++
> 4 files changed, 47 insertions(+)
> create mode 100644 package/libdvbcsa/Config.in
> create mode 100644 package/libdvbcsa/libdvbcsa.hash
> create mode 100644 package/libdvbcsa/libdvbcsa.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index 186ffea..da059d8 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -745,6 +745,7 @@ endmenu
> menu "Multimedia"
> source "package/libass/Config.in"
> source "package/libbluray/Config.in"
> + source "package/libdvbcsa/Config.in"
> source "package/libdvbsi/Config.in"
> source "package/libdvdnav/Config.in"
> source "package/libdvdread/Config.in"
> diff --git a/package/libdvbcsa/Config.in b/package/libdvbcsa/Config.in
> new file mode 100644
> index 0000000..dd7dc15
> --- /dev/null
> +++ b/package/libdvbcsa/Config.in
> @@ -0,0 +1,9 @@
> +config BR2_PACKAGE_LIBDVBCSA
> + bool "libdvbcsa"
> + help
> + libdvbcsa is a free implementation of the DVB Common Scrambling
> + Algorithm - DVB/CSA - with encryption and decryption capabilities
> +
> + As libdvbcsa implements a standard, it is completely legal to use it.
> +
> + http://www.videolan.org/developers/libdvbcsa.html
> diff --git a/package/libdvbcsa/libdvbcsa.hash b/package/libdvbcsa/libdvbcsa.hash
> new file mode 100644
> index 0000000..5b3fa4c
> --- /dev/null
> +++ b/package/libdvbcsa/libdvbcsa.hash
> @@ -0,0 +1,6 @@
> +# From http://download.videolan.org/pub/videolan/libdvbcsa/1.1.0/libdvbcsa-1.1.0.tar.gz.sha256
> +sha256 4db78af5cdb2641dfb1136fe3531960a477c9e3e3b6ba19a2754d046af3f456d libdvbcsa-1.1.0.tar.gz
> +# From http://download.videolan.org/pub/videolan/libdvbcsa/1.1.0/libdvbcsa-1.1.0.tar.gz.sha1
> +sha1 5f4640a7e93ae6494f24a881414e5c343f803365 libdvbcsa-1.1.0.tar.gz
> +# From http://download.videolan.org/pub/videolan/libdvbcsa/1.1.0/libdvbcsa-1.1.0.tar.gz.md5
> +md5 478ab1ca56ca58d2667da6ce22f74e39 libdvbcsa-1.1.0.tar.gz
> diff --git a/package/libdvbcsa/libdvbcsa.mk b/package/libdvbcsa/libdvbcsa.mk
> new file mode 100644
> index 0000000..ef1d957
> --- /dev/null
> +++ b/package/libdvbcsa/libdvbcsa.mk
> @@ -0,0 +1,31 @@
> +################################################################################
> +#
> +# libdvbcsa
> +#
> +################################################################################
> +
> +LIBDVBCSA_VERSION = 1.1.0
> +LIBDVBCSA_SITE = http://download.videolan.org/pub/videolan/libdvbcsa/$(LIBDVBCSA_VERSION)
> +LIBDVBCSA_LICENSE = GPLv2+
> +LIBDVBCSA_LICENSE_FILES = COPYING
> +LIBDVBCSA_INSTALL_STAGING = YES
> +
> +ifeq ($(BR2_X86_CPU_HAS_MMX),y)
> +LIBDVBCSA_CONF_OPTS += --enable-mmx
> +else
> +LIBDVBCSA_CONF_OPTS += --disable-mmx
> +endif
> +
> +ifeq ($(BR2_X86_CPU_HAS_SSE2),y)
> +LIBDVBCSA_CONF_OPTS += --enable-sse2
> +else
> +LIBDVBCSA_CONF_OPTS += --disable-sse2
> +endif
> +
> +ifeq ($(BR2_POWERPC_CPU_HAS_ALTIVEC),y)
> +LIBDVBCSA_CONF_OPTS += --enable-altivec
> +else
> +LIBDVBCSA_CONF_OPTS += --disable-altivec
> +endif
> +
> +$(eval $(autotools-package))
> --
> 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. |
'------------------------------^-------^------------------^--------------------'
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20141014/182bd418/attachment.asc>
prev parent reply other threads:[~2014-10-14 8:20 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-12 18:13 [Buildroot] [PATCH 1/8] package/libdvbcsa: New package Bernd Kuhls
2014-10-12 18:13 ` [Buildroot] [PATCH 2/8] package/ffmpeg: Enable support for libavresample Bernd Kuhls
2014-10-14 8:21 ` Yann E. MORIN
2014-10-12 18:13 ` [Buildroot] [PATCH 3/8] package/tvheadend: Convert to autotools-package Bernd Kuhls
2014-10-12 19:34 ` Thomas Petazzoni
2014-10-13 17:46 ` Bernd Kuhls
2014-10-12 18:13 ` [Buildroot] [PATCH 4/8] package/tvheadend: Needs iconv() Bernd Kuhls
2014-10-12 19:33 ` Thomas Petazzoni
2014-10-12 18:13 ` [Buildroot] [PATCH 5/8] package/tvheadend: Add support for libdvbcsa Bernd Kuhls
2014-10-14 8:22 ` Yann E. MORIN
2014-10-12 18:13 ` [Buildroot] [PATCH 6/8] package/tvheadend: Enable bundled build Bernd Kuhls
2014-10-12 18:20 ` Bernd Kuhls
2014-10-12 19:35 ` Thomas Petazzoni
2014-10-14 8:26 ` Yann E. MORIN
2014-10-14 8:26 ` Yann E. MORIN
2014-10-12 18:13 ` [Buildroot] [PATCH 7/8] package/tvheadend: Bump version to current git master Bernd Kuhls
2014-10-14 8:29 ` Yann E. MORIN
2014-10-12 18:13 ` [Buildroot] [PATCH 8/8] package/tvheadend: Add transcoding support by ffmpeg Bernd Kuhls
2014-10-14 8:29 ` Yann E. MORIN
2014-10-14 8:20 ` Yann E. MORIN [this message]
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=20141014082052.GE3730@free.fr \
--to=yann.morin.1998@free.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox