summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-11-03 15:56:32 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-11-03 15:56:32 +0000
commit9de2faaaffe8bb9df1dd0c5a02c542135d51db4f (patch)
tree81bd431dcc5cf5625b77c54f73d0ab8b28d6398e /x11-misc
parentFHS compliance (diff)
downloadgentoo-2-9de2faaaffe8bb9df1dd0c5a02c542135d51db4f.tar.gz
gentoo-2-9de2faaaffe8bb9df1dd0c5a02c542135d51db4f.tar.bz2
gentoo-2-9de2faaaffe8bb9df1dd0c5a02c542135d51db4f.zip
small fix0rs
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/ascpu/ascpu-1.9.ebuild19
1 files changed, 9 insertions, 10 deletions
diff --git a/x11-misc/ascpu/ascpu-1.9.ebuild b/x11-misc/ascpu/ascpu-1.9.ebuild
index b4609b0ee54f..de01882e8229 100644
--- a/x11-misc/ascpu/ascpu-1.9.ebuild
+++ b/x11-misc/ascpu/ascpu-1.9.ebuild
@@ -1,36 +1,35 @@
# Copyright 2002 Dwight Schauer
# Distributed under the terms of the GNU General Public License, v2.
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/ascpu/ascpu-1.9.ebuild,v 1.2 2002/10/04 21:30:20 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/ascpu/ascpu-1.9.ebuild,v 1.3 2002/11/03 15:56:32 seemant Exp $
S=${WORKDIR}/${P}
DESCRIPTION="CPU statistics monitor utility for X Windows"
SRC_URI="http://www.tigr.net/afterstep/download/ascpu/${P}.tar.gz"
HOMEPAGE="http://www.tigr.net"
-DEPEND="sys-devel/gcc
- sys-apps/fileutils
- sys-devel/binutils
- virtual/glibc virtual/x11"
-LICENSE="GPL-2"
+
SLOT="0"
+LICENSE="GPL-2"
KEYWORDS="x86"
+DEPEND="virtual/x11"
+
src_unpack() {
unpack ${A}
cd ${S}
patch -p0 < ${FILESDIR}/${P}-gentoo.patch
-}
+
src_compile() {
econf || die
-# ./configure --prefix=${D}/usr || die "Configuration Failed"
emake || die "Make Failed"
}
src_install () {
- mkdir -p ${D}/usr/bin ${D}/usr/share/man/man1
+ dodir /usr/bin
+ dodir /usr/share/man/man1
+
make DESTDIR=${D} install || die
-# einstall || die
dodoc README INSTALL LICENSE
}