View | Details | Raw Unified | Return to bug 247787 | Differences between
and this patch

Collapse All | Expand All

(-)sysutils/iichid-devel/Makefile (+43 lines)
Line 0 Link Here
1
# Created by: jrhett@netconsonance.com
2
# $FreeBSD$
3
4
PORTNAME=	iichid
5
DISTVERSION=	0.0.2.g20200603
6
CATEGORIES=	sysutils
7
PKGNAMESUFFIX=	-devel
8
9
MAINTAINER=	rozhuk.im@gmail.com
10
COMMENT=	Generic FreeBSD HID layer for I2C and USB devices
11
12
LICENSE=	BSD2CLAUSE
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
15
IGNORE_FreeBSD_11=	Requires FreeBSD 12.1 or later
16
ONLY_FOR_ARCHS=		aarch64 amd64 i386
17
ONLY_FOR_ARCHS_REASON=	Requires architecture supporting ACPI
18
19
USES=		kmod uidfix
20
USE_GITHUB=	yes
21
GH_ACCOUNT=	wulf7
22
GH_TAGNAME=	6efffe76b14c277a19763286b210a40be0c1b950
23
24
OPTIONS_DEFINE=	IICHID USBHID
25
OPTIONS_DEFAULT=IICHID USBHID
26
OPTIONS_SUB=	yes
27
28
IICHID_DESC=	Enable support for I2C HID devices
29
USBHID_DESC=	Enable support for USB HID devices
30
31
.include <bsd.port.pre.mk>
32
33
.if !${PORT_OPTIONS:MIICHID}
34
MAKE_ENV+=	DISABLE_IICHID=true
35
.endif
36
37
.if !${PORT_OPTIONS:MUSBHID}
38
MAKE_ENV+=	DISABLE_USBHID=true
39
.endif
40
41
PLIST_FILES=	${KMODDIR}/iichid.ko
42
43
.include <bsd.port.mk>
(-)sysutils/iichid-devel/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1593972598
2
SHA256 (wulf7-iichid-0.0.2.g20200603-6efffe76b14c277a19763286b210a40be0c1b950_GH0.tar.gz) = 25fec644165ccf58ee78e35738f1808635f3a116ecfa0f3a370202c1c93c671d
3
SIZE (wulf7-iichid-0.0.2.g20200603-6efffe76b14c277a19763286b210a40be0c1b950_GH0.tar.gz) = 88754
(-)sysutils/iichid-devel/pkg-descr (+7 lines)
Line 0 Link Here
1
FreeBSD driver for I2C HID touchscreens (and may be other devices)
2
3
A complete discussion about how to use this tool can be found at:
4
5
https://larastechlab.blogspot.com/2020/01/i2c-touchpads-on-freebsd-130-current.html
6
7
WWW: https://github.com/wulf7/iichid
(-)sysutils/iichid-devel/pkg-message (+5 lines)
Line 0 Link Here
1
iichid is currently in-development and EXPERIMENTAL. This port provides
2
an easy and quick method for users to test this code to encourage early
3
testing, feedback and bug reports.
4
5
Please report successes and issues to: https://github.com/wulf7/iichid

Return to bug 247787