From patchwork Wed Mar 30 19:36:40 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 603579 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 3qZyZm43gPz9sD3 for ; Thu, 31 Mar 2016 06:37:04 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=zacarias.com.ar header.i=@zacarias.com.ar header.b=bh57XJ+y; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 7CA459104E; Wed, 30 Mar 2016 19:37:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id o4Rn3ccz5TIj; Wed, 30 Mar 2016 19:36:59 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 601689106B; Wed, 30 Mar 2016 19:36:59 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 0634D1C0BC2 for ; Wed, 30 Mar 2016 19:36:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id F41F99106B for ; Wed, 30 Mar 2016 19:36:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id KxcYVEiI9VBh for ; Wed, 30 Mar 2016 19:36:56 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from www.zacarias.com.ar (www.zacarias.com.ar [176.9.42.171]) by whitealder.osuosl.org (Postfix) with ESMTPS id 74BF291058 for ; Wed, 30 Mar 2016 19:36:56 +0000 (UTC) Received: from asgard (cpe-186-22-138-122.telecentro-reversos.com.ar [186.22.138.122] (may be forged)) (authenticated bits=0) by www.zacarias.com.ar (8.15.1/8.15.1) with ESMTPSA id u2UJampF016860 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 30 Mar 2016 19:36:51 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1459366614; bh=5iZlRzhfxxeJCss80irBvOfWo8FmIQamCO4U8ePFQmM=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=bh57XJ+yHdfr4J1fPjXwCVJ7h8Fwe3J4PWQXj6JINc4FA9D23DOp5/8pPLEd84E9R dyv8H/Ky54bN0whSjNLZ8DiNq8UzNhuWPkfDt4uGoYkKYIa02tyu2GUyZXNuRR8UIa aFCb5ZJjECHmyqxnx4FFKOdX2aLWHrmTqT4ho4E8= Received: by asgard (sSMTP sendmail emulation); Wed, 30 Mar 2016 16:36:47 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Wed, 30 Mar 2016 16:36:40 -0300 Message-Id: <1459366600-21925-2-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 2.7.3 In-Reply-To: <1459366600-21925-1-git-send-email-gustavo@zacarias.com.ar> References: <1459366600-21925-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.98.7 at www X-Virus-Status: Clean Subject: [Buildroot] [PATCH 2/2] gst1-libav: add license info X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Now that we use unbundled ffmpeg the licensing becomes much easier. Relevant code is under ext/*, which according to COPYING and comments is GPLv2+, except for ext/libswscale/gstffmpegscale.c which is LGPLv2+ - however that's not built/used when using system ffmpeg. The code under gst-libs/ is the bundled ffmpeg itself. Tests are under LGPLv2+ as well but we don't build them since we disabled gst-check support in the gstreamer1 package. Signed-off-by: Gustavo Zacarias Acked-by: Arnout Vandecappelle (Essensium/Mind) --- package/gstreamer1/gst1-libav/gst1-libav.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/gstreamer1/gst1-libav/gst1-libav.mk b/package/gstreamer1/gst1-libav/gst1-libav.mk index 02ac394..d878ec8 100644 --- a/package/gstreamer1/gst1-libav/gst1-libav.mk +++ b/package/gstreamer1/gst1-libav/gst1-libav.mk @@ -12,5 +12,7 @@ GST1_LIBAV_DEPENDENCIES = \ host-pkgconf ffmpeg gstreamer1 gst1-plugins-base \ $(if $(BR2_PACKAGE_BZIP2),bzip2) \ $(if $(BR2_PACKAGE_XZ),xz) +GST1_LIBAV_LICENSE = GPLv2+ +GST1_LIBAV_LICENSE_FILES = COPYING $(eval $(autotools-package))