blob: 08454ef49afb13adeab71ec1c92cc009f6de9405 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/cman-kernel/cman-kernel-1.02.00-r1.ebuild,v 1.7 2006/10/15 10:45:24 xmerlin Exp $
inherit eutils linux-mod linux-info
CVS_RELEASE="20060714"
MY_P="cluster-${PV}"
DESCRIPTION="CMAN cluster kernel module"
HOMEPAGE="http://sources.redhat.com/cluster/"
SRC_URI="ftp://sources.redhat.com/pub/cluster/releases/${MY_P}.tar.gz
mirror://gentoo/${PN}-${PV}-${CVS_RELEASE}-cvs.patch.gz
http://dev.gentoo.org/~xmerlin/gfs/${PN}-${PV}-${CVS_RELEASE}-cvs.patch.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""
DEPEND="|| (
>=sys-kernel/vanilla-sources-2.6.12
>=sys-kernel/gentoo-sources-2.6.12
)"
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}/${PN}-${PV}-${CVS_RELEASE}-cvs.patch || die
}
src_compile() {
check_KV
set_arch_to_kernel
./configure --kernel_src=${KERNEL_DIR} --verbose || die "configure error"
emake || die "compile error"
}
src_install() {
emake DESTDIR=${D} install || die "install error"
rm -f ${D}/usr/include/cluster/*
}
pkg_postinst() {
linux-mod_pkg_postinst
einfo ""
einfo "Please remember to re-emerge ${PN} when you upgrade your kernel!"
einfo ""
}
|