summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-apps/procps/procps-2.0.6.ebuild')
-rw-r--r--sys-apps/procps/procps-2.0.6.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/sys-apps/procps/procps-2.0.6.ebuild b/sys-apps/procps/procps-2.0.6.ebuild
deleted file mode 100644
index 60d5076b4109..000000000000
--- a/sys-apps/procps/procps-2.0.6.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Achim Gottinger <achim@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/procps/procps-2.0.6.ebuild,v 1.1 2001/02/19 17:43:15 achim Exp $
-
-A=${P}.tar.gz
-S=${WORKDIR}/${P}
-DESCRIPTION="Standard informational utilities and process-handling tools"
-SRC_URI="ftp://people.redhat.com/johnsonm/procps/${A}"
-DEPEND=">=sys-libs/ncurses-5.2-r2
- sys-libs/getext"
-DEPEND=">=sys-libs/ncurses-5.2-r2"
-
-src_unpack() {
-
- unpack ${A}
-
- cd ${S}
- patch -p0 < ${FILESDIR}/${P}.dif
-
- mv Makefile Makefile.orig
- sed -e "s/-O3/${CFLAGS}/" -e 's/all: config/all: /' \
- -e "s:--strip::" Makefile.orig > Makefile
-
- cd ${S}/ps
- mv Makefile Makefile.orig
- sed -e "s/-O2/${CFLAGS}/" -e "s:--strip::" Makefile.orig > Makefile
-
- cd ${S}/proc
- mv Makefile Makefile.orig
- sed -e "s/-O2/${CFLAGS}/" -e "s:--strip::" Makefile.orig > Makefile
-
-}
-
-src_compile() {
- try make ${MAKEOPTS}
-}
-
-src_install() {
-
- dodir /usr/bin
- dodir /sbin
- dodir /usr/X11R6/bin
- dodir /usr/share/man/man{1,5,8}
- dodir /lib
- dodir /bin
- try make DESTDIR=${D} MANDIR=/usr/share/man install
-
- preplib /
- dodoc BUGS COPYING COPYING.LIB NEWS TODO
- docinto proc
- dodoc proc/COPYING
- docinto ps
- dodoc ps/COPYING ps/HACKING
-}
-
-
-