rtl8812au_aircrack-ng: drop old

This commit is contained in:
Rick Farina (Zero_Chaos) 2023-08-18 17:07:02 -04:00
parent 017e27cdf7
commit 7bc0b06859
No known key found for this signature in database
GPG key ID: A29433C0AA431DDC
2 changed files with 0 additions and 51 deletions

View file

@ -1,2 +1 @@
DIST rtl8812au_aircrack-ng-5.6.4.2_p20221222.tar.gz 38983688 BLAKE2B 5dfcdcbe8db0e76c85e10fe730476af456e03de8b314f3e4609766f1b34a77eda76307cc273721bf10494c219e8336a525af1ba7d0babf0af0e511b6eb46a241 SHA512 0d50b1fba90dc2678c2a12e7766dfcc6d3a513c7a028608bb2219beade380fbc2fc3947feb88911256fbd9670a4f50dc65d766506ad33fea49de88a2e52c368c
DIST rtl8812au_aircrack-ng-5.6.4.2_p20230708.tar.gz 38973917 BLAKE2B b8e3c7ed2ccd27b231ad766532ceb03b5dc02f09e5552eb78f92d553fa6df30a50a8ad30eb99a0de37d1878c45ae2867fd917a9ddc06a4e5ecd83e1e9693b9cb SHA512 20054fe7f330d815d5299c2435d2dc4c652b3e8431ac09bff86d420c51e6a8c907b3063aee7df3923082c8f7a8a09f716d1428e7f91f80b60632434593b635ee

View file

@ -1,50 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
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.6.4.2"
else
HASH_COMMIT="ee299797bcd54d5b8c58d2da8576c54cea1a03a2"
SRC_URI="https://github.com/aircrack-ng/rtl8812au/archive/${HASH_COMMIT}.tar.gz -> ${P}.tar.gz"
KEYWORDS="amd64 x86"
S="${WORKDIR}/rtl8812au-${HASH_COMMIT}"
fi
LICENSE="GPL-2"
SLOT="0"
IUSE="kernel_linux"
DEPEND="
!!net-wireless/rtl8812au
!!net-wireless/rtl8812au_asus
!!net-wireless/rtl8812au_astsam"
# compile against selected (not running) target
pkg_setup() {
if use kernel_linux; then
BUILD_TARGETS="clean modules"
MODULE_NAMES="88XXau(misc:)"
BUILD_PARAMS="KVER=${KV_FULL} KSRC=${KERNEL_DIR} RTL8814=1 V=1"
linux-mod_pkg_setup
else
die "Could not determine proper ${PN} package"
fi
}
src_prepare() {
sed -i 's#CONFIG_80211W = n#CONFIG_80211W = y#' Makefile || die
sed -i 's#-DCONFIG_IEEE80211W#-DCONFIG_IEEE80211W -DCONFIG_RTW_80211R#' Makefile || die
sed -i 's#CONFIG_RTW_VIRTUAL_INTF = n#CONFIG_RTW_VIRTUAL_INTF = y#' Makefile || die
default
}