# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit linux-mod-r1 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="a842611d74c776749782650d225137e9dbb3ba43" 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" # compile against selected (not running) target pkg_setup() { if use kernel_linux; then linux-mod-r1_pkg_setup else die "Could not determine proper ${PN} package" fi } src_prepare() { sed -i 's#-DCONFIG_IEEE80211W#-DCONFIG_IEEE80211W -DCONFIG_RTW_80211R#' Makefile || die default } src_compile() { local modlist=( 88XXau=misc ) local modargs=( KVER="${KV_FULL}" KSRC="${KERNEL_DIR}" ) linux-mod-r1_src_compile }