5c47710a29
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
22 lines
546 B
Makefile
22 lines
546 B
Makefile
# $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>
|