blob: 26d7619fb2d6cad9959d1170380f5f0c3d068c8e (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/torsmo/torsmo-0.18-r1.ebuild,v 1.3 2005/01/31 15:40:26 gustavoz Exp $
inherit eutils
DESCRIPTION="minimalist system monitor for X"
HOMEPAGE="http://torsmo.sourceforge.net/"
SRC_URI="mirror://sourceforge/torsmo/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="x86 ~ppc ~amd64 sparc"
IUSE=""
RDEPEND="virtual/libc
virtual/x11"
DEPEND="${RDEPEND}
>=sys-devel/automake-1.4
sys-devel/autoconf
sys-apps/grep
sys-apps/sed
sys-devel/gcc"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}.xwin.patch || die "patch failed"
}
src_compile() {
econf --x-libraries=/usr/X11R6/lib/ || die "econf failed"
emake || die "compile failed"
}
src_install() {
emake DESTDIR=${D} install || die "make install failed"
dodoc ChangeLog AUTHORS README torsmorc.sample
}
pkg_postinst() {
einfo 'default configuration file is "~/.torsmorc"'
einfo "you can find a sample configuration file in"
einfo "/usr/share/doc/${PF}/torsmorc.sample.gz"
einfo
einfo "Comment out temperature info lines if you have no kernel"
einfo "support for it."
einfo
ewarn "Torsmo doesn't work with window managers that"
ewarn "take control over root window such as Gnome's nautilus."
einfo
ewarn "Please note that >=0.18 contains mozilla support without"
ewarn "patching, thus the mozilla USE flag has been dropped"
}
|