From owner-svn-ports-all@FreeBSD.ORG Tue Jul 17 15:13:19 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9E3041065670; Tue, 17 Jul 2012 15:13:19 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6FC7E8FC15; Tue, 17 Jul 2012 15:13:19 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q6HFDJV8066079; Tue, 17 Jul 2012 15:13:19 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q6HFDJHp066076; Tue, 17 Jul 2012 15:13:19 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201207171513.q6HFDJHp066076@svn.freebsd.org> From: Pietro Cerutti Date: Tue, 17 Jul 2012 15:13:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r301011 - head/devel/yajl-tcl X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jul 2012 15:13:19 -0000 Author: gahr Date: Tue Jul 17 15:13:18 2012 New Revision: 301011 URL: http://svn.freebsd.org/changeset/ports/301011 Log: - New port: devel/yajl-tcl Yajl-tcl is a Tcl wrapper for the Yet Another JSON Library (YAJL). WWW: https://github.com/flightaware/yajl-tcl/ Added: head/devel/yajl-tcl/ head/devel/yajl-tcl/Makefile (contents, props changed) head/devel/yajl-tcl/distinfo (contents, props changed) head/devel/yajl-tcl/pkg-descr (contents, props changed) Added: head/devel/yajl-tcl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/yajl-tcl/Makefile Tue Jul 17 15:13:18 2012 (r301011) @@ -0,0 +1,36 @@ +# New ports collection Makefile for: yajl-tcl +# Date created: 17 July 2012 +# Whom: gahr +# +# $FreeBSD$ +# + +PORTNAME= yajl-tcl +PORTVERSION= 1.2 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_LOCAL} \ + http://people.freebsd.org/~gahr/distfiles/ +DISTNAME= ${PORTNAME}-${PORTVERSION}-${CLONEDATE} +MASTER_SITE_SUBDIR= gahr + +MAINTAIER= gahr@FreeBSD.org +COMMENT= Tcl bindings for Yet Another JSON Library + +LICENSE= BSD + +USE_TCL= yes +USE_AUTOTOOLS= autoconf +CONFIGURE_ARGS+=--with-tcl=${TCL_LIBDIR} \ + --with-tclinclude=${TCL_INCLUDEDIR} + +PLIST_FILES= lib/yajltcl1.2/libyajltcl.so.1 \ + lib/yajltcl1.2/pkgIndex.tcl \ + lib/yajltcl1.2/yajl.tcl +PLIST_DIRS= lib/yajltcl1.2 + +CLONEDATE= 20120717 +WRKSRC= ${WRKDIR}/${PORTNAME} + +LIB_DEPENDS= yajl:${PORTSDIR}/devel/yajl + +.include Added: head/devel/yajl-tcl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/yajl-tcl/distinfo Tue Jul 17 15:13:18 2012 (r301011) @@ -0,0 +1,2 @@ +SHA256 (yajl-tcl-1.2-20120717.tar.gz) = 0ea96f73dd48e85074d8ae3f92528f9313a2ad2ebbeb31a6589cf94d25a99180 +SIZE (yajl-tcl-1.2-20120717.tar.gz) = 1023791 Added: head/devel/yajl-tcl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/yajl-tcl/pkg-descr Tue Jul 17 15:13:18 2012 (r301011) @@ -0,0 +1,6 @@ +Yajl-tcl is a Tcl wrapper for the Yet Another JSON Library (YAJL). +Although there is already a package in the tcllib library, huddle, +that can generate JSON, the big advantage in using yajl-tcl is +performance. + +WWW: https://github.com/flightaware/yajl-tcl