diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-10-31 14:07:32 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-10-31 14:07:32 +0000 |
commit | 58e48ea0283bb3c3b2f79416f784f84d96bc464d (patch) | |
tree | de79bf942a0c2e03b6e24efed18a76b7be76dfc7 /x11-plugins/gkrellflynn | |
parent | fix symlink issue, bug 10006 (diff) | |
download | gentoo-2-58e48ea0283bb3c3b2f79416f784f84d96bc464d.tar.gz gentoo-2-58e48ea0283bb3c3b2f79416f784f84d96bc464d.tar.bz2 gentoo-2-58e48ea0283bb3c3b2f79416f784f84d96bc464d.zip |
new gkrellm load monitor
Diffstat (limited to 'x11-plugins/gkrellflynn')
-rw-r--r-- | x11-plugins/gkrellflynn/ChangeLog | 12 | ||||
-rw-r--r-- | x11-plugins/gkrellflynn/files/digest-gkrellflynn-0.6 | 1 | ||||
-rw-r--r-- | x11-plugins/gkrellflynn/gkrellflynn-0.6.ebuild | 39 |
3 files changed, 52 insertions, 0 deletions
diff --git a/x11-plugins/gkrellflynn/ChangeLog b/x11-plugins/gkrellflynn/ChangeLog new file mode 100644 index 000000000000..c86d6681d72f --- /dev/null +++ b/x11-plugins/gkrellflynn/ChangeLog @@ -0,0 +1,12 @@ +# ChangeLog for x11-plugins/gkrellflynn +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellflynn/ChangeLog,v 1.1 2002/10/31 14:07:32 seemant Exp $ + +*gkrellflynn-0.6 (31 Oct 2002) + + 31 Oct 2002; Seemant Kulleen <seemant@gentoo.org> gkrellflynn-0.6.ebuild + ChangeLog files/digest-gkrellflynn-0.6 : + + A load monitor plugin for GKrellM1 and/or GKrellM2 which shows the Doom + guy's face. Ebuild submitted by: matthieu.codron@laposte.net (Matthieu + Codron) in bug #9224 diff --git a/x11-plugins/gkrellflynn/files/digest-gkrellflynn-0.6 b/x11-plugins/gkrellflynn/files/digest-gkrellflynn-0.6 new file mode 100644 index 000000000000..d505e67c47a3 --- /dev/null +++ b/x11-plugins/gkrellflynn/files/digest-gkrellflynn-0.6 @@ -0,0 +1 @@ +MD5 6e5101d79861ca2831f7ee0a87dca2c9 gkrellflynn-0.6.tar.gz 25613 diff --git a/x11-plugins/gkrellflynn/gkrellflynn-0.6.ebuild b/x11-plugins/gkrellflynn/gkrellflynn-0.6.ebuild new file mode 100644 index 000000000000..edb2f43b0782 --- /dev/null +++ b/x11-plugins/gkrellflynn/gkrellflynn-0.6.ebuild @@ -0,0 +1,39 @@ +# Copyright 2002, Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellflynn/gkrellflynn-0.6.ebuild,v 1.1 2002/10/31 14:07:32 seemant Exp $ + +HOMEPAGE="http://horus.comlab.uni-rostock.de/flynn/" +SRC_URI="http://horus.comlab.uni-rostock.de/flynn/${P}.tar.gz" +DESCRIPTION="A funny GKrellM (1 or 2) load monitor (for Doom(tm) fans)" + +DEPEND="app-admin/gkrellm" + +src_compile() { + + if [ -f /usr/bin/gkrellm ] + then + make gkrellm + fi + + if [ -f /usr/bin/gkrellm2 ] + then + make gkrellm2 + fi +} + +src_install() { + + if [ -f /usr/bin/gkrellm ] + then + exeinto /usr/lib/gkrellm/plugins + doexe gkrellflynn.so + fi + + if [ -f /usr/bin/gkrellm2 ] + then + exeinto /usr/lib/gkrellm2/plugins ; + doexe gkrellflynn.so + fi + + dodoc INSTALL Changelog README COPYING AUTHORS +} |