blob: f0851d7fe70fcff18b5dda2517de5ae15b57981a (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/xmbmon/xmbmon-2.0.3.ebuild,v 1.7 2004/07/01 21:44:58 eradicator Exp $
inherit gnuconfig
MY_P="${PN}${PV//.}"
DESCRIPTION="Mother Board Monitor Program for X Window System"
HOMEPAGE="http://www.nt.phys.kyushu-u.ac.jp/shimizu/download/download.html"
SRC_URI="http://www.nt.phys.kyushu-u.ac.jp/shimizu/download/${MY_P}.tar.gz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="x86 amd64"
IUSE="X"
DEPEND="virtual/libc
X? ( virtual/x11 )"
S=${WORKDIR}/${MY_P}
src_compile() {
gnuconfig_update
econf || die "Configure failed"
emake DEFS="$DEFS -DLINUX" CFLAGS="$CFLAGS \$(INCLUDES) \$(DEFS)" mbmon || die "Make mbmon failed"
if use X ; then
emake DEFS="$DEFS -DLINUX" CFLAGSX="$CFLAGS \$(INCLUDES) \$(DEFS)" xmbmon || die "Make xmbmon failed"
fi
}
src_install() {
dosbin mbmon
fperms 4555 /usr/sbin/mbmon
fowners root:wheel /usr/sbin/mbmon
if use X ; then
dosbin xmbmon
fperms 4555 /usr/sbin/xmbmon
fowners root:wheel /usr/sbin/xmbmon
fi
dodoc 00README*
}
pkg_postinst() {
echo
einfo "These programs access SMBus/ISA-IO ports without any kind"
einfo "of checking. It is, therefore, very dangerous and may cause"
einfo "a system-crash. Make sure you read 00README.txt,"
einfo "section 4, 'How to use!'"
echo
ewarn "Binaries are setuid root!"
echo
}
|