blob: 145e245228d6a561f60b52f52ce2799fd362a802 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/iddev/iddev-20040626.ebuild,v 1.1 2004/06/27 15:13:20 zypher Exp $
MY_P=gfs-${PV}
DESCRIPTION="GFS helper libary"
HOMEPAGE="http://sources.redhat.com/cluster"
SRC_URI="mirror://gentoo/${MY_P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
RDEPEND="=sys-cluster/ccs-20040626
=sys-cluster/cman-20040626
=sys-cluster/dlm-20040626
=sys-cluster/fence-20040626"
S=${WORKDIR}/${MY_P}/${PN}
src_compile() {
./configure --kernel_src=/usr/src/linux-2.6.7-gfs || die
emake || die
}
src_install() {
make DESTDIR=${D} install
}
|