Bug 177737 - New port: devel/libklel - The KoreLogic Expression Language Library
Summary: New port: devel/libklel - The KoreLogic Expression Language Library
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Pawel Pekala
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-04-09 20:40 UTC by klm
Modified: 2013-04-26 17:50 UTC (History)
0 users

See Also:


Attachments
file.shar (2.48 KB, text/plain)
2013-04-09 20:40 UTC, klm
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description klm 2013-04-09 20:40:00 UTC
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.

Fix: Patch attached with submission follows:
Comment 1 Pawel Pekala freebsd_committer freebsd_triage 2013-04-20 16:36:51 UTC
Responsible Changed
From-To: freebsd-ports-bugs->pawel

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-04-26 17:46:49 UTC
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
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Pawel Pekala freebsd_committer freebsd_triage 2013-04-26 17:46:52 UTC
State Changed
From-To: open->closed

New port added, with minor changes. Thanks!