blob: 49a92684dba9675c620022591df4107248f1a446 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/gfs-kernel/gfs-kernel-1.02.00-r2.ebuild,v 1.2 2008/03/17 17:23:01 xmerlin Exp $
inherit eutils linux-mod linux-info
CLUSTER_RELEASE="1.02.00"
MY_P="cluster-${CLUSTER_RELEASE}"
CVS_RELEASE="20060714"
DESCRIPTION="GFS kernel module"
HOMEPAGE="http://sources.redhat.com/cluster/"
SRC_URI="ftp://sources.redhat.com/pub/cluster/releases/${MY_P}.tar.gz
mirror://gentoo/${PN/headers/kernel}-${PV}-${CVS_RELEASE}-cvs-part1.patch.gz
mirror://gentoo/${PN/headers/kernel}-${PV}-${CVS_RELEASE}-cvs-part2.patch.gz
http://dev.gentoo.org/~xmerlin/gfs/${PN/headers/kernel}-${PV}-${CVS_RELEASE}-cvs-part1.patch.gz
http://dev.gentoo.org/~xmerlin/gfs/${PN/headers/kernel}-${PV}-${CVS_RELEASE}-cvs-part2.patch.gz
"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND=">=virtual/linux-sources-2.6.16
=sys-cluster/dlm-headers-${CLUSTER_RELEASE}*
=sys-cluster/cman-headers-${CLUSTER_RELEASE}*"
RDEPEND=""
S="${WORKDIR}/${MY_P}/${PN}"
pkg_setup() {
linux-mod_pkg_setup
case ${KV_FULL} in
2.2.*|2.4.*) die "${P} supports only 2.6 kernels";;
esac
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${WORKDIR}"/gfs-kernel-1.02.00-20060714-cvs-part1.patch || die
if kernel_is 2 6; then
if [ "$KV_PATCH" -gt "16" ] ; then
epatch "${WORKDIR}"/gfs-kernel-1.02.00-20060714-cvs-part2.patch || die
fi
if [ "$KV_PATCH" -ge "18" ] ; then
epatch "${FILESDIR}"/${PN}-1.03.00-post-2.6.18.patch || die
sed -i \
-e 's|version.h|utsrelease.h|g' \
configure \
|| die "sed failed"
fi
fi
epatch "${FILESDIR}"/${PN/headers/kernel}-${PV}-${CVS_RELEASE}-cvs-compile.patch || die
}
src_compile() {
set_arch_to_kernel
./configure --kernel_src=${KERNEL_DIR} --verbose || die "configure problem"
emake || die "compile problem"
}
src_install() {
emake DESTDIR="${D}" module_dir="${D}"/lib/modules/${KV_FULL} install || die "install problem"
rm -f "${D}"/usr/include/linux/* || die
}
pkg_postinst() {
linux-mod_pkg_postinst
einfo ""
einfo "Please remember to re-emerge ${PN} when you upgrade your kernel!"
einfo ""
}
|