diff options
author | Rob Holland <robh@gentoo.org> | 2003-06-06 22:52:45 +0000 |
---|---|---|
committer | Rob Holland <robh@gentoo.org> | 2003-06-06 22:52:45 +0000 |
commit | 0df86c2c8c4d28b9d5fee931c5b0ac4a503f0af7 (patch) | |
tree | e67c77246066b1c73161ae634115558e9c6fe7c7 /x11-plugins/wmupmon | |
parent | Initial version. Thanks to: Beowulf for submitting the ebuild and Justin Spad... (diff) | |
download | gentoo-2-0df86c2c8c4d28b9d5fee931c5b0ac4a503f0af7.tar.gz gentoo-2-0df86c2c8c4d28b9d5fee931c5b0ac4a503f0af7.tar.bz2 gentoo-2-0df86c2c8c4d28b9d5fee931c5b0ac4a503f0af7.zip |
Initial version. Thanks to: Beowulf for submitting the ebuild and Justin Spadea for adjusting the packaging so it would work on gentoo. Closes #21926
Diffstat (limited to 'x11-plugins/wmupmon')
-rw-r--r-- | x11-plugins/wmupmon/ChangeLog | 11 | ||||
-rw-r--r-- | x11-plugins/wmupmon/Manifest | 4 | ||||
-rw-r--r-- | x11-plugins/wmupmon/files/digest-wmupmon-0.1.1a | 1 | ||||
-rw-r--r-- | x11-plugins/wmupmon/wmupmon-0.1.1a.ebuild | 34 |
4 files changed, 48 insertions, 2 deletions
diff --git a/x11-plugins/wmupmon/ChangeLog b/x11-plugins/wmupmon/ChangeLog new file mode 100644 index 000000000000..282aa6400181 --- /dev/null +++ b/x11-plugins/wmupmon/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for x11-plugins/wmupmon +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmupmon/ChangeLog,v 1.1 2003/06/06 22:52:39 robh Exp $ + +*wmupmon-0.1.1a (06 Jun 2003) + + 06 Jun 2003; robh <robh@gentoo.org> wmupmon-0.1.1a.ebuild: + Initial version. Thanks to: Beowulf for submitting the ebuild and + Justin Spadea for adjusting the packaging so it would work on gentoo. + Closes #21926 + diff --git a/x11-plugins/wmupmon/Manifest b/x11-plugins/wmupmon/Manifest index 9d5f0f1a0d7b..8b39dca561ee 100644 --- a/x11-plugins/wmupmon/Manifest +++ b/x11-plugins/wmupmon/Manifest @@ -1,3 +1,3 @@ -MD5 6ddcab1ca9ce984bc88890936eddd753 ChangeLog 377 -MD5 da941551beadd084deaa1dd8303f3430 wmupmon-0.1.1a.ebuild 826 +MD5 5cd5dd3b4363c2b4d21eaf35486121e9 ChangeLog 467 +MD5 b3428b9d153df7fba3b912fe78ef61be wmupmon-0.1.1a.ebuild 928 MD5 b610db91de3c6cdf44fa50701b321445 files/digest-wmupmon-0.1.1a 67 diff --git a/x11-plugins/wmupmon/files/digest-wmupmon-0.1.1a b/x11-plugins/wmupmon/files/digest-wmupmon-0.1.1a new file mode 100644 index 000000000000..62f088f3a1c5 --- /dev/null +++ b/x11-plugins/wmupmon/files/digest-wmupmon-0.1.1a @@ -0,0 +1 @@ +MD5 73b420353b2055947839e90228e83a5f wmupmon-0.1.1a.tar.bz2 110788 diff --git a/x11-plugins/wmupmon/wmupmon-0.1.1a.ebuild b/x11-plugins/wmupmon/wmupmon-0.1.1a.ebuild new file mode 100644 index 000000000000..cf6381706a4b --- /dev/null +++ b/x11-plugins/wmupmon/wmupmon-0.1.1a.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmupmon/wmupmon-0.1.1a.ebuild,v 1.1 2003/06/06 22:52:39 robh Exp $ + +S=${WORKDIR}/${P} + +DESCRIPTION="wmUpMon is a program to monitor your Uptime" +HOMEPAGE="http://jzs.mine.nu/projects/index.php?project=wmupmon" +SRC_URI="http://jzs.mine.nu/projects/downloads/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +IUSE="" + +DEPEND="sys-devel/automake + sys-devel/autoconf + virtual/x11 + media-libs/xpm" + +src_compile() { + + # This is needed specifically for depcomp, which is necessary for + # building wmupmon, but isn't included -- Is there a better way? + #cp ${FILESDIR}/depcomp . + econf || die "configure failed" + + emake || die "parallel make failed" +} + +src_install() { + einstall || die "make install failed" + dodoc AUTHORS COPYING INSTALL README THANKS ChangeLog +} |