diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-02-13 13:54:58 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-02-13 13:54:58 +0000 |
commit | 974f95c3fed3fbae9d095e673ecea1ac1f211a4e (patch) | |
tree | 6766588b2e311a8806cc1367b761a602d190dc13 /x11-plugins/i8krellm | |
parent | Update Copyright years (diff) | |
download | historical-974f95c3fed3fbae9d095e673ecea1ac1f211a4e.tar.gz historical-974f95c3fed3fbae9d095e673ecea1ac1f211a4e.tar.bz2 historical-974f95c3fed3fbae9d095e673ecea1ac1f211a4e.zip |
version bump
Diffstat (limited to 'x11-plugins/i8krellm')
-rw-r--r-- | x11-plugins/i8krellm/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/i8krellm/files/digest-i8krellm-2.3 | 1 | ||||
-rw-r--r-- | x11-plugins/i8krellm/i8krellm-2.3.ebuild | 49 |
3 files changed, 56 insertions, 1 deletions
diff --git a/x11-plugins/i8krellm/ChangeLog b/x11-plugins/i8krellm/ChangeLog index b84b8ca6bf4a..f64d4ec357fd 100644 --- a/x11-plugins/i8krellm/ChangeLog +++ b/x11-plugins/i8krellm/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-plugins/i8krellm # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/i8krellm/ChangeLog,v 1.1 2003/02/12 10:56:18 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/i8krellm/ChangeLog,v 1.2 2003/02/13 13:54:58 seemant Exp $ + +*i8krellm-2.3 (13 Feb 2003) + + 13 Feb 2003; Seemant Kulleen <seemant@gentoo.org> i8krellm-2.3.ebuild files/digest-i8krellm-2.3 : + version bump thanks to Christoph Hornung <hornung@cs.tu-berlin.de> in bug #15627 *i8krellm-2.2 (12 Feb 2003) diff --git a/x11-plugins/i8krellm/files/digest-i8krellm-2.3 b/x11-plugins/i8krellm/files/digest-i8krellm-2.3 new file mode 100644 index 000000000000..62344ee2732f --- /dev/null +++ b/x11-plugins/i8krellm/files/digest-i8krellm-2.3 @@ -0,0 +1 @@ +MD5 7f75eb6e7019317b00deac0bf2d2e93e i8krellm-2.3.tar.gz 14714 diff --git a/x11-plugins/i8krellm/i8krellm-2.3.ebuild b/x11-plugins/i8krellm/i8krellm-2.3.ebuild new file mode 100644 index 000000000000..74cb98ed3d7e --- /dev/null +++ b/x11-plugins/i8krellm/i8krellm-2.3.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/i8krellm/i8krellm-2.3.ebuild,v 1.1 2003/02/13 13:54:58 seemant Exp $ + +IUSE="gtk2" + +S=${WORKDIR}/${P} +DESCRIPTION="GKrellM2 Plugin for the Dell Inspiron and Latitude notebooks" +SRC_URI="http://www.coding-zone.com/${P}.tar.gz" +HOMEPAGE="http://www.coding-zone.com/i8krellm.phtml" + +SLOT="0" +LICENSE="GPL" +KEYWORDS="~x86 -ppc -sparc -alpha -mips -hppa" + +DEPEND="app-admin/gkrellm + x11-libs/gtk+ + gtk2? ( =x11-libs/gtk+-2* + =app-admin/gkrellm-2* ) + >=sys-apps/i8kutils-1.5" + +src_compile() { + + if [ -f /usr/bin/gkrellm ] + then + emake || die + fi + + if [ -f /usr/bin/gkrellm2 ] + then + emake i8krellm2 || die + fi +} + +src_install () { + + if [ -f /usr/bin/gkrellm ] + then + insinto /usr/lib/gkrellm/plugins + doins i8krellm.so + fi + + if [ -f /usr/bin/gkrellm2 ] + then + insinto /usr/lib/gkrellm2/plugins + doins i8krellm2.so + fi + dodoc README Changelog AUTHORS +} |