diff options
author | rakuco <rakuco@FreeBSD.org> | 2016-02-29 06:12:36 +0800 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2016-02-29 06:12:36 +0800 |
commit | 263fba45aa0d1c28abbf635a8f63d18096c76438 (patch) | |
tree | af25c9761ef2a30b5a4f0a70f71afd66cb25306b /sysutils | |
parent | 4f86863f405fac5f42eeafbd622d97db32ab3aa7 (diff) | |
download | freebsd-ports-gnome-263fba45aa0d1c28abbf635a8f63d18096c76438.tar.gz freebsd-ports-gnome-263fba45aa0d1c28abbf635a8f63d18096c76438.tar.zst freebsd-ports-gnome-263fba45aa0d1c28abbf635a8f63d18096c76438.zip |
New port: sysutils/dsbwrtsysctl.
DSBWrtSysctl is a FreeBSD command-line tool to add variable=value pairs to
/etc/sysctl.conf, or to change the values of existing variables.
WWW: http://freeshell.de/~mk/projects/dsbwrtsysctl.html
PR: 198690
Submitted by: Marcel <mk@nic-nac-project.org>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/dsbwrtsysctl/Makefile | 20 | ||||
-rw-r--r-- | sysutils/dsbwrtsysctl/distinfo | 2 | ||||
-rw-r--r-- | sysutils/dsbwrtsysctl/pkg-descr | 4 |
4 files changed, 27 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index ca674f348728..9568caa15159 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -221,6 +221,7 @@ SUBDIR += dolly SUBDIR += downtime SUBDIR += downtimed + SUBDIR += dsbwrtsysctl SUBDIR += dt SUBDIR += dtpstree SUBDIR += du2ps diff --git a/sysutils/dsbwrtsysctl/Makefile b/sysutils/dsbwrtsysctl/Makefile new file mode 100644 index 000000000000..fb851a52d5a0 --- /dev/null +++ b/sysutils/dsbwrtsysctl/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= dsbwrtsysctl +PORTVERSION= 0.1.3 +CATEGORIES= sysutils +MASTER_SITES= http://freeshell.de/~mk/download/ + +MAINTAINER= mk@nic-nac-project.org +COMMENT= Changes variable=value pairs in sysctl.conf, or adds them + +LICENSE= BSD2CLAUSE + +USES= tar:tgz + +PLIST_FILES= bin/dsbwrtsysctl + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/dsbwrtsysctl ${STAGEDIR}${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/sysutils/dsbwrtsysctl/distinfo b/sysutils/dsbwrtsysctl/distinfo new file mode 100644 index 000000000000..7cc782e5e6ee --- /dev/null +++ b/sysutils/dsbwrtsysctl/distinfo @@ -0,0 +1,2 @@ +SHA256 (dsbwrtsysctl-0.1.3.tgz) = dd8801249ba942d3daaebac539ecff94650d0b698e2fcb105d75522e0b5754d7 +SIZE (dsbwrtsysctl-0.1.3.tgz) = 2608 diff --git a/sysutils/dsbwrtsysctl/pkg-descr b/sysutils/dsbwrtsysctl/pkg-descr new file mode 100644 index 000000000000..545887d963a0 --- /dev/null +++ b/sysutils/dsbwrtsysctl/pkg-descr @@ -0,0 +1,4 @@ +DSBWrtSysctl is a FreeBSD command-line tool to add variable=value pairs to +/etc/sysctl.conf, or to change the values of existing variables. + +WWW: http://freeshell.de/~mk/projects/dsbwrtsysctl.html |