From owner-svn-ports-all@FreeBSD.ORG Fri Apr 26 16:46:37 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 6FC0137D; Fri, 26 Apr 2013 16:46:37 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 624B91232; Fri, 26 Apr 2013 16:46:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r3QGkbFE059321; Fri, 26 Apr 2013 16:46:37 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r3QGkaxI059316; Fri, 26 Apr 2013 16:46:36 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201304261646.r3QGkaxI059316@svn.freebsd.org> From: Pawel Pekala Date: Fri, 26 Apr 2013 16:46:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r316626 - in head/devel: . libklel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 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: Fri, 26 Apr 2013 16:46:37 -0000 Author: pawel Date: Fri Apr 26 16:46:35 2013 New Revision: 316626 URL: http://svnweb.freebsd.org/changeset/ports/316626 Log: The KoreLogic Expression Language Library is a C library that provides a simple expression language that can be embedded in other programs. This library does not implement a full programming language, but rather a simpler expression language called KL-EL that is designed to provide arithmetic and logic operations useful in situations where embedding a full programming language would be overkill. KL-EL expressions have access to a full set of arithmetic and logic operations, and they can access functions and variables exported from the embedding program. Unlike most other languages of its kind, KL-EL is statically and strongly typed, which helps ensure that expressions are valid before they are executed. The embedding API is designed to be easy to use, and the library itself is designed to be very small. WWW: http://sourceforge.net/projects/libklel/ PR: ports/177737 Submitted by: klm Added: head/devel/libklel/ head/devel/libklel/Makefile (contents, props changed) head/devel/libklel/distinfo (contents, props changed) head/devel/libklel/pkg-descr (contents, props changed) head/devel/libklel/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Apr 26 16:43:59 2013 (r316625) +++ head/devel/Makefile Fri Apr 26 16:46:35 2013 (r316626) @@ -1013,6 +1013,7 @@ SUBDIR += libjson++ SUBDIR += libk8055 SUBDIR += libkgapi + SUBDIR += libklel SUBDIR += libkolab SUBDIR += liblangtag SUBDIR += liblas Added: head/devel/libklel/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libklel/Makefile Fri Apr 26 16:46:35 2013 (r316626) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= libklel +PORTVERSION= 1.1.0 +CATEGORIES= devel +MASTER_SITES= SF + +MAINTAINER= klm@uidzero.org +COMMENT= KoreLogic Expression Language library + +LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre + +GNU_CONFIGURE= yes +USE_PERL5_BUILD=yes +USE_LDCONFIG= yes + +CONFIGURE_ARGS+=--with-pcre=${LOCALBASE} + +MAN1= klel-expr.1 +MAN3= klelapi.3 klellang.3 klelstdlib.3 kleltut.3 + +.include Added: head/devel/libklel/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libklel/distinfo Fri Apr 26 16:46:35 2013 (r316626) @@ -0,0 +1,2 @@ +SHA256 (libklel-1.1.0.tar.gz) = ad2b02ec34fd2e79ba412935a0eb913e498fa0ddf56f85b9f3ee319e9583697c +SIZE (libklel-1.1.0.tar.gz) = 413259 Added: head/devel/libklel/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libklel/pkg-descr Fri Apr 26 16:46:35 2013 (r316626) @@ -0,0 +1,15 @@ +The KoreLogic Expression Language Library is a C library that +provides a simple expression language that can be embedded in other +programs. This library does not implement a full programming language, +but rather a simpler expression language called KL-EL that is +designed to provide arithmetic and logic operations useful in +situations where embedding a full programming language would be +overkill. KL-EL expressions have access to a full set of arithmetic +and logic operations, and they can access functions and variables +exported from the embedding program. Unlike most other languages +of its kind, KL-EL is statically and strongly typed, which helps +ensure that expressions are valid before they are executed. The +embedding API is designed to be easy to use, and the library itself +is designed to be very small. + +WWW: http://sourceforge.net/projects/libklel/ Added: head/devel/libklel/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libklel/pkg-plist Fri Apr 26 16:46:35 2013 (r316626) @@ -0,0 +1,7 @@ +bin/klel-expr +include/klel-pstdint.h +include/klel.h +lib/libklel.a +lib/libklel.la +lib/libklel.so +lib/libklel.so.2