Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 26 Apr 2013 16:46:36 +0000 (UTC)
From:      Pawel Pekala <pawel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r316626 - in head/devel: . libklel
Message-ID:  <201304261646.r3QGkaxI059316@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <klm@uidzero.org>

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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201304261646.r3QGkaxI059316>