mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-08 12:30:44 +02:00
rtl8812au_aircrack-ng: 20190622 bump, fix https://github.com/pentoo/pentoo-overlay/issues/485
This commit is contained in:
parent
d7cfb077a4
commit
8f5303faf5
2 changed files with 44 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST rtl8812au_aircrack-ng-5.2.20_p20190414.tar.gz 22618538 BLAKE2B 496826bb5b2c2d82422cbe4d88c5a13b635cdb32e152feb1092de2760d07b351ecf092478d25423ace93c39c2715af5a2091d2aa8ce218653c661ec983918fe7 SHA512 93e2781547552d71d13628b93faaf6aa552267087dd95e2f685f4b1fa150771533452d1795f604ef98821cae12e7840cc4c859a985b723c391713734a927bcdc
|
||||
DIST rtl8812au_aircrack-ng-5.3.4_p20190511.tar.gz 3291521 BLAKE2B f4b928387022710d324b9debcbc82fcfcc89ea66f504ee83a5bf3dbe874d671d39d6ad174d74e8f6bf373d2ceccd6afdbf7cc12f072e18c1e9b7660e875dfb8a SHA512 0b2d3b810ad69c99694d394842f21aa54cc873ab547870b5cdfcc7f15a3e9bbcedfe3c5f0443eaf3c0f1d40cd225612a9374df3bf87430b6472a02d2db7bd577
|
||||
DIST rtl8812au_aircrack-ng-5.3.4_p20190622.tar.gz 3291673 BLAKE2B 7d774165ec5b751aeb0a1d48147bb3b11a8a4ed629fb740d28fe305edd0dd7e1826bc79b232717c1b52b555e9cab7d072858bba6039d13d5e2e845e289d753a3 SHA512 b13a0d991f652bccb98baae2de640656a8d63c965a228dca2899e63038c5a2d108fb728c0e45c964bafdbe63914b4b5158bd8b6fad288979557f37d461b9cb0f
|
||||
|
|
|
|||
|
|
@ -0,0 +1,43 @@
|
|||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit linux-mod
|
||||
|
||||
DESCRIPTION="RTL8812AU/21AU and RTL8814AU driver with monitor mode and frame injection"
|
||||
HOMEPAGE="https://github.com/aircrack-ng/rtl8812au"
|
||||
|
||||
if [[ ${PV} == "9999" ]] ; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/aircrack-ng/rtl8812au.git"
|
||||
EGIT_BRANCH="v5.3.4"
|
||||
else
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
COMMIT="2c3ce7095f446c412ac8146b88b854b6c684a03e"
|
||||
SRC_URI="https://github.com/aircrack-ng/rtl8812au/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/rtl8812au-${COMMIT}"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="kernel_linux"
|
||||
|
||||
DEPEND="!!net-wireless/rtl8812au_astsam
|
||||
!!net-wireless/rtl8812au
|
||||
!!net-wireless/rtl8812au_asus"
|
||||
|
||||
BUILD_TARGETS="clean modules"
|
||||
MODULE_NAMES="88XXau(misc:)"
|
||||
|
||||
#compile against selected (not running) target
|
||||
pkg_setup() {
|
||||
linux-mod_pkg_setup
|
||||
BUILD_PARAMS="KVER=${KV_FULL} KSRC=${KERNEL_DIR} RTL8814=1 V=1"
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
sed -i 's#CONFIG_80211W = n#CONFIG_80211W = y#' Makefile
|
||||
sed -i 's#-DCONFIG_IEEE80211W#-DCONFIG_IEEE80211W -DCONFIG_RTW_80211R#' Makefile
|
||||
default
|
||||
}
|
||||
Loading…
Reference in a new issue