blob: dcee069828f8ea9265de2f4931b070af918e084e (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-fs/openafs-kernel/openafs-kernel-1.2.13.ebuild,v 1.3 2005/07/29 17:50:20 seemant Exp $
inherit eutils linux-mod versionator check-kernel
PATCHVER=0.1
MY_PN=${PN/-kernel}
MY_P=${MY_PN}-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="The OpenAFS distributed file system kernel module"
HOMEPAGE="http://www.openafs.org/"
SRC_URI="http://openafs.org/dl/${MY_PN}/${PV}/${MY_P}-src.tar.bz2
mirror://gentoo/${MY_PN}-gentoo-${PATCHVER}.tar.bz2
http://dev.gentoo.org/~seemant/distfiles/${MY_PN}-gentoo-${PATCHVER}.tar.bz2"
LICENSE="IPL-1"
SLOT="0"
KEYWORDS="~x86 ~alpha ~ia64"
DEPEND="virtual/linux-sources"
PATCHDIR=${WORKDIR}/gentoo/patches/$(get_version_component_range 1-2)/kernel
pkg_setup() {
if is_2_5_kernel || is_2_6_kernel
then
die "Linux 2.6 kernels do not use this version of openafs. Use the 1.3 series"
fi
linux-mod_pkg_setup
}
src_unpack() {
unpack ${A}; cd ${S}
EPATCH_SUFFIX="patch" epatch ${PATCHDIR}
}
src_compile() {
econf --with-linux-kernel-headers=${KV_DIR} || die "Failed: econf"
# unset ARCH, because else it will be used as an incent to start
# cross-compiling the kernel module
env -u ARCH make only_libafs || die "Failed: make"
}
src_install() {
MOD_SRCDIR=$(expr ${S}/src/libafs/MODLOAD-*)
if [ ! -e ${MOD_SRCDIR}/libafs.${KV_OBJ} ]; then
cp ${MOD_SRCDIR}/libafs-*.${KV_OBJ} ${MOD_SRCDIR}/libafs.${KV_OBJ} \
|| die "Couldn't find compiled kernel module"
fi
MODULE_NAMES='libafs(openafs:$MOD_SRCDIR)'
linux-mod_src_install
}
|