mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-23 05:53:12 -04:00
28 lines
747 B
Bash
28 lines
747 B
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit linux-mod-r1
|
|
|
|
MY_PN="rtl8192eu-linux-driver"
|
|
COMMIT="3cffd844ecf070346b1b4952164bc6658701c69e"
|
|
DESCRIPTION="Realtek 8192EU driver module for Linux kernel"
|
|
HOMEPAGE="https://github.com/Mange/rtl8192eu-linux-driver"
|
|
SRC_URI="https://github.com/Mange/${MY_PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}/${MY_PN}-${COMMIT}"
|
|
|
|
SLOT=0
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
CONFIG_CHECK="~!RTL8XXXU"
|
|
ERROR_RTL8XXXU="The RTL8XXXXU module is enabled in the kernel; it conflicts with this module."
|
|
|
|
src_compile() {
|
|
local modlist=( 8192eu=net/wireless )
|
|
local modargs=( KSRC="${KV_OUT_DIR}" )
|
|
|
|
linux-mod-r1_src_compile
|
|
}
|