sys-apps/evhz - 9999 (nest)

Search

Install

Install this version:

emerge -a =sys-apps/evhz-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =sys-apps/evhz-9999

Or alternatively:

emerge --autounmask-write -a =sys-apps/evhz-9999

Package Information

Description:
Mouse refresh rate under evdev
Homepage:
https://git.sr.ht/~iank/evhz
License:
GPL-3

Ebuild Details

Version EAPI Keywords Slot
9999 8 0
View Raw Ebuild
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

# shellcheck disable=SC2086

EAPI=8

inherit git-r3 flag-o-matic toolchain-funcs

DESCRIPTION="Mouse refresh rate under evdev"
HOMEPAGE="https://git.sr.ht/~iank/evhz"
EGIT_REPO_URI="https://git.sr.ht/~iank/evhz"

LICENSE="GPL-3"
SLOT="0"

src_compile() {
	append-cflags
	append-ldflags
	"$(tc-getCC)" ${CFLAGS} ${LDFLAGS} -o evhz evhz.c || die "gcc failed"
}

src_install() {
	einstalldocs
	dobin evhz
}

Inherited Eclasses