summaryrefslogtreecommitdiff
path: root/sys-kernel/rt3290sta-dkms/rt3290sta-dkms-2.6.0.0-r1.ebuild
blob: 90a2aa42074528042bd6fe16e94136d651313207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=5

inherit eutils

DESCRIPTION="Mediatek/Ralink rt3290 wifi driver sources for Linux 4.x"
HOMEPAGE="https://www.mediatek.com/products/connectivity-and-networking/broadband-wifi"
SRC_URI="http://mirror.math.princeton.edu/pub/redcorelinux/distfiles/${P}.tar.xz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""

DEPEND="sys-kernel/dkms"
RDEPEND="${DEPEND}"

S=${WORKDIR}/${P}

src_compile() {
	:
}

src_install() {
	dodir /usr/src/${P}
	insinto /usr/src/${P}
	doins -r "${S}"/*
}

pkg_postinst() {
	dkms add ${PN}/${PV}
}

pkg_prerm() {
	dkms remove ${PN}/${PV} --all
}