Date: Wed, 30 Sep 2015 21:56:09 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398236 - in head/devel: . libuutil Message-ID: <201509302156.t8ULu9HF015436@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Wed Sep 30 21:56:08 2015 New Revision: 398236 URL: https://svnweb.freebsd.org/changeset/ports/398236 Log: Add new port devel/libuutil libuutil is a library of userland utilities originating from solaris This library provides both a doubly linked-list implementation and a AVL tree implementation. This has been a private library best known as a core component for ZFS and SMF. The performance is considered excellent. As this has always been a private library, it is not well documented and there is no man page for it. The best documentation is located in the source code and reading OpenSolaris/Illumos ZFS and SMF sources will help as well. Added: head/devel/libuutil/ head/devel/libuutil/Makefile (contents, props changed) head/devel/libuutil/distinfo (contents, props changed) head/devel/libuutil/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Sep 30 19:50:34 2015 (r398235) +++ head/devel/Makefile Wed Sep 30 21:56:08 2015 (r398236) @@ -1318,6 +1318,7 @@ SUBDIR += libuninum SUBDIR += libunistring SUBDIR += libunwind + SUBDIR += libuutil SUBDIR += libuv SUBDIR += libvanessa_adt SUBDIR += libvanessa_logger Added: head/devel/libuutil/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libuutil/Makefile Wed Sep 30 21:56:08 2015 (r398236) @@ -0,0 +1,25 @@ +# Created by: John Marino <marino@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= libuutil +PORTVERSION= 1.0.1 +CATEGORIES= devel + +MAINTAINER= marino@FreeBSD.org +COMMENT= Illumos userland utilities library + +LICENSE= CDDL + +GH_ACCOUNT= jrmarino +USE_GITHUB= yes + +MAKE_ARGS= LIBDIR=${PREFIX}/lib + +PLIST_FILES= include/libuutil.h lib/libuutil.a lib/libuutil.so \ + lib/libuutil.so.1 + +post-install: + (cd ${WRKSRC} && ${INSTALL_DATA} libuutil.h \ + ${STAGEDIR}${PREFIX}/include/) + +.include <bsd.port.mk> Added: head/devel/libuutil/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libuutil/distinfo Wed Sep 30 21:56:08 2015 (r398236) @@ -0,0 +1,2 @@ +SHA256 (jrmarino-libuutil-1.0.1_GH0.tar.gz) = 396daa5f4be1266c1262b405021f0aebf9ecbbd8bfa1252a7845591509a47a37 +SIZE (jrmarino-libuutil-1.0.1_GH0.tar.gz) = 20643 Added: head/devel/libuutil/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libuutil/pkg-descr Wed Sep 30 21:56:08 2015 (r398236) @@ -0,0 +1,12 @@ +libuutil is a library of userland utilities originating from solaris + +This library provides both a doubly linked-list implementation and a +AVL tree implementation. This has been a private library best known +as a core component for ZFS and SMF. + +The performance is considered excellent. As this has always been a +private library, it is not well documented and there is no man page +for it. The best documentation is located in the source code and +reading OpenSolaris/Illumos ZFS and SMF sources will help as well. + +WWW: https://github.com/jmarino/libuutil
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509302156.t8ULu9HF015436>