diff options
author | Michele Noberasco <s4t4n@gentoo.org> | 2004-07-08 13:02:17 +0000 |
---|---|---|
committer | Michele Noberasco <s4t4n@gentoo.org> | 2004-07-08 13:02:17 +0000 |
commit | 8ebc45846bca85a8f5cec87fca4f7584d797e00e (patch) | |
tree | 022607047c7b606e8c8991d52d9cd01993c89f95 /x11-plugins/wmpiki | |
parent | Initial import of x11-plugins/wmacpimon, version 0.2.1 (Manifest recommit) (diff) | |
download | gentoo-2-8ebc45846bca85a8f5cec87fca4f7584d797e00e.tar.gz gentoo-2-8ebc45846bca85a8f5cec87fca4f7584d797e00e.tar.bz2 gentoo-2-8ebc45846bca85a8f5cec87fca4f7584d797e00e.zip |
Initial import of x11-plugins/wmpiki, version 0.2.1
Diffstat (limited to 'x11-plugins/wmpiki')
-rw-r--r-- | x11-plugins/wmpiki/ChangeLog | 8 | ||||
-rw-r--r-- | x11-plugins/wmpiki/Manifest | 4 | ||||
-rw-r--r-- | x11-plugins/wmpiki/files/digest-wmpiki-0.2.1 | 1 | ||||
-rw-r--r-- | x11-plugins/wmpiki/metadata.xml | 12 | ||||
-rw-r--r-- | x11-plugins/wmpiki/wmpiki-0.2.1.ebuild | 34 |
5 files changed, 59 insertions, 0 deletions
diff --git a/x11-plugins/wmpiki/ChangeLog b/x11-plugins/wmpiki/ChangeLog new file mode 100644 index 000000000000..e198bcff4247 --- /dev/null +++ b/x11-plugins/wmpiki/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for x11-plugins/wmpiki +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmpiki/ChangeLog,v 1.1 2004/07/08 13:02:17 s4t4n Exp $ + +*wmpiki-0.2.1 (08 Jul 2004) + + 08 Jul 2004; Michele Noberasco <s4t4n@gentoo.org> wmpiki-0.2.1.ebuild: + Initial import. diff --git a/x11-plugins/wmpiki/Manifest b/x11-plugins/wmpiki/Manifest new file mode 100644 index 000000000000..916537492d1b --- /dev/null +++ b/x11-plugins/wmpiki/Manifest @@ -0,0 +1,4 @@ +MD5 1c103e9dff3580d2f97b1761a84595b2 wmpiki-0.2.1.ebuild 768 +MD5 b021269637192e8801b4d917a9a0e591 ChangeLog 239 +MD5 a6bb65fb883aa8323b6bfd6287e3f062 metadata.xml 528 +MD5 79b24bd4ef507d39a20ccab25256ce72 files/digest-wmpiki-0.2.1 63 diff --git a/x11-plugins/wmpiki/files/digest-wmpiki-0.2.1 b/x11-plugins/wmpiki/files/digest-wmpiki-0.2.1 new file mode 100644 index 000000000000..b5d60c2e6517 --- /dev/null +++ b/x11-plugins/wmpiki/files/digest-wmpiki-0.2.1 @@ -0,0 +1 @@ +MD5 f76d66a4856746e65a2607b7325d1cf0 wmpiki-0.2.1.tar.gz 18518 diff --git a/x11-plugins/wmpiki/metadata.xml b/x11-plugins/wmpiki/metadata.xml new file mode 100644 index 000000000000..30dd4bcea4fb --- /dev/null +++ b/x11-plugins/wmpiki/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>desktop-dock</herd> +<longdescription> +Wmpiki is a dockapp which checks and displays small leds +for indicate hosts activity (up to eight hosts). The configuration +file is ~/.clay/wmpiki, so use text editor to change settings. +The method to determine hosts is very primitive and auwful, but it works ;-) +('ping output + grep' - if you can do it better please do). +</longdescription> +</pkgmetadata> diff --git a/x11-plugins/wmpiki/wmpiki-0.2.1.ebuild b/x11-plugins/wmpiki/wmpiki-0.2.1.ebuild new file mode 100644 index 000000000000..4e55b3602373 --- /dev/null +++ b/x11-plugins/wmpiki/wmpiki-0.2.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmpiki/wmpiki-0.2.1.ebuild,v 1.1 2004/07/08 13:02:17 s4t4n Exp $ + +inherit eutils + +IUSE="" + +DESCRIPTION="Wmpiki is a dockapp which checks and displays small leds for indicate hosts activity." +HOMEPAGE="http://clay.ll.pl/projects.html#dockapps" +SRC_URI="http://clay.ll.pl/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="virtual/x11" + +src_compile() +{ + make CFLAGS="${CFLAGS}"|| die "Compilation failed" +} + +src_install() +{ + dobin wmpiki + dodoc AUTHORS ChangeLog README config.example +} + +pkg_postinst() +{ + einfo "Don't forget to edit wmpiki configuration file:" + einfo "~/.clay/wmpiki" +} |