diff options
author | 2002-02-10 09:37:25 +0000 | |
---|---|---|
committer | 2002-02-10 09:37:25 +0000 | |
commit | 397993dee327cf9fc7b1ed20576284eafd36a13d (patch) | |
tree | 62c260c56c81c4d32d70e130a776c12e36334197 /x11-misc | |
parent | Fixed to make use of CFLAGS. (diff) | |
download | gentoo-2-397993dee327cf9fc7b1ed20576284eafd36a13d.tar.gz gentoo-2-397993dee327cf9fc7b1ed20576284eafd36a13d.tar.bz2 gentoo-2-397993dee327cf9fc7b1ed20576284eafd36a13d.zip |
updated to use CFLAGS
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/wmmon/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/wmmon/files/digest-wmmon-1.0_beta2-r1 | 1 | ||||
-rw-r--r-- | x11-misc/wmmon/wmmon-1.0_beta2-r1.ebuild | 28 |
3 files changed, 36 insertions, 1 deletions
diff --git a/x11-misc/wmmon/ChangeLog b/x11-misc/wmmon/ChangeLog index 60befc1b58bb..6851893202d6 100644 --- a/x11-misc/wmmon/ChangeLog +++ b/x11-misc/wmmon/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-misc/wmmon # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/x11-misc/wmmon/ChangeLog,v 1.3 2002/02/07 13:13:00 vitaly Exp $ +# /space/gentoo/cvsroot/gentoo-x86/x11-misc/wmmon/ChangeLog,v 1.3 2002/02/07 13:13:00 vitaly Exp + +*wmmon-1.0_beta2-r1 (9-Feb-2002) + + 9 Feb 2002; Arcady Genkin <agenkin@thpoon.com> wmmon-1.0_beta2.ebuild : + + Fixed to make use of $CFLAGS. *wmmon-1.0_beta2 (7-Feb-2002) diff --git a/x11-misc/wmmon/files/digest-wmmon-1.0_beta2-r1 b/x11-misc/wmmon/files/digest-wmmon-1.0_beta2-r1 new file mode 100644 index 000000000000..aa0d5acf08e0 --- /dev/null +++ b/x11-misc/wmmon/files/digest-wmmon-1.0_beta2-r1 @@ -0,0 +1 @@ +MD5 1b8c780b8c24a6958c69330fef4171df wmmon-1_0b2.tar.gz 21589 diff --git a/x11-misc/wmmon/wmmon-1.0_beta2-r1.ebuild b/x11-misc/wmmon/wmmon-1.0_beta2-r1.ebuild new file mode 100644 index 000000000000..8caa0abe8c24 --- /dev/null +++ b/x11-misc/wmmon/wmmon-1.0_beta2-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Arcady Genkin <agenkin@thpoon.com> +# /space/gentoo/cvsroot/gentoo-x86/x11-misc/wmmon/wmmon-1.0_beta2.ebuild,v 1.1 2002/02/07 08:49:58 vitaly Exp +S="${WORKDIR}/wmmon.app" + +DESCRIPTION="Dockable system resources monitor applette for WindowMaker" + +WMMON_VERSION=1_0b2 +SRC_URI="http://rpig.dyndns.org/~anstinus/Linux/wmmon-${WMMON_VERSION}.tar.gz" +HOMEPAGE="http://www.bensinclair.com/dockapp/" +DEPEND="x11-base/xfree x11-wm/WindowMaker virtual/glibc" + +src_unpack() { + unpack "${A}" + cd "${S}/wmmon" + mv Makefile Makefile.orig + sed -e "s|-O2|${CFLAGS}|" Makefile.orig > Makefile +} + +src_compile() { + emake -C wmmon || die +} + +src_install () { + dobin wmmon/wmmon + dodoc BUGS CHANGES COPYING HINTS INSTALL README TODO +} |