From owner-svn-ports-head@freebsd.org Sun Feb 28 22:12:38 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 81958AB6E33; Sun, 28 Feb 2016 22:12:38 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3B3071AEC; Sun, 28 Feb 2016 22:12:38 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1SMCbPF088466; Sun, 28 Feb 2016 22:12:37 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1SMCaUh088462; Sun, 28 Feb 2016 22:12:36 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201602282212.u1SMCaUh088462@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 28 Feb 2016 22:12:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409774 - in head/sysutils: . dsbwrtsysctl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Feb 2016 22:12:38 -0000 Author: rakuco Date: Sun Feb 28 22:12:36 2016 New Revision: 409774 URL: https://svnweb.freebsd.org/changeset/ports/409774 Log: 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 Added: head/sysutils/dsbwrtsysctl/ head/sysutils/dsbwrtsysctl/Makefile (contents, props changed) head/sysutils/dsbwrtsysctl/distinfo (contents, props changed) head/sysutils/dsbwrtsysctl/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sun Feb 28 22:10:09 2016 (r409773) +++ head/sysutils/Makefile Sun Feb 28 22:12:36 2016 (r409774) @@ -221,6 +221,7 @@ SUBDIR += dolly SUBDIR += downtime SUBDIR += downtimed + SUBDIR += dsbwrtsysctl SUBDIR += dt SUBDIR += dtpstree SUBDIR += du2ps Added: head/sysutils/dsbwrtsysctl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/dsbwrtsysctl/Makefile Sun Feb 28 22:12:36 2016 (r409774) @@ -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 Added: head/sysutils/dsbwrtsysctl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/dsbwrtsysctl/distinfo Sun Feb 28 22:12:36 2016 (r409774) @@ -0,0 +1,2 @@ +SHA256 (dsbwrtsysctl-0.1.3.tgz) = dd8801249ba942d3daaebac539ecff94650d0b698e2fcb105d75522e0b5754d7 +SIZE (dsbwrtsysctl-0.1.3.tgz) = 2608 Added: head/sysutils/dsbwrtsysctl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/dsbwrtsysctl/pkg-descr Sun Feb 28 22:12:36 2016 (r409774) @@ -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