Date: Sun, 4 Aug 2019 13:10:25 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r508094 - in head/sysutils: . evhz Message-ID: <201908041310.x74DAPhB069375@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pi Date: Sun Aug 4 13:10:24 2019 New Revision: 508094 URL: https://svnweb.freebsd.org/changeset/ports/508094 Log: New port: sysutils/evhz: tool for measuring evdev event rate A tool for measuring evdev event rate (mouse polling rate, touchpad event rate, etc.) Reported average is for the last 64 samples, or as many as we have so far. WWW: https://gitlab.com/iankelling/evhz PR: 239466 Submitted by: Greg V <greg@unrelenting.technology> Added: head/sysutils/evhz/ head/sysutils/evhz/Makefile (contents, props changed) head/sysutils/evhz/distinfo (contents, props changed) head/sysutils/evhz/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sun Aug 4 12:55:12 2019 (r508093) +++ head/sysutils/Makefile Sun Aug 4 13:10:24 2019 (r508094) @@ -302,6 +302,7 @@ SUBDIR += etcmerge SUBDIR += etcupdate SUBDIR += eventlog + SUBDIR += evhz SUBDIR += evtviewer SUBDIR += exa SUBDIR += exfat-utils Added: head/sysutils/evhz/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/evhz/Makefile Sun Aug 4 13:10:24 2019 (r508094) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= evhz +DISTVERSION= g20170201 +CATEGORIES= sysutils + +MAINTAINER= greg@unrelenting.technology +COMMENT= Tool for measuring evdev event rate (mouse polling rate) + +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto + +USES= compiler localbase +USE_GITLAB= yes + +GL_ACCOUNT= iankelling +GL_COMMIT= 3b656489b70838afaeb33359cb0086e2a184c81f + +PLIST_FILES= bin/${PORTNAME} + +do-build: + (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${CC} ${CFLAGS} -o ${PORTNAME} ${PORTNAME}.c) + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ + +.include <bsd.port.mk> Added: head/sysutils/evhz/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/evhz/distinfo Sun Aug 4 13:10:24 2019 (r508094) @@ -0,0 +1,3 @@ +TIMESTAMP = 1564168942 +SHA256 (iankelling-evhz-3b656489b70838afaeb33359cb0086e2a184c81f_GL0.tar.gz) = 308d8531256375985dd6ff5758e1ce05d3e65ed00bad38ca3d35bfed0249aa07 +SIZE (iankelling-evhz-3b656489b70838afaeb33359cb0086e2a184c81f_GL0.tar.gz) = 14564 Added: head/sysutils/evhz/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/evhz/pkg-descr Sun Aug 4 13:10:24 2019 (r508094) @@ -0,0 +1,6 @@ +A tool for measuring evdev event rate +(mouse polling rate, touchpad event rate, etc.) + +Reported average is for the last 64 samples, or as many as we have so far. + +WWW: https://gitlab.com/iankelling/evhz
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908041310.x74DAPhB069375>