From patchwork Mon Jan 21 21:29:41 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 214267 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 989AE2C007E for ; Tue, 22 Jan 2013 08:30:15 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 5E6F28AD4B; Mon, 21 Jan 2013 21:30: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 E3597K0UymnD; Mon, 21 Jan 2013 21:30:05 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 98D918B28B; Mon, 21 Jan 2013 21:30:03 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id A67398F74B for ; Mon, 21 Jan 2013 21:30:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D02A78A6F8 for ; Mon, 21 Jan 2013 21:30:01 +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 bMmdJlc4sI8W for ; Mon, 21 Jan 2013 21:30:00 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id B053F8A5F0 for ; Mon, 21 Jan 2013 21:29:59 +0000 (UTC) Received: from asgard (host110.190-225-90.telecom.net.ar [190.225.90.110]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id r0LLTqpp026710 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 21 Jan 2013 21:29:54 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1358803796; bh=zYtneK4Sbr37Voc58oRHdu7zzsQvW2mZ6CFl7RhWIXg=; h=From:To:Cc:Subject:Date; b=mYMI5ORzeWwx3PPx+K82WMQ2qNztchtsYQ59gdD5Yls+6lx1WX/edsVdO9TQ9hvYj V3WSY5LeBEq5dfo5LN4OmM8oqRL6zzQ0R8yXGs8LOVdq6FaRSxtqirDMauFiriMiuy otNz2yoE8VDP01aufFk4zxpwFvY0vi6TzxvQeuis= Received: by asgard (sSMTP sendmail emulation); Mon, 21 Jan 2013 18:29:50 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Mon, 21 Jan 2013 18:29:41 -0300 Message-Id: <1358803790-30245-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.12.4 X-Virus-Scanned: clamav-milter 0.97.5 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH 01/10] xz: add license information X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 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-bounces@busybox.net Signed-off-by: Gustavo Zacarias --- package/xz/xz.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/xz/xz.mk b/package/xz/xz.mk index e00c91b..8ff3c83 100644 --- a/package/xz/xz.mk +++ b/package/xz/xz.mk @@ -3,11 +3,14 @@ # xz-utils # ############################################################# + XZ_VERSION = 5.0.4 XZ_SOURCE = xz-$(XZ_VERSION).tar.bz2 XZ_SITE = http://tukaani.org/xz/ XZ_INSTALL_STAGING = YES XZ_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99' +XZ_LICENSE = GPLv2+ GPLv3+ LGPLv2.1+ +XZ_LICENSE_FILES = COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1 $(eval $(autotools-package)) $(eval $(host-autotools-package))