From owner-svn-ports-head@freebsd.org Wed Sep 30 21:56:10 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A785CA0C7A0; Wed, 30 Sep 2015 21:56:10 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9838A1EB6; Wed, 30 Sep 2015 21:56:10 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8ULuA7Q015440; Wed, 30 Sep 2015 21:56:10 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8ULu9HF015436; Wed, 30 Sep 2015 21:56:09 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201509302156.t8ULu9HF015436@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Wed, 30 Sep 2015 21:56:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398236 - in head/devel: . libuutil X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Sep 2015 21:56:10 -0000 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 +# $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 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