blob: b8418c77feb222e98e5c25be79a45f4692ba56b9 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/openmosixview/openmosixview-1.2.ebuild,v 1.8 2002/11/04 20:11:38 tantive Exp $
S=${WORKDIR}/openmosixview
DESCRIPTION="cluster-management GUI for OpenMosix"
SRC_URI="www.openmosixview.com/download/openmosixview-${PV}.tar.gz"
HOMEPAGE="http://www.openmosixview.com"
IUSE=""
DEPEND=">=x11-libs/qt-2.3.0
>=sys-cluster/openmosix-user-0.2.4
>=sys-kernel/openmosix-sources-2.4.18"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 -ppc -sparc -sparc64 -alpha"
src_unpack() {
unpack ${A}
cat > configuration << EOF
# test which version of qt is installed
if [ -d /usr/qt/3 ]; then
QTDIR=/usr/qt/3; else
QTDIR=/usr/qt/2;
fi
CC=gcc
EOF
}
src_compile() {
cd ${S}
./configure || die
make || die
cd ${S}/openmosixcollector
./configure || die
make || die
cd ${S}/openmosixanalyzer
./configure || die
make || die
cd ${S}/openmosixhistory
./configure || die
make || die
cd ${S}/openmosixprocs
./configure || die
make || die
}
src_install() {
dodir /usr/sbin
dodir /usr/local/bin
make INSTALLBASEDIR=${D}usr INSTALLMANDIR=${D}usr/share/man DESTDIR=${D} INSTALLDIR=${D}usr install || die
cd ${S}/openmosixcollector
make INSTALLBASEDIR=${D}usr INSTALLMANDIR=${D}usr/share/man DESTDIR=${D} INSTALLDIR=${D}usr install || die
cd ${S}/openmosixanalyzer
make INSTALLBASEDIR=${D}usr INSTALLMANDIR=${D}usr/share/man DESTDIR=${D} INSTALLDIR=${D}usr install || die
cd ${S}/openmosixhistory
make INSTALLBASEDIR=${D}usr INSTALLMANDIR=${D}usr/share/man DESTDIR=${D} INSTALLDIR=${D}usr install || die
cd ${S}/openmosixprocs
make INSTALLBASEDIR=${D}usr INSTALLMANDIR=${D}usr/share/man DESTDIR=${D} INSTALLDIR=${D}usr install || die
dodoc COPYING README
exeinto /etc/init.d
newexe ${S}/openmosixcollector/openmosixcollector.init openmosixcollector
}
pkg_postinst() {
einfo
einfo "Openmosixview will allow you to monitor all nodes in your cluster."
einfo
einfo "You will need ssh to all cluster-nodes without password."
einfo
einfo "To setup your other nodes you will have to copy the"
einfo "openmosixprocs binary onto each node"
einfo "(scp /usr/local/bin/openmosixprocs your_node:/usr/local/bin/openmosixprocs)"
einfo
einfo "Start openmosixcollector"
einfo "manually (/etc/init.d/openmosixcollector start) or"
einfo "automatically using rc-update"
einfo "(rc-update add /etc/init.d/openmosixcollector default)."
einfo
einfo "Run openmosixview by simply typing openmosixview."
einfo
}
|