From owner-svn-ports-head@freebsd.org Mon Mar 14 22:02:54 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 28747AD0AC0; Mon, 14 Mar 2016 22:02:54 +0000 (UTC) (envelope-from feld@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 02C26A81; Mon, 14 Mar 2016 22:02:53 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2EM2rU6049174; Mon, 14 Mar 2016 22:02:53 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2EM2qQh049168; Mon, 14 Mar 2016 22:02:52 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201603142202.u2EM2qQh049168@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Mon, 14 Mar 2016 22:02:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411123 - in head/sysutils: . dsbdriverd dsbdriverd/files 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.21 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: Mon, 14 Mar 2016 22:02:54 -0000 Author: feld Date: Mon Mar 14 22:02:52 2016 New Revision: 411123 URL: https://svnweb.freebsd.org/changeset/ports/411123 Log: DSBDriverd is a daemon that automatically tries to find and load the suitable driver(s) for your PCI and USB hardware. WWW: http://freeshell.de/~mk/projects/dsbdriverd.html PR: 207851 Submitted by: Marcel Kaiser Added: head/sysutils/dsbdriverd/ head/sysutils/dsbdriverd/Makefile (contents, props changed) head/sysutils/dsbdriverd/distinfo (contents, props changed) head/sysutils/dsbdriverd/files/ head/sysutils/dsbdriverd/files/dsbdriverd.in (contents, props changed) head/sysutils/dsbdriverd/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Mon Mar 14 21:56:05 2016 (r411122) +++ head/sysutils/Makefile Mon Mar 14 22:02:52 2016 (r411123) @@ -222,6 +222,7 @@ SUBDIR += dolly SUBDIR += downtime SUBDIR += downtimed + SUBDIR += dsbdriverd SUBDIR += dsbwrtsysctl SUBDIR += dt SUBDIR += dtpstree Added: head/sysutils/dsbdriverd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/dsbdriverd/Makefile Mon Mar 14 22:02:52 2016 (r411123) @@ -0,0 +1,24 @@ +# Created by: Marcel Kaiser +# $FreeBSD$ + +PORTNAME= dsbdriverd +PORTVERSION= 0.1.4 +CATEGORIES= sysutils +MASTER_SITES= http://freeshell.de/~mk/download/ + +MAINTAINER= mk@nic-nac-project.org +COMMENT= Hardware detecting, device driver loading daemon + +LICENSE= BSD2CLAUSE + +USES= tar:tgz + +MAKE_ARGS+= DBDIR=${DATADIR} + +PORTDATA= drivers.db + +USE_RC_SUBR= dsbdriverd + +PLIST_FILES= libexec/dsbdriverd man/man8/dsbdriverd.8.gz + +.include Added: head/sysutils/dsbdriverd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/dsbdriverd/distinfo Mon Mar 14 22:02:52 2016 (r411123) @@ -0,0 +1,2 @@ +SHA256 (dsbdriverd-0.1.4.tgz) = f3e0cf4a2065915f7d27c42723ede686e6c5f8e628e86a893cdcc558d273a185 +SIZE (dsbdriverd-0.1.4.tgz) = 62464 Added: head/sysutils/dsbdriverd/files/dsbdriverd.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/dsbdriverd/files/dsbdriverd.in Mon Mar 14 22:02:52 2016 (r411123) @@ -0,0 +1,31 @@ +#!/bin/sh + +# $FreeBSD$ +# +# PROVIDE: dsbdriverd +# REQUIRE: devd +# BEFORE: NETWORKING +# KEYWORD: shutdown +# +# Add these lines to /etc/rc.conf.local or /etc/rc.conf +# to enable this service: +# +# dsbdriverd_enable (bool): Set to NO by default. +# Set it to YES to enable dsbdriverd. +# dsbdriverd_flags (str): Flags passed to dsbdriverd on startup. +# Default is "". +# + +. /etc/rc.subr + +name=dsbdriverd + +rcvar=dsbdriverd_enable +load_rc_config ${name} + +: ${dsbdriverd_enable:=NO} + +command=%%PREFIX%%/libexec/dsbdriverd +pidfile=/var/run/dsbdriverd.pid + +run_rc_command "$1" Added: head/sysutils/dsbdriverd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/dsbdriverd/pkg-descr Mon Mar 14 22:02:52 2016 (r411123) @@ -0,0 +1,4 @@ +DSBDriverd is a daemon that automatically tries to find and load the suitable +driver(s) for your PCI and USB hardware. + +WWW: http://freeshell.de/~mk/projects/dsbdriverd.html