svn commit: r422521 - in head/devel: . libvslvm

Antoine Brodin antoine at FreeBSD.org
Tue Sep 20 17:01:00 UTC 2016


Author: antoine
Date: Tue Sep 20 17:00:58 2016
New Revision: 422521
URL: https://svnweb.freebsd.org/changeset/ports/422521

Log:
  New port: devel/libvslvm
  
  libvslvm is a library to access the Linux Logical Volume Manager (LVM) volume
  system format.
  
  WWW: https://github.com/libyal/libvslvm

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Sep 20 16:53:00 2016	(r422520)
+++ head/devel/Makefile	Tue Sep 20 17:00:58 2016	(r422521)
@@ -1407,6 +1407,7 @@
     SUBDIR += libvmdk
     SUBDIR += libvolume_id
     SUBDIR += libvshadow
+    SUBDIR += libvslvm
     SUBDIR += libvterm
     SUBDIR += libwfut
     SUBDIR += libx86

Added: head/devel/libvslvm/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libvslvm/Makefile	Tue Sep 20 17:00:58 2016	(r422521)
@@ -0,0 +1,32 @@
+# Created by: Antoine Brodin <antoine at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	libvslvm
+# If/When moving from experimental to alpha, switch to DISTVERSIONPREFIX to prevent PORTEPOCH
+DISTVERSION=	experimental-20160110
+CATEGORIES=	devel
+MASTER_SITES=	https://github.com/libyal/libvslvm/releases/download/${PORTVERSION:E}/ \
+		LOCAL/antoine
+
+MAINTAINER=	antoine at FreeBSD.org
+COMMENT=	Library and tools to access the LVM volume system format
+
+LICENSE=	LGPL3+
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+GNU_CONFIGURE=	yes
+CONFIGURE_ARGS=	--enable-python --with-libintl-prefix=${LOCALBASE}
+USES=		fuse gettext libtool pathfix pkgconfig python
+USE_LDCONFIG=	yes
+INSTALL_TARGET=	install-strip
+WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION:E}
+
+PORTDOCS=	AUTHORS ChangeLog
+
+OPTIONS_DEFINE=	DOCS
+
+post-install-DOCS-on:
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
+
+.include <bsd.port.mk>

Added: head/devel/libvslvm/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libvslvm/distinfo	Tue Sep 20 17:00:58 2016	(r422521)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1474383022
+SHA256 (libvslvm-experimental-20160110.tar.gz) = dad4d88b03601c3d89de3a2b277b13fd4ccae6065b42e8c9fcec8b70d60afba5
+SIZE (libvslvm-experimental-20160110.tar.gz) = 1476222

Added: head/devel/libvslvm/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libvslvm/pkg-descr	Tue Sep 20 17:00:58 2016	(r422521)
@@ -0,0 +1,4 @@
+libvslvm is a library to access the Linux Logical Volume Manager (LVM) volume
+system format.
+
+WWW: https://github.com/libyal/libvslvm

Added: head/devel/libvslvm/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libvslvm/pkg-plist	Tue Sep 20 17:00:58 2016	(r422521)
@@ -0,0 +1,18 @@
+bin/vslvminfo
+bin/vslvmmount
+include/libvslvm.h
+include/libvslvm/codepage.h
+include/libvslvm/definitions.h
+include/libvslvm/error.h
+include/libvslvm/extern.h
+include/libvslvm/features.h
+include/libvslvm/types.h
+lib/libvslvm.a
+lib/libvslvm.so
+lib/libvslvm.so.1
+lib/libvslvm.so.1.0.0
+%%PYTHON_SITELIBDIR%%/pyvslvm.a
+%%PYTHON_SITELIBDIR%%/pyvslvm.so
+libdata/pkgconfig/libvslvm.pc
+man/man1/vslvminfo.1.gz
+man/man3/libvslvm.3.gz


More information about the svn-ports-all mailing list