diff options
author | dbaio <dbaio@FreeBSD.org> | 2017-06-25 00:16:33 +0800 |
---|---|---|
committer | dbaio <dbaio@FreeBSD.org> | 2017-06-25 00:16:33 +0800 |
commit | 3dc10d01cd22e3fae7b4f9a64a7cc8e8a76e85e4 (patch) | |
tree | 3edbfcb680cb2e23c7b16c054e785262efb1b6ab | |
parent | 096358f366f7c58166d982106f84cd5f033dc0bf (diff) | |
download | freebsd-ports-gnome-3dc10d01cd22e3fae7b4f9a64a7cc8e8a76e85e4.tar.gz freebsd-ports-gnome-3dc10d01cd22e3fae7b4f9a64a7cc8e8a76e85e4.tar.zst freebsd-ports-gnome-3dc10d01cd22e3fae7b4f9a64a7cc8e8a76e85e4.zip |
New port: sysutils/dsbmc-cli
dsbmc-cli is a command-line client for DSBMD that provides a simple interface
to query information about storage devices, and to send requests to mount,
unmount and eject these. Furthermore, it can be used as automounter and
autounmounter.
WWW: http://freeshell.de/~mk/projects/dsbmc-cli.html
PR: 220197
Submitted by: Marcel Kaiser <mk@nic-nac-project.org>
Approved by: garga (mentor)
Differential Revision: https://reviews.freebsd.org/D11297
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/dsbmc-cli/Makefile | 19 | ||||
-rw-r--r-- | sysutils/dsbmc-cli/distinfo | 3 | ||||
-rw-r--r-- | sysutils/dsbmc-cli/pkg-descr | 6 |
4 files changed, 29 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index acd693713045..5b8278b70517 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -247,6 +247,7 @@ SUBDIR += dsbbatmon SUBDIR += dsbdriverd SUBDIR += dsbmc + SUBDIR += dsbmc-cli SUBDIR += dsbmd SUBDIR += dsbwrtsysctl SUBDIR += dt diff --git a/sysutils/dsbmc-cli/Makefile b/sysutils/dsbmc-cli/Makefile new file mode 100644 index 000000000000..bc9b4f62d193 --- /dev/null +++ b/sysutils/dsbmc-cli/Makefile @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= dsbmc-cli +PORTVERSION= 0.1.1 +CATEGORIES= sysutils +MASTER_SITES= http://freeshell.de/~mk/download/ + +MAINTAINER= mk@nic-nac-project.org +COMMENT= Command-line client for DSBMD + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= dsbmd>=0.3:sysutils/dsbmd + +USES= tar:tgz +PLIST_FILES= bin/dsbmc-cli man/man1/dsbmc-cli.1.gz + +.include <bsd.port.mk> diff --git a/sysutils/dsbmc-cli/distinfo b/sysutils/dsbmc-cli/distinfo new file mode 100644 index 000000000000..c4a939afc6c6 --- /dev/null +++ b/sysutils/dsbmc-cli/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1498182061 +SHA256 (dsbmc-cli-0.1.1.tgz) = 00a8203276b40478b1403798d666f60e724050236666d1f131739acfcccab69a +SIZE (dsbmc-cli-0.1.1.tgz) = 18530 diff --git a/sysutils/dsbmc-cli/pkg-descr b/sysutils/dsbmc-cli/pkg-descr new file mode 100644 index 000000000000..48a2147b1018 --- /dev/null +++ b/sysutils/dsbmc-cli/pkg-descr @@ -0,0 +1,6 @@ +dsbmc-cli is a command-line client for DSBMD that provides a simple interface +to query information about storage devices, and to send requests to mount, +unmount and eject these. Furthermore, it can be used as automounter and +autounmounter. + +WWW: http://freeshell.de/~mk/projects/dsbmc-cli.html |