blob: 2e74ff689660e3d3c865b3175006da0cc14e3b0d (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/fcpci/fcpci-0.1-r2.ebuild,v 1.4 2012/03/19 19:05:20 ulm Exp $
#EAPI=2 # currently not possible because of linux-mod
inherit eutils rpm linux-mod versionator
DESCRIPTION="AVM kernel 2.6 modules for Fritz!Card PCI"
HOMEPAGE="http://opensuse.foehr-it.de/"
SRC_URI="http://opensuse.foehr-it.de/rpms/11_2/src/${P}-0.src.rpm"
#-> ${P}-0.src-11_2.rpm" # needs EAPI=2
LICENSE="AVM-FC"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="!net-dialup/fritzcapi"
RDEPEND="${DEPEND} net-dialup/capi4k-utils"
RESTRICT="mirror primaryuri" # because we can't use EAPI=2
S="${WORKDIR}/fritz"
pkg_setup() {
linux-mod_pkg_setup
if ! kernel_is -ge 2 6; then
die "This package works only with 2.6 kernel!"
fi
BUILD_TARGETS="all"
BUILD_PARAMS="KDIR=${KV_DIR} LIBDIR=${S}/src"
MODULE_NAMES="${PN}(net:${S}/src)"
}
src_unpack() {
local BIT="" PAT="012345"
if use amd64; then
BIT="64bit-" PAT="1234"
fi
if kernel_is ge 2 6 31 ; then
PAT="${PAT}67"
fi
rpm_unpack ${A} || die "failed to unpack ${A} file"
DISTDIR="${WORKDIR}" unpack ${PN}-suse[0-9][0-9]-${BIT}[0-9].[0-9]*-[0-9]*.tar.gz
cd "${S}"
epatch $(sed -n "s|^Patch[${PAT}]:\s*\(.*\)|../\1|p" ../${PN}.spec)
if kernel_is ge 2 6 34 ; then
epatch "${FILESDIR}"/fcpci-linux-2.6.34.diff
fi
convert_to_m src/Makefile
for i in lib/*-lib.o; do
einfo "Localize symbols in ${i##*/} ..."
objcopy -L memcmp -L memcpy -L memmove -L memset -L strcat \
-L strcmp -L strcpy -L strlen -L strncmp -L strncpy "${i}"
done
}
src_install() {
linux-mod_src_install
dodoc CAPI*.txt
dohtml *.html
}
|