hcxdumptool: 5.2.0 bump

This commit is contained in:
Yury Martynov 2019-08-20 14:42:04 +03:00
parent 30cdd28ab3
commit 0503310afa
No known key found for this signature in database
GPG key ID: EBE62DD0CCEAE19E
2 changed files with 34 additions and 0 deletions

View file

@ -1,3 +1,4 @@
DIST hcxdumptool-5.0.0.tar.gz 52269 BLAKE2B 43d98f440b65df7fde7b4c0c176ca18a0943184d49bc9be4517c02dac6cc2d1eeda7bd9436979a6792e73a84a84cd54cdfc6659e98b3b5e06d3cb164a28f65fa SHA512 ee2ac03850e83a869eb5835d0cab40b15307c247c3389fd5987a75308646d7abd5439b4f5b93902069ab56fc46411e09cd6dca0d39bdfbbaf9c80b1f3dd76bd7
DIST hcxdumptool-5.1.4.tar.gz 59046 BLAKE2B 965f17b9ca2ed4da033b0c0a06d3761bbd676ce45542a290ba2441d33f8529b75297038c2241c770b33974696a9da34fd2a6d5fb5127f56312c55d32c46991fa SHA512 2e0eed2de167c4d1cb9ff804e3272dc072ede45aa82bd8cdca020a3375b976df55e5620689d0b0a142eb29e40b82334e8b59a5c0a93ced66e98d5f0b5d532397
DIST hcxdumptool-5.1.7.tar.gz 67362 BLAKE2B d1fff1448c1b6aa14deb5f6879ffe6241c57745ac46b953d4b467b01d4c65a4b8b9571879d6dcc88483524efa0d93cd3f302e6ab300c9e35f0b9dc250d722fa7 SHA512 7866314bf16770ae7f18e608408a3f9bac996296aa37db258a6cf777716ea1b353496bff1c493470e6b50b44e08c43940840fdd839630a9018aa44c9b52449c9
DIST hcxdumptool-5.2.0.tar.gz 71166 BLAKE2B a54777896f8bf3f71efac5d9e7f4150657899f9abb4941a4f039a91e5fa967b53ac2b53db311ef3e49422989e2d5c2637acbe9a4a2df7994c6567acb1e086624 SHA512 bedc146ab7a036fa6e22b34e857aa17ab24a0c216c7479a8a25b2138cf619397b231cd5f0b0bd5b8f9bfb3028fce3bdff3f98607b45d472ef75ac443b1f2cb5e

View file

@ -0,0 +1,33 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Small tool to capture packets from wlan devices"
HOMEPAGE="https://github.com/ZerBea/hcxdumptool"
SRC_URI="https://github.com/ZerBea/hcxdumptool/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="gpio"
DEPEND=""
RDEPEND="${DEPEND}"
src_prepare() {
sed -e "s/^install: build/install:/" \
-i Makefile || die
default
}
src_compile() {
emake $(usex gpio \
"GPIOSUPPORT=on" \
"GPIOSUPPORT=off")
}
src_install(){
emake DESTDIR="${ED}" PREFIX="${EPREFIX}/usr" install
}