diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-05-24 06:27:42 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-05-24 06:27:42 +0000 |
commit | 7dd178947d0aced2bb25965e8d73c0da93458f02 (patch) | |
tree | 52b767806ceeae6e84c89d54d033ceb770405e69 /x11-misc | |
parent | New version update. #2758 (diff) | |
download | gentoo-2-7dd178947d0aced2bb25965e8d73c0da93458f02.tar.gz gentoo-2-7dd178947d0aced2bb25965e8d73c0da93458f02.tar.bz2 gentoo-2-7dd178947d0aced2bb25965e8d73c0da93458f02.zip |
New Package. #2753
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/gkleds/ChangeLog | 13 | ||||
-rw-r--r-- | x11-misc/gkleds/files/digest-gkleds-0.6.1 | 1 | ||||
-rw-r--r-- | x11-misc/gkleds/gkleds-0.6.1.ebuild | 21 |
3 files changed, 35 insertions, 0 deletions
diff --git a/x11-misc/gkleds/ChangeLog b/x11-misc/gkleds/ChangeLog new file mode 100644 index 000000000000..5e3cf49bd9ba --- /dev/null +++ b/x11-misc/gkleds/ChangeLog @@ -0,0 +1,13 @@ +# ChangeLog for x11-misc/gkleds +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/x11-misc/gkleds/ChangeLog,v 1.1 2002/05/24 06:27:42 rphillips Exp $ + +*gkleds-0.6.1 (22 May 2002) + + 22 May 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. diff --git a/x11-misc/gkleds/files/digest-gkleds-0.6.1 b/x11-misc/gkleds/files/digest-gkleds-0.6.1 new file mode 100644 index 000000000000..b5ee9c0bf2ed --- /dev/null +++ b/x11-misc/gkleds/files/digest-gkleds-0.6.1 @@ -0,0 +1 @@ +MD5 e4d78d16ea211d63988811e56f3c42e8 gkleds-0.6.1.tar.gz 21063 diff --git a/x11-misc/gkleds/gkleds-0.6.1.ebuild b/x11-misc/gkleds/gkleds-0.6.1.ebuild new file mode 100644 index 000000000000..6fca545e1d1f --- /dev/null +++ b/x11-misc/gkleds/gkleds-0.6.1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Written by Erik Grinaker <erikg@wired-networks.net> +# $Header: /var/cvsroot/gentoo-x86/x11-misc/gkleds/gkleds-0.6.1.ebuild,v 1.1 2002/05/24 06:27:42 rphillips Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Gkrellm plugin for monitoring keyboard LEDs" +SRC_URI="http://www.stud.ifi.uio.no/~oyvinha/gkleds/${P}.tar.gz" +HOMEPAGE="http://www.stud.ifi.uio.no/~oyvinha/gkleds/" +DEPEND="app-admin/gkrellm" + +src_compile() { + make || die +} + +src_install() { + mkdir -p ${D}/usr/lib/gkrellm/plugins || die + cp gkleds.so ${D}/usr/lib/gkrellm/plugins/ || die + + dodoc COPYING Changelog License TODO INSTALL README +} |