svn commit: r373527 - in head/textproc: . libucl
Kubilay Kocak
koobs at FreeBSD.org
Fri Nov 28 02:35:05 UTC 2014
Author: koobs
Date: Fri Nov 28 02:35:02 2014
New Revision: 373527
URL: https://svnweb.freebsd.org/changeset/ports/373527
QAT: https://qat.redports.org/buildarchive/r373527/
Log:
textproc/libucl: Universal configuration library parser [NEW]
Libucl is a parser and C API to parse and generate ucl objects. Libucl
consists of several groups of functions:
* Parser functions
* Emitting functions
* Conversion functions
* Generation functions
* Iteration functions
* Validation functions
* Utility functions
WWW: https://github.com/vstakhov/libucl
Requested by: lattera
Added:
head/textproc/libucl/
head/textproc/libucl/Makefile (contents, props changed)
head/textproc/libucl/distinfo (contents, props changed)
head/textproc/libucl/pkg-descr (contents, props changed)
head/textproc/libucl/pkg-plist (contents, props changed)
Modified:
head/textproc/Makefile
Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile Fri Nov 28 02:12:42 2014 (r373526)
+++ head/textproc/Makefile Fri Nov 28 02:35:02 2014 (r373527)
@@ -379,6 +379,7 @@
SUBDIR += libtextcat
SUBDIR += libtranslate
SUBDIR += libtre
+ SUBDIR += libucl
SUBDIR += libunibreak
SUBDIR += libuninameslist
SUBDIR += libvisio
Added: head/textproc/libucl/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/libucl/Makefile Fri Nov 28 02:35:02 2014 (r373527)
@@ -0,0 +1,29 @@
+# Created by: Kubilay Kocak <koobs at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= libucl
+PORTVERSION= 0.5.2
+CATEGORIES= textproc devel
+
+MAINTAINER= koobs at FreeBSD.org
+COMMENT= Universal configuration library parser
+
+LICENSE= BSD2CLAUSE
+LICENSE_FILE= ${WRKSRC}/COPYING
+
+USES= autoreconf gmake libtool pathfix pkgconfig
+USE_GITHUB= yes
+USE_LDCONFIG= yes
+
+GNU_CONFIGURE= yes
+
+GH_ACCOUNT= vstakhov
+GH_PROJECT= ${PORTNAME}
+GH_COMMIT= b400246
+
+PATHFIX_MAKEFILEIN= Makefile.am
+
+INSTALL_TARGET= install-strip
+CONFLICTS_INSTALL= ucl
+
+.include <bsd.port.mk>
Added: head/textproc/libucl/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/libucl/distinfo Fri Nov 28 02:35:02 2014 (r373527)
@@ -0,0 +1,2 @@
+SHA256 (libucl-0.5.2.tar.gz) = 8c09b6b341ba2ad1a8a54a4c876a997abeecb99a0462f779d389258ce1334083
+SIZE (libucl-0.5.2.tar.gz) = 1969526
Added: head/textproc/libucl/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/libucl/pkg-descr Fri Nov 28 02:35:02 2014 (r373527)
@@ -0,0 +1,12 @@
+Libucl is a parser and C API to parse and generate ucl objects. Libucl
+consists of several groups of functions:
+
+ * Parser functions
+ * Emitting functions
+ * Conversion functions
+ * Generation functions
+ * Iteration functions
+ * Validation functions
+ * Utility functions
+
+WWW: https://github.com/vstakhov/libucl
Added: head/textproc/libucl/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/libucl/pkg-plist Fri Nov 28 02:35:02 2014 (r373527)
@@ -0,0 +1,7 @@
+include/ucl.h
+lib/libucl.a
+lib/libucl.so
+lib/libucl.so.0
+lib/libucl.so.0.2.0
+libdata/pkgconfig/libucl.pc
+man/man3/libucl.3.gz
More information about the svn-ports-all
mailing list