From owner-svn-ports-head@FreeBSD.ORG Sat Aug 23 23:53:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 50D23A67; Sat, 23 Aug 2014 23:53:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 3CDCC3B89; Sat, 23 Aug 2014 23:53:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7NNreAp029701; Sat, 23 Aug 2014 23:53:40 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7NNrdrS029696; Sat, 23 Aug 2014 23:53:39 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201408232353.s7NNrdrS029696@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 23 Aug 2014 23:53:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r365864 - in head/sysutils: . btsixad 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.18-1 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: Sat, 23 Aug 2014 23:53:40 -0000 Author: marino Date: Sat Aug 23 23:53:38 2014 New Revision: 365864 URL: http://svnweb.freebsd.org/changeset/ports/365864 QAT: https://qat.redports.org/buildarchive/r365864/ Log: Add new port sysutils/btsixad PR: 192412 Submitted by: Andrey Zholos The btsixad daemon allows the PlayStation 3 Sixaxis gamepad to be used wirelessly over Bluetooth. When a gamepad is connected, the daemon cre- ates a virtual USB HID device named btsixa*. This can be symlinked to uhid* and used like an ordinary USB joystick or gamepad by SDL and other programs. Added: head/sysutils/btsixad/ head/sysutils/btsixad/Makefile (contents, props changed) head/sysutils/btsixad/distinfo (contents, props changed) head/sysutils/btsixad/pkg-descr (contents, props changed) head/sysutils/btsixad/pkg-message (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sat Aug 23 23:35:27 2014 (r365863) +++ head/sysutils/Makefile Sat Aug 23 23:53:38 2014 (r365864) @@ -91,6 +91,7 @@ SUBDIR += bsdmoted SUBDIR += bsdploy SUBDIR += bsdstats + SUBDIR += btsixad SUBDIR += bubblemon-dockapp SUBDIR += bulk_extractor SUBDIR += busybox Added: head/sysutils/btsixad/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/btsixad/Makefile Sat Aug 23 23:53:38 2014 (r365864) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= btsixad +PORTVERSION= 0.1 +CATEGORIES= sysutils +MASTER_SITES= http://althenia.net/files/ + +MAINTAINER= aaz@q-fu.com +COMMENT= Driver for Sixaxis gamepad connected over Bluetooth + +LICENSE= BSD2CLAUSE + +LIB_DEPENDS= libcuse4bsd.so:${PORTSDIR}/multimedia/cuse4bsd-kmod + +PLIST_FILES= sbin/btsixad \ + etc/rc.d/btsixad \ + etc/devd/btsixad.conf \ + man/man8/btsixad.8.gz + +.include Added: head/sysutils/btsixad/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/btsixad/distinfo Sat Aug 23 23:53:38 2014 (r365864) @@ -0,0 +1,2 @@ +SHA256 (btsixad-0.1.tar.gz) = 1aa42069723ad0be4d9efa46ded382c9d1a9416320cdcb276c0928a94cd93667 +SIZE (btsixad-0.1.tar.gz) = 15490 Added: head/sysutils/btsixad/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/btsixad/pkg-descr Sat Aug 23 23:53:38 2014 (r365864) @@ -0,0 +1,7 @@ +The btsixad daemon allows the PlayStation 3 Sixaxis gamepad to be used +wirelessly over Bluetooth. When a gamepad is connected, the daemon cre- +ates a virtual USB HID device named btsixa*. This can be symlinked to +uhid* and used like an ordinary USB joystick or gamepad by SDL and other +programs. + +WWW: http://althenia.net/btsixad Added: head/sysutils/btsixad/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/btsixad/pkg-message Sat Aug 23 23:53:38 2014 (r365864) @@ -0,0 +1,5 @@ +1) A devd(8) configuration file has been installed. Please restart devd: + + # service devd restart + +2) Add btsixad_enable=YES to /etc/rc.conf. See btsixad(8) for other options.