From patchwork Wed Oct 7 20:15:54 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 527409 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 A9B89140D6E for ; Thu, 8 Oct 2015 07:16:18 +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=mbC33jow; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 9C2D088C2E; Wed, 7 Oct 2015 20:16:12 +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 7okF3jlEG7PV; Wed, 7 Oct 2015 20:16:11 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 9A72090BEB; Wed, 7 Oct 2015 20:16:11 +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 0FC331C0BE0 for ; Wed, 7 Oct 2015 20:16:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 089DB90E1D for ; Wed, 7 Oct 2015 20:16:10 +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 RijZY-js38Zd for ; Wed, 7 Oct 2015 20:16:08 +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 1F7298801D for ; Wed, 7 Oct 2015 20:16:07 +0000 (UTC) Received: from asgard (cpe-186-22-136-136.telecentro-reversos.com.ar [186.22.136.136] (may be forged)) (authenticated bits=0) by www.zacarias.com.ar (8.15.1/8.15.1) with ESMTPSA id t97KG0mP014658 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 7 Oct 2015 20:16:03 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1444248965; bh=RotBZ2XpYZ1aR3KIsibX15ERaXryN7oVt/O9DmN3INk=; h=From:To:Cc:Subject:Date; b=mbC33jowcRdBFvkmo+TiaDg9cYsI1HH+5H2bXyJLNo4LcNSVV0gnAqvy4G8KkuJvX SS7/hi41LjuhAOHOYnnKuFb2eYg7On4/jBZRmPsTWtiM39C94CJtt0Fm/jGNNyknA+ Nvx705NAKPhHcreBpl1N8zZ5Uosbry0GdmqDKvoM= Received: by asgard (sSMTP sendmail emulation); Wed, 07 Oct 2015 17:15:54 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Wed, 7 Oct 2015 17:15:54 -0300 Message-Id: <1444248954-12697-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 2.4.9 X-Virus-Scanned: clamav-milter 0.98.7 at www X-Virus-Status: Clean Subject: [Buildroot] [PATCH] mplayer: 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" Most code is GPLv2+ or compatible except for one file that is GPLv2-only, hence as a whole is GPLv2 (see Copyright). Also kill some whitespace and make the only hard dependency (host-pkgconf) a hard dependency, not an addition, since it's not conditional. Signed-off-by: Gustavo Zacarias --- package/mplayer/mplayer.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/mplayer/mplayer.mk b/package/mplayer/mplayer.mk index bab7ed7..d896b35 100644 --- a/package/mplayer/mplayer.mk +++ b/package/mplayer/mplayer.mk @@ -7,12 +7,12 @@ MPLAYER_VERSION = 1.2 MPLAYER_SOURCE = MPlayer-$(MPLAYER_VERSION).tar.xz MPLAYER_SITE = http://www.mplayerhq.hu/MPlayer/releases - +MPLAYER_DEPENDENCIES = host-pkgconf +MPLAYER_LICENSE = GPLv2 +MPLAYER_LICENSE_FILES = LICENSE Copyright MPLAYER_CFLAGS = $(TARGET_CFLAGS) MPLAYER_LDFLAGS = $(TARGET_LDFLAGS) -MPLAYER_DEPENDENCIES += host-pkgconf - # mplayer needs pcm+mixer support, but configure fails to check for it ifeq ($(BR2_PACKAGE_ALSA_LIB)$(BR2_PACKAGE_ALSA_LIB_MIXER)$(BR2_PACKAGE_ALSA_LIB_PCM),yyy) MPLAYER_DEPENDENCIES += alsa-lib