mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-22 06:41:01 +02:00
rtl8812au_aircrack-ng: 5.3.4 new branch
This commit is contained in:
parent
6dffbe1089
commit
fb25a6555d
2 changed files with 44 additions and 0 deletions
|
|
@ -1 +1,2 @@
|
|||
DIST rtl8812au_aircrack-ng-5.2.20_p20180904.tar.gz 3266179 BLAKE2B 90e8da5586339c86f8f31d5343059cfc239ed701c1f2bdcdd782fc06bd0b64d98064979e5fee836eb9635d64b3746385778586c83718b6845c10108377a9e545 SHA512 794ca5c71f197dc3253374c6ad2b9babdf5656223d1dd68f07a6e7222ddadc53ebd21d62ecbc4320731f49e05038281171e55fd9b7b59bb9de51982c5282dae8
|
||||
DIST rtl8812au_aircrack-ng-5.3.4_p20181015.tar.gz 3287210 BLAKE2B 76e8de43240e56396fec291302ab85258a6ca550780020bd8a93a8cf254b38058c6e79b4785d247cf14cf4769c5f2380111ef7c70737db1b5a14506d2b5f0bb3 SHA512 4ba7f56ee57faace6a8aa3eb5f66dc26f324d22c32c2f8f26b5aff85d96953cdd352129dd74ddd652599bc6b8bf7be5682bf8f77cf7031d79c7605810bf9ad61
|
||||
|
|
|
|||
|
|
@ -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
|
||||
KEYWORDS=""
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/aircrack-ng/rtl8812au.git"
|
||||
EGIT_BRANCH="v5.3.4"
|
||||
else
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
COMMIT="e994f6b26a9825544f2817edb60c0a7327467878"
|
||||
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"
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
sed -i 's#CONFIG_80211W = n#CONFIG_80211W = y#' Makefile
|
||||
default
|
||||
}
|
||||
Loading…
Reference in a new issue