diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-10-18 05:20:27 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-10-18 05:20:27 +0000 |
commit | 4567498887f9bf6ff1e6c1dfb8571a63a465ba89 (patch) | |
tree | f4df4b07cd207fcbd711d29b094106e520b3873b /x11-plugins/wmcms | |
parent | Typo fix. Wouldn't fix it, but freeze prevents unmasking newest version... (diff) | |
download | historical-4567498887f9bf6ff1e6c1dfb8571a63a465ba89.tar.gz historical-4567498887f9bf6ff1e6c1dfb8571a63a465ba89.tar.bz2 historical-4567498887f9bf6ff1e6c1dfb8571a63a465ba89.zip |
Updated ebuild with IUSE and changed dependancy from docklib to
libdockapp
Diffstat (limited to 'x11-plugins/wmcms')
-rw-r--r-- | x11-plugins/wmcms/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/wmcms/wmcms-0.3.5.ebuild | 12 |
2 files changed, 14 insertions, 5 deletions
diff --git a/x11-plugins/wmcms/ChangeLog b/x11-plugins/wmcms/ChangeLog index ec1fa7b06684..f597e5b5f79b 100644 --- a/x11-plugins/wmcms/ChangeLog +++ b/x11-plugins/wmcms/ChangeLog @@ -1,15 +1,16 @@ # ChangeLog for x11-plugins/wmcms # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmcms/ChangeLog,v 1.1 2002/08/30 07:44:13 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmcms/ChangeLog,v 1.2 2002/10/18 05:20:27 raker Exp $ *wmcms-0.3.5 (1 Feb 2002) - 29 Aug 2002; Seemant Kulleen <seemant@gentoo.org> * : + Oct 18 2002; Nick Hadaway <raker@gentoo.org> wmcms-0.3.5.ebuild : + Added IUSE and updated dependancy from docklib to libdockapp. + 29 Aug 2002; Seemant Kulleen <seemant@gentoo.org> * : Relocated to x11-plugins 1 Feb 2002; G.Bevin <gbevin@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 diff --git a/x11-plugins/wmcms/wmcms-0.3.5.ebuild b/x11-plugins/wmcms/wmcms-0.3.5.ebuild index 5d57f4cb251b..be9f2c9bbd0a 100644 --- a/x11-plugins/wmcms/wmcms-0.3.5.ebuild +++ b/x11-plugins/wmcms/wmcms-0.3.5.ebuild @@ -1,22 +1,30 @@ # Copyright (c) Vitaly Kushneriuk # Distributed under the terms of the GNU General Public License, v2. -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmcms/wmcms-0.3.5.ebuild,v 1.1 2002/08/30 07:44:13 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmcms/wmcms-0.3.5.ebuild,v 1.2 2002/10/18 05:20:27 raker Exp $ + +IUSE="" S=${WORKDIR}/${P} + DESCRIPTION="WindowMaker CPU and Memory Usage Monitor Dock App." SRC_URI="http://orbita.starmedia.com/~neofpo/files/${P}.tar.bz2" HOMEPAGE="http://orbita.starmedia.com/~neofpo/wmcms.html" -DEPEND=">=x11-libs/docklib-0.2" +DEPEND="x11-libs/libdockapp" +RDEPEND="${DEPEND}" SLOT="0" LICENSE="GPL-2" KEYWORDS="x86 sparc sparc64" src_compile() { + make || die + } src_install () { + dobin wmcms + } |