From patchwork Sun Feb 17 16:34:56 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Stefan_Fr=C3=B6berg?= X-Patchwork-Id: 221076 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id ACBA02C0080 for ; Mon, 18 Feb 2013 03:47:51 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id DA29210B8AF; Sun, 17 Feb 2013 16:47:36 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 79nxGpLiQmeJ; Sun, 17 Feb 2013 16:47:34 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 560831020C0; Sun, 17 Feb 2013 16:47:34 +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 918338F753 for ; Sun, 17 Feb 2013 16:47:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 3881A8BE7D for ; Sun, 17 Feb 2013 16:47:46 +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 rY5MrFAAlWmM for ; Sun, 17 Feb 2013 16:47:45 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.petroprogram.com (mail.petroprogram.com [194.89.34.74]) by whitealder.osuosl.org (Postfix) with ESMTPS id 222E38BE2D for ; Sun, 17 Feb 2013 16:47:45 +0000 (UTC) Received: from localhost.fi (unknown [194.89.34.74]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: stefan.froberg@petroprogram.com) by mail.petroprogram.com (Postfix) with ESMTPSA id 06131422D8; Sun, 17 Feb 2013 18:39:10 +0200 (EET) From: =?UTF-8?q?Stefan=20Fr=C3=B6berg?= To: buildroot@busybox.net Date: Sun, 17 Feb 2013 18:34:56 +0200 Message-Id: <1361118896-2263-1-git-send-email-stefan.froberg@petroprogram.com> X-Mailer: git-send-email 1.7.7.6 MIME-Version: 1.0 Subject: [Buildroot] [PATCH] new package: iso-codes 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: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net iso-codes This package provides the ISO-639 Language code list, the ISO-4217 Currency code list, the ISO-3166 Territory code list, and ISO-3166-2 sub-territory lists, and all their translations in gettext .po form. Signed-off-by: Stefan Fröberg --- Note: This package is needed by network-manager-applet (coming soon) package/Config.in | 1 + package/iso-codes/Config.in | 10 ++++++++++ package/iso-codes/iso-codes.mk | 13 +++++++++++++ 3 files changed, 24 insertions(+), 0 deletions(-) create mode 100644 package/iso-codes/Config.in create mode 100644 package/iso-codes/iso-codes.mk diff --git a/package/Config.in b/package/Config.in index e1788c2..cf4b456 100644 --- a/package/Config.in +++ b/package/Config.in @@ -571,6 +571,7 @@ endmenu menu "Text and terminal handling" source "package/enchant/Config.in" +source "package/iso-codes/Config.in" source "package/libfribidi/Config.in" source "package/icu/Config.in" source "package/libiconv/Config.in" diff --git a/package/iso-codes/Config.in b/package/iso-codes/Config.in new file mode 100644 index 0000000..ee3ac49 --- /dev/null +++ b/package/iso-codes/Config.in @@ -0,0 +1,10 @@ +config BR2_PACKAGE_ISO_CODES + bool "iso-codes" + select BR2_PACKAGE_GETTEXT + help + This package provides the ISO-639 Language code list, the ISO-3166 + Territory code list, and ISO-3166-2 sub-territory lists, and all + their translations in gettext .po form. + + http://alioth.debian.org/projects/pkg-isocodes + diff --git a/package/iso-codes/iso-codes.mk b/package/iso-codes/iso-codes.mk new file mode 100644 index 0000000..ac40f9c --- /dev/null +++ b/package/iso-codes/iso-codes.mk @@ -0,0 +1,13 @@ +############################################################# +# +# iso-codes +# +############################################################# + +ISO_CODES_VERSION = 3.40 +ISO_CODES_SOURCE = iso-codes-$(ISO_CODES_VERSION).tar.xz +ISO_CODES_SITE = http://pkg-isocodes.alioth.debian.org/downloads +ISO_CODES_INSTALL_STAGING = YES +ISO_CODES_DEPENDENCIES = gettext + +$(eval $(autotools-package))