summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-12-22 00:13:30 +0000
committerMike Frysinger <vapier@gentoo.org>2005-12-22 00:13:30 +0000
commitbed317718c28f912dc56305528584fccb756ac6d (patch)
treebe29e4705242af68ce2c27b6c5efe9700839570f /sys-process
parentUpdate to use the official readline patch. (diff)
downloadhistorical-bed317718c28f912dc56305528584fccb756ac6d.tar.gz
historical-bed317718c28f912dc56305528584fccb756ac6d.tar.bz2
historical-bed317718c28f912dc56305528584fccb756ac6d.zip
old
Diffstat (limited to 'sys-process')
-rw-r--r--sys-process/procps/files/digest-procps-3.2.3-r11
-rw-r--r--sys-process/procps/procps-3.2.3-r1.ebuild56
2 files changed, 0 insertions, 57 deletions
diff --git a/sys-process/procps/files/digest-procps-3.2.3-r1 b/sys-process/procps/files/digest-procps-3.2.3-r1
deleted file mode 100644
index 175dcab7099b..000000000000
--- a/sys-process/procps/files/digest-procps-3.2.3-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 5389800bf413e70365d982bac9438d31 procps-3.2.3.tar.gz 271136
diff --git a/sys-process/procps/procps-3.2.3-r1.ebuild b/sys-process/procps/procps-3.2.3-r1.ebuild
deleted file mode 100644
index 48ab8ce93444..000000000000
--- a/sys-process/procps/procps-3.2.3-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/procps/procps-3.2.3-r1.ebuild,v 1.1 2005/03/03 16:53:14 ciaranm Exp $
-
-inherit flag-o-matic eutils
-
-DESCRIPTION="Standard informational utilities and process-handling tools"
-HOMEPAGE="http://procps.sourceforge.net/"
-SRC_URI="http://${PN}.sf.net/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86"
-IUSE=""
-
-RDEPEND=">=sys-libs/ncurses-5.2-r2"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- # Clean up the makefile
- # firstly we want to control stripping
- # and secondly these gcc flags have changed
- sed -i Makefile \
- -e '/install/s: --strip : :' \
- -e '/ALL_CFLAGS += $(call check_gcc,-fweb,)/d' \
- -e '/ALL_CFLAGS += $(call check_gcc,-Wstrict-aliasing=2,)/s,=2,,'
-
- # mips 2.4.23 headers (and 2.6.x) don't allow PAGE_SIZE to be defined in
- # userspace anymore, so this patch instructs procps to get the
- # value from sysconf().
- use mips && epatch ${FILESDIR}/${PN}-mips-define-pagesize.patch
-
-}
-
-src_compile() {
- replace-flags -O3 -O2
- unset NAME
- emake -e || die
-}
-
-src_install() {
- einstall -e DESTDIR="${D}"|| die
-
- insinto /usr/include/proc
- doins proc/*.h
-
- dodoc sysctl.conf BUGS NEWS TODO ps/HACKING
-}
-
-pkg_postinst() {
- einfo "NOTE: With NPTL \"ps\" and \"top\" no longer"
- einfo "show threads. You can use any of: -m m -L -T H"
- einfo "in ps or the H key in top to show them"
-}