blob: 48cfeeb69ffddfdfe8a0e82bb79d243db3164601 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellm-hddtemp/gkrellm-hddtemp-0.2_beta-r1.ebuild,v 1.3 2008/07/28 14:02:14 lack Exp $
inherit eutils multilib
IUSE=""
MY_P=${P/_beta/-beta}
S=${WORKDIR}/${MY_P}
DESCRIPTION="a GKrellM2 plugin for hddtemp (which reads the temperature of SMART capable hard drives)"
SRC_URI="http://www.guzu.net/linux/${MY_P}.tar.gz"
HOMEPAGE="http://www.guzu.net/linux/hddtemp.php"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ppc sparc x86"
CDEPEND="=app-admin/gkrellm-2*
>=x11-libs/gtk+-2"
DEPEND="${CDEPEND}
dev-util/pkgconfig"
RDEPEND="${CDEPEND}
>=app-admin/hddtemp-0.3_beta6"
pkg_setup() {
if ! built_with_use app-admin/gkrellm X ; then
eerror "In order to install ${PN} you need to"
eerror "reinstall app-admin/gkrell with USE='X'."
die "app-admin/gkrellm built without USE='X'"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
# patch Makefile
sed -i "s:^CFLAGS.*:CFLAGS=${CFLAGS} -fPIC:" Makefile || die
}
src_compile() {
make gkrellm2 || die
}
src_install() {
dodoc README
insinto /usr/$(get_libdir)/gkrellm2/plugins
doins gkrellm-hddtemp.so
}
pkg_postinst() {
elog "hddtemp has to be suid root to allow regular users to run this plugin."
elog "To make it suid root, run"
elog
elog "\tchmod u+s /usr/sbin/hddtemp"
}
|