Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v2 07/12] libshairplay: new package
Date: Sun, 19 Jan 2014 16:32:41 +0100	[thread overview]
Message-ID: <20140119153241.GC3387@free.fr> (raw)
In-Reply-To: <1389831355-19983-8-git-send-email-maxime.hadjinlian@gmail.com>

Maxime, All,

On 2014-01-16 01:15 +0100, Maxime Hadjinlian spake thusly:
> libshairplay is a client library that emulates an airplay server
[--SNIP--]
> diff --git a/package/libshairplay/Config.in b/package/libshairplay/Config.in
> new file mode 100644
> index 0000000..dd94ef2
> --- /dev/null
> +++ b/package/libshairplay/Config.in
> @@ -0,0 +1,12 @@
> +config BR2_PACKAGE_LIBSHAIRPLAY
> +  bool "libshairplay"
> +  select BR2_PACKAGE_OPENSSL
> +  depends on BR2_INET_IPV6
> +  help
> +    libshairplay is a client library that emulates an airplay
> +    server
> +
> +    https://github.com/juhovh/shairplay
> +
> +comment "libshairplay needs a toolchain w/ IPv6"
> +	depends on !BR2_INET_IPV6
> diff --git a/package/libshairplay/libshairplay.mk b/package/libshairplay/libshairplay.mk
> new file mode 100644
> index 0000000..3488c24
> --- /dev/null
> +++ b/package/libshairplay/libshairplay.mk
> @@ -0,0 +1,14 @@
> +################################################################################
> +#
> +# libshairplay
> +#
> +################################################################################
> +
> +LIBSHAIRPLAY_VERSION = 139d5ef55564514c31f02dd82cef91236c9ff523
> +LIBSHAIRPLAY_SITE = $(call github,juhovh,shairplay,$(LIBSHAIRPLAY_VERSION))
> +LIBSHAIRPLAY_INSTALL_STAGING = YES
> +LIBSHAIRPLAY_INSTALL_TARGET = YES
> +LIBSHAIRPLAY_AUTORECONF = YES
> +LIBSHAIRPORT_LICENSE = MIT

Licensing is a bit more complicated, as explained in the LICENSE file:

    ---8<---
    Following licenses apply:

    src/lib/alac/* - MIT License
    src/lib/crypto/* - New BSD License
    src/lib/http_parser.* - MIT License
    src/lib/* - LGPLv2.1+ License
    src/bindings/* - MIT License
    src/* - MIT License
    AirTV-Qt/* - LGPLv2.1+ License

    Also the following files are used, although not necessary:

    AirTV-Qt/qtsingleapplication/src/* - New BSD License
    ---8<---

So I'd say:
    LIBSHAIRPLAY_LICENSE = MIT, BSD-3c, LGPLv2.1+
    LIBSHAIRPLAY_LICENSE_FILES = LICENSE

You also forgot:
    LIBSHAIRPLAY_DEPENDENCIES = openssl


-,
Yann E. MORIN. 
.-----------------.--------------------.------------------.--------------------.
|  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.  |
'------------------------------^-------^------------------^--------------------'

  reply	other threads:[~2014-01-19 15:32 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-16  0:15 [Buildroot] [PATCH v2 00/12] Introducing XBMC Maxime Hadjinlian
2014-01-16  0:15 ` [Buildroot] [PATCH v2 01/12] libass: new package Maxime Hadjinlian
2014-01-17  8:08   ` Peter Korsgaard
2014-01-18 11:41   ` Bernd Kuhls
2014-01-16  0:15 ` [Buildroot] [PATCH v2 02/12] libbluray: " Maxime Hadjinlian
2014-01-16  0:15 ` [Buildroot] [PATCH v2 03/12] libcdio: " Maxime Hadjinlian
2014-01-16  0:15 ` [Buildroot] [PATCH v2 04/12] libnfs: " Maxime Hadjinlian
2014-01-16  0:15 ` [Buildroot] [PATCH v2 05/12] libplist: " Maxime Hadjinlian
2014-01-16  0:15 ` [Buildroot] [PATCH v2 06/12] librtmp: " Maxime Hadjinlian
2014-01-18 18:55   ` Bernd Kuhls
2014-01-19 15:25   ` Yann E. MORIN
2014-01-16  0:15 ` [Buildroot] [PATCH v2 07/12] libshairplay: " Maxime Hadjinlian
2014-01-19 15:32   ` Yann E. MORIN [this message]
2014-01-16  0:15 ` [Buildroot] [PATCH v2 08/12] tinyxml: " Maxime Hadjinlian
2014-01-19 15:41   ` Yann E. MORIN
2014-01-19 15:55     ` Yann E. MORIN
2014-01-16  0:15 ` [Buildroot] [PATCH v2 09/12] sdl: add host version Maxime Hadjinlian
2014-01-19 15:47   ` Yann E. MORIN
2014-01-16  0:15 ` [Buildroot] [PATCH v2 10/12] sdl_image: " Maxime Hadjinlian
2014-01-19 15:53   ` Yann E. MORIN
2014-01-16  0:15 ` [Buildroot] [PATCH v2 11/12] libenca: new package Maxime Hadjinlian
2014-01-17  8:10   ` Peter Korsgaard
2014-01-18 11:49   ` Bernd Kuhls
2014-01-18 12:29     ` Maxime Hadjinlian
2014-01-18 12:55       ` Bernd Kuhls
2014-01-16  0:15 ` [Buildroot] [PATCH v2 12/12] xbmc: " Maxime Hadjinlian
2014-01-18  9:20 ` [Buildroot] [PATCH v2 00/12] Introducing XBMC Bernd Kuhls
2014-01-18 10:31   ` Bernd Kuhls

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=20140119153241.GC3387@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