diff options
author | Maik Schreiber <blizzy@gentoo.org> | 2002-07-24 00:48:34 +0000 |
---|---|---|
committer | Maik Schreiber <blizzy@gentoo.org> | 2002-07-24 00:48:34 +0000 |
commit | 20b2850b8dda23b2e2a688b11c65c6a4d27cedb8 (patch) | |
tree | baa863f48c43dc56bac6fe6dbbb0cae451cc9f75 /gnome-extra/merlin-cpufire/merlin-cpufire-0.1.0-r1.ebuild | |
parent | repoman'd digests (diff) | |
download | gentoo-2-20b2850b8dda23b2e2a688b11c65c6a4d27cedb8.tar.gz gentoo-2-20b2850b8dda23b2e2a688b11c65c6a4d27cedb8.tar.bz2 gentoo-2-20b2850b8dda23b2e2a688b11c65c6a4d27cedb8.zip |
corrected dependencies
Diffstat (limited to 'gnome-extra/merlin-cpufire/merlin-cpufire-0.1.0-r1.ebuild')
-rw-r--r-- | gnome-extra/merlin-cpufire/merlin-cpufire-0.1.0-r1.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnome-extra/merlin-cpufire/merlin-cpufire-0.1.0-r1.ebuild b/gnome-extra/merlin-cpufire/merlin-cpufire-0.1.0-r1.ebuild new file mode 100644 index 000000000000..79680dba5405 --- /dev/null +++ b/gnome-extra/merlin-cpufire/merlin-cpufire-0.1.0-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 2002 Maik Schreiber +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/merlin-cpufire/merlin-cpufire-0.1.0-r1.ebuild,v 1.1 2002/07/24 00:48:34 blizzy Exp $ + +DESCRIPTION="Gnome applet that displays CPU usage as burning fire" +HOMEPAGE="http://nitric.com/freeware" +SRC_URI="ftp://ftp.ibiblio.org/pub/packages/desktops/gnome/sources/merlin-cpufire/${P}.tgz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +RDEPEND="gnome-base/gnome-core + <gnome-base/libgtop-2" +DEPEND="${RDEPEND}" + +src_compile() { + mv Makefile Makefile~ + # include libgtop in cppFlags + sed <Makefile~ >Makefile -e 's|cppFlags = ${shell gnome-config --cflags glib gnome gnomeui gnorba}|cppFlags = ${shell gnome-config --cflags glib gnome gnomeui gnorba libgtop}|' + make prefix=${D}/usr etcdir=${D}/etc || die +} + +src_install () { + make prefix=${D}/usr etcdir=${D}/etc install +} |