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 | 579746d2fd7083782877a76f20665016a6497817 (patch) | |
tree | 98a8330f3b4f030c0ed948e35e3137f04fcd9df4 /x11-plugins/wmcms/wmcms-0.3.5.ebuild | |
parent | Typo fix. Wouldn't fix it, but freeze prevents unmasking newest version... (diff) | |
download | gentoo-2-579746d2fd7083782877a76f20665016a6497817.tar.gz gentoo-2-579746d2fd7083782877a76f20665016a6497817.tar.bz2 gentoo-2-579746d2fd7083782877a76f20665016a6497817.zip |
Updated ebuild with IUSE and changed dependancy from docklib to
libdockapp
Diffstat (limited to 'x11-plugins/wmcms/wmcms-0.3.5.ebuild')
-rw-r--r-- | x11-plugins/wmcms/wmcms-0.3.5.ebuild | 12 |
1 files changed, 10 insertions, 2 deletions
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 + } |