From owner-svn-ports-head@freebsd.org Mon Feb 17 04:40:24 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 938FA24D147; Mon, 17 Feb 2020 04:40:24 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48LWWD381sz4fH8; Mon, 17 Feb 2020 04:40:24 +0000 (UTC) (envelope-from koobs@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2FD5213D9; Mon, 17 Feb 2020 04:40:24 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 01H4eOE0092313; Mon, 17 Feb 2020 04:40:24 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 01H4eNiQ092311; Mon, 17 Feb 2020 04:40:23 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <202002170440.01H4eNiQ092311@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Mon, 17 Feb 2020 04:40:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r526340 - in head/sysutils: . iichid X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: in head/sysutils: . iichid X-SVN-Commit-Revision: 526340 X-SVN-Commit-Repository: ports 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.29 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, 17 Feb 2020 04:40:24 -0000 Author: koobs Date: Mon Feb 17 04:40:23 2020 New Revision: 526340 URL: https://svnweb.freebsd.org/changeset/ports/526340 Log: [NEW] sysutils/iichid: Generic FreeBSD HID layer for I2C and USB devices FreeBSD driver for I2C HID touchscreens (and may be other devices) A complete discussion about how to use this tool can be found at: https://larastechlab.blogspot.com/2020/01/i2c-touchpads-on-freebsd-130-current.html Currently limited to FreeBSD 12.1+ and architectures supporting ACPI. WWW: https://github.com/wulf7/iichid Note: This is a recommit of ports r526092 replacing OSVER check with OSVERSION due to a bug in the freebsd-update make index setup/environment. Submitted by: cy Differential Revision: D23615 Added: head/sysutils/iichid/ - copied from r526093, head/sysutils/iichid/ Modified: head/sysutils/Makefile head/sysutils/iichid/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Mon Feb 17 03:26:42 2020 (r526339) +++ head/sysutils/Makefile Mon Feb 17 04:40:23 2020 (r526340) @@ -491,6 +491,7 @@ SUBDIR += i2c-tools SUBDIR += i7z SUBDIR += iat + SUBDIR += iichid SUBDIR += immortal SUBDIR += incron SUBDIR += inotify-tools Modified: head/sysutils/iichid/Makefile ============================================================================== --- head/sysutils/iichid/Makefile Fri Feb 14 06:58:34 2020 (r526093) +++ head/sysutils/iichid/Makefile Mon Feb 17 04:40:23 2020 (r526340) @@ -32,7 +32,7 @@ post-patch: .include -.if ${OSREL} < 12.1 +.if ${OSVERSION} < 1201000 IGNORE= requires FreeBSD versions 12.1+, this system is running ${OSREL} .endif