blob: 45f34a0c2ea4dd80ccded1727662a3971fe90c03 (
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
|
# 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.2 2007/03/09 16:15:27 lack 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="~x86 ~ppc ~sparc"
PLUGIN_DOCS="SUPPORTED_SYSTEMS"
src_unpack() {
unpack "${A}"
cd "${S}"
epatch ${FILESDIR}/${P}-cflags.patch || die "Patch failed"
}
src_compile() {
emake STRIP=echo gkrellm
}
|