mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
3c6fba3a38
emulators/mesen is left out for now, as it breaks on 11.3 Submitted by: rene Reviewed by: jbeich, zeising X-Differential Revision: https://reviews.freebsd.org/D24211
35 lines
720 B
Makefile
35 lines
720 B
Makefile
# Created by: jrhett@netconsonance.com
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= iichid
|
|
DISTVERSION= 0.0.1
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= imp@FreeBSD.org
|
|
COMMENT= Generic FreeBSD HID layer for I2C and USB devices
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
#LICENSE_FILE= Not yet packaged
|
|
|
|
IGNORE_FreeBSD_11= Requires FreeBSD 12.1 or later
|
|
ONLY_FOR_ARCHS= aarch64 amd64 i386
|
|
ONLY_FOR_ARCHS_REASON= Requires architecture supporting ACPI
|
|
|
|
USES= kmod uidfix
|
|
|
|
USE_GITHUB= yes
|
|
|
|
GH_ACCOUNT= wulf7
|
|
|
|
# Strip -Werror from sys/conf/kmod.mk
|
|
MAKE_ENV= WERROR=""
|
|
|
|
PLIST_FILES= ${KMODDIR}/iichid.ko
|
|
|
|
# USB backend is not yet complete and
|
|
# interferes with existing USB drivers
|
|
post-patch:
|
|
${REINPLACE_CMD} -e '/usbhid.c/s/^/#/' ${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.mk>
|