blob: 6c0a5467ca809e8540498d2d343f6f642a7a67f1 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openmosix-3dmon-stats/openmosix-3dmon-stats-0.2.1.ebuild,v 1.5 2004/07/15 03:04:10 agriffis Exp $
inherit eutils
S=${WORKDIR}/mosstatd-${PV}
DESCRIPTION="Statistics daemon for three dimensional openmosix's monitoring tool"
SRC_URI="mirror://sourceforge/threedmosmon/mosstatd-${PV}.tar.gz"
HOMEPAGE="http://sourceforge.net/projects/threedmosmon"
DEPEND="virtual/libc
sys-cluster/openmosix-user"
RDEPEND="${DEPEND}"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="-* ~x86"
IUSE=""
pkg_setup() {
if [ -z "`readlink /usr/src/linux|grep openmosix`" ]; then
eerror
eerror "Your linux kernel sources do not appear to be openmosix,"
eerror "please check your /usr/src/linux symlink."
eerror
die
fi
}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-makefile+init-script.patch.bz2 \
|| die "Failed to patch the source."
}
src_compile() {
cd ${S}
make
}
src_install() {
dodir /usr/sbin
dodir /etc/init.d
dodir /usr/share/doc
cd ${S}
chmod 0755 mosstatd && cp -f ./mosstatd ${D}/usr/sbin
chmod 0750 mosstat && cp -f ./mosstat ${D}/etc/init.d/mosstat
cd ${S}
dodoc README ChangeLog
}
pkg_postinst() {
einfo
einfo " Type:"
einfo " # rc-update add mosstat default"
einfo " to add openMosix to the default runlevel."
einfo
}
|