blob: 3cd055adeb3bf8f7f8f13bd0d232baa672b2a004 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/fcdslusb/fcdslusb-0.1.ebuild,v 1.1 2008/01/06 01:47:59 sbriesen Exp $
inherit eutils rpm linux-mod
DESCRIPTION="AVM kernel 2.6 modules for Fritz!Card DSL USB"
HOMEPAGE="http://opensuse.foehr-it.de/"
SRC_URI="http://opensuse.foehr-it.de/rpms/10_3/src/${P}-0.src.rpm"
LICENSE="AVM-FC"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="net-dialup/capi4k-utils"
S="${WORKDIR}/fritz"
pkg_setup() {
linux-mod_pkg_setup
if ! kernel_is 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}/1/fritz/src) ${PN}2(net:${S}/2/fritz/src)"
}
src_unpack() {
local BIT="" PAT1="012345" PAT2="0123467"
if use amd64; then
BIT="64bit-" PAT1="12345" PAT2="123467"
fi
rpm_unpack "${DISTDIR}/${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}/1/fritz"
epatch $(sed -n "s|^Patch[${PAT1}]:\s*\(.*\)|../../../\1|p" ../../../${PN}.spec)
convert_to_m "src/Makefile"
cd "${S}/2/fritz"
epatch $(sed -n "s|^Patch[${PAT2}]:\s*\(.*\)|../../../\1|p" ../../../${PN}.spec)
convert_to_m "src/Makefile"
}
src_install() {
linux-mod_src_install
insinto /lib/firmware/isdn
doins 1/fritz/*.frm ../*.frm
dodoc CAPI*.txt
dohtml *.html
}
|