diff options
Diffstat (limited to 'x11-plugins/wmnetmon/wmnetmon-0.2.ebuild')
-rw-r--r-- | x11-plugins/wmnetmon/wmnetmon-0.2.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/x11-plugins/wmnetmon/wmnetmon-0.2.ebuild b/x11-plugins/wmnetmon/wmnetmon-0.2.ebuild new file mode 100644 index 000000000000..26c4cb755f4c --- /dev/null +++ b/x11-plugins/wmnetmon/wmnetmon-0.2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmnetmon/wmnetmon-0.2.ebuild,v 1.1 2003/11/02 02:39:04 pyrania Exp $ + +S=${WORKDIR}/${P}p5/ +DESCRIPTION="wmnetmon is a dockapp that monitors up to 40 hosts or services and can execute something there is a problem with any of them." +SRC_URI="http://www.linuks.mine.nu/dockapps/${P}p5.tar.gz" +HOMEPAGE="http://freshmeat.net/projects/wmnetmon/?topic_id=876" + +DEPEND="virtual/x11" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +src_compile() { + econf --prefix=${D}/usr/bin || die "Configure failed." + emake || die "Make failed" +} + +src_install () +{ + dobin wmnetmon + fowners root:root /usr/bin/wmnetmon + fperms 4755 /usr/bin/wmnetmon + dodoc README Changes wmnetmonrc +} + +pkg_postinst () +{ + ewarn + ewarn "Before starting up wmnetmon, you must create a .wmnetmonrc in your home folder." + ewarn "Look at the sample wmnetmonrc.gz file in /usr/share/doc/${P}/." + ewarn +} |