Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Sep 2015 10:28:56 +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: r398211 - in head/databases: . libnvpair
Message-ID:  <201509301028.t8UASuFQ032020@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Wed Sep 30 10:28:55 2015
New Revision: 398211
URL: https://svnweb.freebsd.org/changeset/ports/398211

Log:
  Add new port databases/libnvpair
  
  libnvpair is a name-value pair library originating from Solaris
  
  The nvpair library was released in OpenSolaris and has been extended
  by the Illumos project.  It exports a set of functions used for managing
  name-value pairs.  This is a base library for Solaris and its descendents.
  However, the kernel-specific code has been removed thus libnvpair is
  strictly meant for the userland.  The XDR functionality has been masked
  for now due to RPC differences between *BSD and Illumos.

Added:
  head/databases/libnvpair/
  head/databases/libnvpair/Makefile   (contents, props changed)
  head/databases/libnvpair/distinfo   (contents, props changed)
  head/databases/libnvpair/pkg-descr   (contents, props changed)
  head/databases/libnvpair/pkg-plist   (contents, props changed)
Modified:
  head/databases/Makefile

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Wed Sep 30 10:20:48 2015	(r398210)
+++ head/databases/Makefile	Wed Sep 30 10:28:55 2015	(r398211)
@@ -159,6 +159,7 @@
     SUBDIR += libmemcache
     SUBDIR += libmemcached
     SUBDIR += libmongo-client
+    SUBDIR += libnvpair
     SUBDIR += libodbc++
     SUBDIR += libpbl
     SUBDIR += libpqtypes

Added: head/databases/libnvpair/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/libnvpair/Makefile	Wed Sep 30 10:28:55 2015	(r398211)
@@ -0,0 +1,22 @@
+# Created by: John Marino <marino@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	libnvpair
+PORTVERSION=	1.0.2
+CATEGORIES=	databases devel
+
+MAINTAINER=	marino@FreeBSD.org
+COMMENT=	Illumos name-value pair library
+
+LICENSE=	CDDL
+
+GH_ACCOUNT=	jrmarino
+USE_GITHUB=	yes
+
+MAKE_ARGS=	LIBDIR=${PREFIX}/lib
+
+post-install:
+	(cd ${WRKSRC} && ${INSTALL_DATA} libnvpair.h nvpair.h \
+		nvpair_type_compat.h ${STAGEDIR}${PREFIX}/include/)
+
+.include <bsd.port.mk>

Added: head/databases/libnvpair/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/libnvpair/distinfo	Wed Sep 30 10:28:55 2015	(r398211)
@@ -0,0 +1,2 @@
+SHA256 (jrmarino-libnvpair-1.0.2_GH0.tar.gz) = 1dd0390b9bfba71cd6902b119df98ecfaafeb780e244dd9d6bea9ded6946a993
+SIZE (jrmarino-libnvpair-1.0.2_GH0.tar.gz) = 37960

Added: head/databases/libnvpair/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/libnvpair/pkg-descr	Wed Sep 30 10:28:55 2015	(r398211)
@@ -0,0 +1,10 @@
+libnvpair is a name-value pair library originating from Solaris
+
+The nvpair library was released in OpenSolaris and has been extended
+by the Illumos project.  It exports a set of functions used for managing
+name-value pairs.  This is a base library for Solaris and its descendents.
+However, the kernel-specific code has been removed thus libnvpair is
+strictly meant for the userland.  The XDR functionality has been masked
+for now due to RPC differences between *BSD and Illumos.
+
+WWW: http://illumos.org/man/3lib/libnvpair

Added: head/databases/libnvpair/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/libnvpair/pkg-plist	Wed Sep 30 10:28:55 2015	(r398211)
@@ -0,0 +1,6 @@
+include/libnvpair.h
+include/nvpair.h
+include/nvpair_type_compat.h
+lib/libnvpair.a
+lib/libnvpair.so
+lib/libnvpair.so.1



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