Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Korsgaard <jacmet@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 03/20] package/usbredir: new package
Date: Fri, 14 Dec 2012 13:53:37 +0100	[thread overview]
Message-ID: <87mwxgiylq.fsf@dell.be.48ers.dk> (raw)
In-Reply-To: <b6f27b8d9306f0a01bd003e2c9bdc1f5c5e87128.1355435224.git.yann.morin.1998@free.fr> (Yann E. MORIN's message of "Thu, 13 Dec 2012 22:47:03 +0100")

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 Yann> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
 Yann> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
 Yann> Cc: Arnout Vandecappelle <arnout@mind.be>
 Yann> ---
 Yann>  package/Config.in            |    1 +
 Yann>  package/usbredir/Config.in   |   28 ++++++++++++++++++++++++++++
 Yann>  package/usbredir/usbredir.mk |   31 +++++++++++++++++++++++++++++++
 Yann>  3 files changed, 60 insertions(+), 0 deletions(-)
 Yann>  create mode 100644 package/usbredir/Config.in
 Yann>  create mode 100644 package/usbredir/usbredir.mk

 Yann> diff --git a/package/Config.in b/package/Config.in
 Yann> index 8edadf9..9d68581 100644
 Yann> --- a/package/Config.in
 Yann> +++ b/package/Config.in
 Yann> @@ -492,6 +492,7 @@ source "package/libupnp/Config.in"
 Yann>  source "package/libvncserver/Config.in"
 Yann>  source "package/nss-mdns/Config.in"
 Yann>  source "package/ortp/Config.in"
 Yann> +source "package/usbredir/Config.in"
 Yann>  source "package/zeromq/Config.in"
 Yann>  endmenu
 
 Yann> diff --git a/package/usbredir/Config.in b/package/usbredir/Config.in
 Yann> new file mode 100644
 Yann> index 0000000..8d8ac5a
 Yann> --- /dev/null
 Yann> +++ b/package/usbredir/Config.in
 Yann> @@ -0,0 +1,28 @@
 Yann> +comment "usbredir requires libusb"
 Yann> +	depends on !BR2_PACKAGE_LIBUSB
 Yann> +

We normally use select for libraries. Any reason to not use it here?

 Yann> +USBREDIR_VERSION         = 0.4.3
 Yann> +USBREDIR_SOURCE          = usbredir-$(USBREDIR_VERSION).tar.bz2
 Yann> +USBREDIR_SITE            = http://spice-space.org/download/usbredir
 Yann> +USBREDIR_LICENSE         = LGPLv2.1+
 Yann> +USBREDIR_LICENSE_FILES   = COPYING.LIB
 Yann> +USBREDIR_INSTALL_STAGING = YES
 Yann> +USBREDIR_DEPENDENCIES    = libusb
 Yann> +
 Yann> +USBREDIR_DEPENDENCIES    += host-pkgconf

Any particular reason to not merge this line with the one above?

-- 
Bye, Peter Korsgaard

  reply	other threads:[~2012-12-14 12:53 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-13 21:47 [Buildroot] [pull request] Pull request for branch yem-new-packages Yann E. MORIN
2012-12-13 21:47 ` [Buildroot] [PATCH 01/20] package/vde2: new package Yann E. MORIN
2012-12-14 12:13   ` Peter Korsgaard
2012-12-14 21:12     ` Yann E. MORIN
2012-12-13 21:47 ` [Buildroot] [PATCH 02/20] package/libiscsi: " Yann E. MORIN
2012-12-14 12:51   ` Peter Korsgaard
2012-12-13 21:47 ` [Buildroot] [PATCH 03/20] package/usbredir: " Yann E. MORIN
2012-12-14 12:53   ` Peter Korsgaard [this message]
2012-12-14 13:01     ` Yann E. MORIN
2012-12-14 15:06       ` Peter Korsgaard
2012-12-14 21:45         ` Yann E. MORIN
2012-12-14 21:47           ` Peter Korsgaard
2012-12-13 21:47 ` [Buildroot] [PATCH 04/20] package/celt051: " Yann E. MORIN
2012-12-13 21:47 ` [Buildroot] [PATCH 05/20] package/python-pyparsing: " Yann E. MORIN
2012-12-13 21:47 ` [Buildroot] [PATCH 06/20] package/cegui06: " Yann E. MORIN
2012-12-13 21:47 ` [Buildroot] [PATCH 07/20] package/slirp: " Yann E. MORIN
2012-12-13 21:47 ` [Buildroot] [PATCH 08/20] package/spice-protocol: " Yann E. MORIN
2012-12-13 21:47 ` [Buildroot] [PATCH 09/20] package/spice: " Yann E. MORIN
2012-12-13 21:47 ` [Buildroot] [PATCH 10/20] package/spice: enable client Yann E. MORIN
2012-12-13 21:47 ` [Buildroot] [PATCH 11/20] package/spice: enable GUI Yann E. MORIN
2012-12-13 21:47 ` [Buildroot] [PATCH 12/20] package/spice: enable slirp support Yann E. MORIN
2012-12-13 21:47 ` [Buildroot] [PATCH 13/20] package/libseccomp: new package Yann E. MORIN
2012-12-13 21:47 ` [Buildroot] [PATCH 14/20] package/keyutils: " Yann E. MORIN
2012-12-13 21:47 ` [Buildroot] [PATCH 15/20] package/pmake: add host pmake Yann E. MORIN
2012-12-13 21:47 ` [Buildroot] [PATCH 16/20] package/libbsd: new package Yann E. MORIN
2012-12-13 21:47 ` [Buildroot] [PATCH 17/20] package/libedit2: " Yann E. MORIN
2012-12-13 21:47 ` [Buildroot] [PATCH 18/20] package/ceph: " Yann E. MORIN
2012-12-13 21:47 ` [Buildroot] [PATCH 19/20] package/dtc: " Yann E. MORIN
2012-12-13 21:47 ` [Buildroot] [PATCH 20/20] package/dtc: add option to install programs Yann E. MORIN
2012-12-13 22:45 ` [Buildroot] [pull request] Pull request for branch yem-new-packages Arnout Vandecappelle

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=87mwxgiylq.fsf@dell.be.48ers.dk \
    --to=jacmet@uclibc.org \
    --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