summaryrefslogtreecommitdiff
path: root/sys-block/rts5229/rts5229-1.07-r6.ebuild
blob: b2e9f9a7f85ccc8d4be1c4226f407a16cd12aefe (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
40
41
42
43
44
45
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
 
EAPI=4
 
inherit linux-mod
 
DESCRIPTION="PCIE RTS5229 card reader driver for Linux"
HOMEPAGE="http://www.realtek.com.tw/Downloads/downloadsView.aspx?PNid=15&PFid=25&Level=4&Conn=3&DownTypeID=3"
SRC_URI="https://dev.gentoo.org/~vikraman/distfiles/${P}.tar.bz2"
 
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="rts5249"
 
DEPEND=""
RDEPEND="${DEPEND}"
 
S="${WORKDIR}/${PN}"
 
MODULE_NAMES="rts5229(misc/drivers/scsi)"
BUILD_TARGETS="default"
 
src_prepare() {
sed -e 's/\/lib\/modules\/\$(shell uname -r)\/build\//\$(KERNELDIR)/g' \
-i Makefile || die "Sed failed!"
([ ${KV_MAJOR} -gt 3 ] || ([ ${KV_MAJOR} -eq 3 ] && [ ${KV_MINOR} -ge 8 ])) \
&& epatch "${FILESDIR}/${PN}-linux-3.8.patch"
([ ${KV_MAJOR} -gt 3 ] || ([ ${KV_MAJOR} -eq 3 ] && [ ${KV_MINOR} -ge 10 ])) \
&& epatch "${FILESDIR}/${PN}-linux-3.10.patch"
sed -e '/__DATE__/d' \
-i rtsx.c || die "Sed failed!"
epatch "${FILESDIR}/${PN}-vmalloc.patch"
 
if use rts5249; then
epatch "${FILESDIR}/rts5249.patch"
fi
}
 
pkg_setup() {
linux-mod_pkg_setup
BUILD_PARAMS="KERNELDIR=${KERNEL_DIR}"
}