Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 9 Jun 2017 07:04:06 +0000 (UTC)
From:      Marcelo Araujo <araujo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r442972 - in head/sysutils: . ndmpd
Message-ID:  <201706090704.v59746UT031915@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: araujo
Date: Fri Jun  9 07:04:06 2017
New Revision: 442972
URL: https://svnweb.freebsd.org/changeset/ports/442972

Log:
  The ndmpd daemon handles client Network Data Management Protocol (NDMP)
  requests.
  
  NDMP is an open, enterprise-wide, network-based data management protocol
  used for backup and recovery. The ndmpd daemon enables users to manage
  data backup and recovery using Data Management Application (DMA) clients.
  
  The NDMP protocol is used to coordinate data movement and control
  between a DMA and an NDMP server or between two NDMP servers.
  
  WWW: https://bitbucket.org/araujobsd/ndmp-freebsd

Added:
  head/sysutils/ndmpd/
  head/sysutils/ndmpd/Makefile   (contents, props changed)
  head/sysutils/ndmpd/distinfo   (contents, props changed)
  head/sysutils/ndmpd/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Fri Jun  9 05:05:52 2017	(r442971)
+++ head/sysutils/Makefile	Fri Jun  9 07:04:06 2017	(r442972)
@@ -667,6 +667,7 @@
     SUBDIR += nfcutils
     SUBDIR += nfsping
     SUBDIR += nitrogen
+    SUBDIR += ndmpd
     SUBDIR += no-login
     SUBDIR += node_exporter
     SUBDIR += nomad

Added: head/sysutils/ndmpd/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/ndmpd/Makefile	Fri Jun  9 07:04:06 2017	(r442972)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	ndmpd
+PORTVERSION=	1.0
+CATEGORIES=	sysutils
+MASTER_SITES=	https://bitbucket.org/araujobsd/ndmp-freebsd/get/
+
+MAINTAINER=	lifanov@FreeBSD.org
+COMMENT=	Network Data Management Protocol daemon
+
+LICENSE=	BSD3CLAUSE
+
+WRKSRC=		${WRKDIR}/araujobsd-ndmp-freebsd-daa00f9dc732
+
+ONLY_FOR_ARCHS=	i386 amd64
+PLIST_FILES=	sbin/ndmpd etc/ndmpd.conf.example
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/ndmpd ${STAGEDIR}${PREFIX}/sbin
+	${INSTALL_DATA} ${WRKSRC}/ndmpd.conf ${STAGEDIR}${PREFIX}/etc/ndmpd.conf.example
+
+.include <bsd.port.mk>

Added: head/sysutils/ndmpd/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/ndmpd/distinfo	Fri Jun  9 07:04:06 2017	(r442972)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1496990060
+SHA256 (ndmpd-1.0.tar.gz) = 17cfad7791e4de0b5eaf3896eccab71a47a95b66ec85e9166700536e3e406ede
+SIZE (ndmpd-1.0.tar.gz) = 1402623

Added: head/sysutils/ndmpd/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/ndmpd/pkg-descr	Fri Jun  9 07:04:06 2017	(r442972)
@@ -0,0 +1,11 @@
+The ndmpd daemon handles client Network Data Management Protocol (NDMP)
+requests.
+
+NDMP is an open, enterprise-wide, network-based data management protocol
+used for backup and recovery. The ndmpd daemon enables users to manage
+data backup and recovery using Data Management Application (DMA) clients.
+
+The NDMP protocol is used to coordinate data movement and control
+between a DMA and an NDMP server or between two NDMP servers.
+
+WWW: https://bitbucket.org/araujobsd/ndmp-freebsd



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