# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit toolchain-funcs DESCRIPTION="Small tool to capture packets from wlan devices" HOMEPAGE="https://github.com/ZerBea/hcxdumptool" SRC_URI="https://github.com/ZerBea/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="amd64 arm64 x86" RDEPEND="net-libs/libpcap" DEPEND="${RDEPEND}" DOCS=( README.md changelog ) src_compile() { emake CC="$(tc-getCC)" } src_install() { emake DESTDIR="${ED}" PREFIX="${EPREFIX}/usr" install doman man/hcxdumptool.1 einstalldocs dodoc -r docs }