From owner-freebsd-ports@freebsd.org Thu Dec 13 14:35:04 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 305731326AEC for ; Thu, 13 Dec 2018 14:35:04 +0000 (UTC) (envelope-from hps@selasky.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id B75B98A4B8 for ; Thu, 13 Dec 2018 14:35:03 +0000 (UTC) (envelope-from hps@selasky.org) Received: by mailman.ysv.freebsd.org (Postfix) id 77C511326AEB; Thu, 13 Dec 2018 14:35:03 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 64C551326AEA for ; Thu, 13 Dec 2018 14:35:03 +0000 (UTC) (envelope-from hps@selasky.org) Received: from mail.turbocat.net (turbocat.net [88.99.82.50]) (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 BDE058A4B6 for ; Thu, 13 Dec 2018 14:35:02 +0000 (UTC) (envelope-from hps@selasky.org) Received: from hps2016.home.selasky.org (unknown [178.17.145.230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id DE488260243 for ; Thu, 13 Dec 2018 15:34:59 +0100 (CET) To: ports@FreeBSD.org From: Hans Petter Selasky Subject: Request for commit approval (multimedia/webcamd) Message-ID: <63be9b29-755e-5db5-e37b-16e8f651bc37@selasky.org> Date: Thu, 13 Dec 2018 15:33:06 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:60.0) Gecko/20100101 Thunderbird/60.0.1 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------17CD2B380832D068AF8CDDBB" Content-Language: en-US X-Rspamd-Queue-Id: BDE058A4B6 X-Spamd-Bar: ----- Authentication-Results: mx1.freebsd.org; spf=pass (mx1.freebsd.org: domain of hps@selasky.org designates 88.99.82.50 as permitted sender) smtp.mailfrom=hps@selasky.org X-Spamd-Result: default: False [-5.52 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+a:mail.turbocat.net]; TO_MATCH_ENVRCPT_ALL(0.00)[]; HAS_ATTACHMENT(0.00)[]; MIME_GOOD(-0.10)[multipart/mixed,text/plain]; PREVIOUSLY_DELIVERED(0.00)[ports@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; TO_DN_NONE(0.00)[]; MX_GOOD(-0.01)[cached: mail.turbocat.net]; NEURAL_HAM_SHORT(-0.95)[-0.947,0]; DMARC_NA(0.00)[selasky.org]; IP_SCORE(-3.36)[ip: (-9.51), ipnet: 88.99.0.0/16(-4.76), asn: 24940(-2.53), country: DE(-0.01)]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; ASN(0.00)[asn:24940, ipnet:88.99.0.0/16, country:DE]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_TLS_ALL(0.00)[]; MIME_UNKNOWN(0.10)[text/x-patch] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Dec 2018 14:35:04 -0000 This is a multi-part message in MIME format. --------------17CD2B380832D068AF8CDDBB Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Add devd rule for a Logitech gamepad. Submitted by: Rozhuk Ivan Approved by: --HPS --------------17CD2B380832D068AF8CDDBB Content-Type: text/x-patch; name="webcamd.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="webcamd.diff" Index: Makefile =================================================================== --- Makefile (revision 487368) +++ Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= webcamd PORTVERSION= 4.20.0.1 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= http://www.selasky.org/hans_petter/distfiles/ \ http://home.selasky.org/distfiles/ Index: files/webcamd.conf.in =================================================================== --- files/webcamd.conf.in (revision 487365) +++ files/webcamd.conf.in (working copy) @@ -51,3 +51,20 @@ action "%%PREFIX%%/etc/rc.d/webcamd start $cdev $interface"; }; + +# Logitech gamepad +notify 100 { + match "system" "USB"; + match "subsystem" "INTERFACE"; + match "type" "ATTACH"; + + match "vendor" "0x046d"; + match "product" "0xc216"; + + match "intclass" "0x03"; + match "intsubclass" "0x00"; + match "intprotocol" "0x00"; + + action "%%PREFIX%%/etc/rc.d/webcamd start $cdev $interface"; +}; + --------------17CD2B380832D068AF8CDDBB--