blob: 56ef284f807b2056b9c0564daa2ae0e14c7da471 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellm-bfm/gkrellm-bfm-0.6.4.ebuild,v 1.6 2007/07/11 20:39:23 mr_bones_ Exp $
inherit gkrellm-plugin
IUSE=""
S=${WORKDIR}/bfm-${PV}
DESCRIPTION="A Gkrellm2 system monitor plugin, with bubbles, fish, and a rubber duck."
SRC_URI="http://www.jnrowe.ukfsn.org/data/bfm-${PV}.tar.bz2"
HOMEPAGE="http://www.jnrowe.ukfsn.org/projects/bfm.html"
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="ppc sparc x86"
PLUGIN_DOCS="SUPPORTED_SYSTEMS"
src_unpack() {
unpack "${A}"
cd "${S}"
epatch ${FILESDIR}/${P}-cflags.patch || die "Patch failed"
}
src_compile() {
emake STRIP=echo gkrellm
}
|