From patchwork Thu Dec 6 21:33:18 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Davide Viti X-Patchwork-Id: 204326 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 963E72C0109 for ; Fri, 7 Dec 2012 08:34:13 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 74DCB30AAD; Thu, 6 Dec 2012 21:34:12 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RVixY0jSeH1N; Thu, 6 Dec 2012 21:34:11 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 1CDDF3058C; Thu, 6 Dec 2012 21:34:11 +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 DD6878F783 for ; Thu, 6 Dec 2012 21:34:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id E364D816CC for ; Thu, 6 Dec 2012 21:34:09 +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 bah1E6K9Hoqg for ; Thu, 6 Dec 2012 21:34:08 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from cp-out8.libero.it (cp-out8.libero.it [151.1.108.65]) by whitealder.osuosl.org (Postfix) with ESMTP id 53F9581689 for ; Thu, 6 Dec 2012 21:34:08 +0000 (UTC) X-CTCH-Spam: Unknown X-CTCH-RefID: str=0001.0A0C0206.50C10F4F.0054,ss=1,re=0.000,fgs=0 X-libjamoibt: 1555 Received: from slurp.zinosat.homelinux.com (151.16.19.59) by cp-out8.libero.it (8.5.133) id 504281E513D87793; Thu, 6 Dec 2012 22:34:07 +0100 Received: from zino by slurp.zinosat.homelinux.com with local (Exim 4.72) (envelope-from ) id 1Tgj4e-0004NO-SL; Thu, 06 Dec 2012 22:33:40 +0100 From: Davide Viti To: buildroot@busybox.net Date: Thu, 6 Dec 2012 22:33:18 +0100 Message-Id: <1354829598-16782-2-git-send-email-zinosat@tiscali.it> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1354829598-16782-1-git-send-email-zinosat@tiscali.it> References: <1354829598-16782-1-git-send-email-zinosat@tiscali.it> Cc: Davide Viti , yann.morin.1998@free.fr Subject: [Buildroot] [PATCH] tcllib: new package 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 CC: yann.morin.1998@free.fr Signed-off-by: Davide Viti --- package/Config.in | 5 +++++ package/tcllib/Config.in | 11 +++++++++++ package/tcllib/tcllib.mk | 12 ++++++++++++ 3 files changed, 28 insertions(+), 0 deletions(-) create mode 100644 package/tcllib/Config.in create mode 100644 package/tcllib/tcllib.mk diff --git a/package/Config.in b/package/Config.in index 74e439e..cad1221 100644 --- a/package/Config.in +++ b/package/Config.in @@ -313,6 +313,11 @@ endmenu endif source "package/ruby/Config.in" source "package/tcl/Config.in" +if BR2_PACKAGE_TCL +menu "tcl libraries/modules" +source "package/tcllib/Config.in" +endmenu +endif endmenu menu "Libraries" diff --git a/package/tcllib/Config.in b/package/tcllib/Config.in new file mode 100644 index 0000000..b0a4ad0 --- /dev/null +++ b/package/tcllib/Config.in @@ -0,0 +1,11 @@ +config BR2_PACKAGE_TCLLIB + bool "tcllib" + help + Tcllib is a collection of utility modules for Tcl. These + modules provide a wide variety of functionality, from + implementations of standard data structures to + implementations of common networking protocols. The intent + is to collect commonly used function into a single library, + which users can rely on to be available and stable + + http://tcl.activestate.com/software/tcllib/ diff --git a/package/tcllib/tcllib.mk b/package/tcllib/tcllib.mk new file mode 100644 index 0000000..fa8968d --- /dev/null +++ b/package/tcllib/tcllib.mk @@ -0,0 +1,12 @@ +############################################################# +# +# tcllib +# +############################################################# +TCLLIB_VERSION = 1.13 +TCLLIB_SOURCE = tcllib-$(TCLLIB_VERSION).tar.bz2 +TCLLIB_SITE = http://downloads.sourceforge.net/project/tcllib/tcllib/$(TCLLIB_VERSION) +TCLLIB_LICENSE_FILES = license.terms +TCLLIB_DEPENDENCIES = host-tcl tcl + +$(eval $(autotools-package))