blob: c5e0fc9847dae2adf15aac138fa1cca201c9b342 (
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcmcia-cs-modules/pcmcia-cs-modules-3.2.8.ebuild,v 1.3 2005/05/27 19:21:07 brix Exp $
inherit eutils flag-o-matic toolchain-funcs linux-info
MY_P=${P/-modules/}
S=${WORKDIR}/${MY_P}
DESCRIPTION="PCMCIA modules for Linux 2.4.x"
HOMEPAGE="http://pcmcia-cs.sourceforge.net"
SRC_URI="mirror://sourceforge/pcmcia-cs/${MY_P}.tar.gz
http://ozlabs.org/people/dgibson/dldwd/monitor-0.13e.patch"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE="cardbus"
DEPEND="virtual/linux-sources
app-arch/tar
>=sys-apps/sed-4"
RDEPEND=""
pkg_setup() {
linux-info_pkg_setup
if kernel_is gt 2 4; then
eerror
eerror "This package only works with linux-2.4.x"
eerror "For newer kernels, please use the in-kernel PCMCIA drivers."
eerror
die "linux-${KV_FULL} detected"
fi
if (linux_chkconfig_present PCMCIA || linux_chkconfig_present PCCARD); then
eerror
eerror "This package requires the in-kernel PCMCIA drivers to be disabled."
eerror
die "Kernel PCMCIA support detected"
fi
}
src_unpack() {
unpack ${MY_P}.tar.gz
cd ${S}/wireless
epatch ${DISTDIR}/monitor-0.13e.patch
cd ${S}
epatch ${FILESDIR}/${MY_P}-orinoco-gcc34.patch
epatch ${FILESDIR}/${MY_P}-modules-only.patch
}
src_compile() {
local config CONFIG_FILE
if use cardbus; then
einfo "CardBus support enabled"
config="${config} --cardbus"
else
einfo "CardBus support disabled"
config="${config} --nocardbus"
fi
if linux_chkconfig_present PM; then
einfo "Power management support enabled"
config="${config} --apm"
else
einfo "Power management support disabled"
config="${config} --noapm"
fi
if linux_chkconfig_present PNP; then
einfo "Plug and Play support enabled"
config="${config} --pnp"
else
einfo "Plug and Play support disabled"
config="${config} --nopnp"
fi
${S}/Configure \
--noprompt \
--kernel=${KV_DIR} \
--moddir=/lib/modules/${KV_FULL} \
--target=${D} \
--arch=$(tc-arch-kernel) \
--ucc=$(tc-getCC) \
--kcc=$(tc-getCC) \
--ld=$(tc-getLD) \
--uflags="${CFLAGS}" \
--kflags="$(getfilevar HOSTCFLAGS ${KV_DIR}/Makefile)" \
--srctree \
--nox11 \
${config} \
|| die "Configure failed"
ebegin "Saving pcmcia-cs development environment"
echo ${PV} > ${S}/pcmcia-cs-version
cd ${S}
tar -cjf ${T}/pcmcia-cs-build-env.tbz2 .
eend ${?}
emake all || die "emake all failed"
}
src_install () {
emake install || die "emake install failed"
# remove bogus modules.conf file
rm -f ${D}/etc/modules.conf
# install the pcmcia-cs development environment tarball
# (used by linux-mod.eclass)
insinto /usr/src/pcmcia-cs
doins ${T}/pcmcia-cs-build-env.tbz2
}
pkg_postinst() {
einfo
einfo "It is adviced that you re-merge all external PCMCIA modules"
einfo "after installing a new version of ${PN}."
einfo
}
|