diff options
author | Brandon Low <lostlogic@gentoo.org> | 2002-12-13 01:12:55 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2002-12-13 01:12:55 +0000 |
commit | 5e56beb8a0da4d22e99720a5627c0cb416167216 (patch) | |
tree | d5c1e9116ba27d79c275c0fc9e5048f652f04be7 /sys-apps/procps | |
parent | version bump (diff) | |
download | historical-5e56beb8a0da4d22e99720a5627c0cb416167216.tar.gz historical-5e56beb8a0da4d22e99720a5627c0cb416167216.tar.bz2 historical-5e56beb8a0da4d22e99720a5627c0cb416167216.zip |
procps is like a really busy package and stuff )
Diffstat (limited to 'sys-apps/procps')
-rw-r--r-- | sys-apps/procps/ChangeLog | 9 | ||||
-rw-r--r-- | sys-apps/procps/files/digest-procps-3.1.3 | 1 | ||||
-rw-r--r-- | sys-apps/procps/procps-3.1.3.ebuild | 46 |
3 files changed, 55 insertions, 1 deletions
diff --git a/sys-apps/procps/ChangeLog b/sys-apps/procps/ChangeLog index 6b79324adaaf..adb198f736df 100644 --- a/sys-apps/procps/ChangeLog +++ b/sys-apps/procps/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sys-apps/procps # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/sys-apps/procps/ChangeLog,v 1.13 2002/12/12 18:21:04 lostlogic Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/procps/ChangeLog,v 1.14 2002/12/13 01:12:55 lostlogic Exp $ + +*procps-3.1.3 (12 Dec 2002) + + 12 Dec 2002; Brandon Low <lostlogic@gentoo.org> procps-3.1.3.ebuild : + + You get a big shrug here, Albert doesn't seem to be having the top + issues some gentoo-ers are, so I'll e-mail him about them later. *procps-2.0.11 (12 Dec 2002) diff --git a/sys-apps/procps/files/digest-procps-3.1.3 b/sys-apps/procps/files/digest-procps-3.1.3 new file mode 100644 index 000000000000..4c10196dff95 --- /dev/null +++ b/sys-apps/procps/files/digest-procps-3.1.3 @@ -0,0 +1 @@ +MD5 87011453f8fca28e2e15a2a6f6ba8a9d procps-3.1.3.tar.gz 238545 diff --git a/sys-apps/procps/procps-3.1.3.ebuild b/sys-apps/procps/procps-3.1.3.ebuild new file mode 100644 index 000000000000..956c41c49e9b --- /dev/null +++ b/sys-apps/procps/procps-3.1.3.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/procps/procps-3.1.3.ebuild,v 1.1 2002/12/13 01:12:55 lostlogic Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Standard informational utilities and process-handling tools -ps top tload snice vmstat free w watch uptime pmap skill pkill kill pgrep sysctl" +SRC_URI="http://${PN}.sf.net/${P}.tar.gz" +HOMEPAGE="http://procps.sourceforge.net/" + +RDEPEND=">=sys-libs/ncurses-5.2-r2" +DEPEND="${RDEPEND} >=sys-devel/gettext-0.10.35" + +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~alpha" +SLOT="0" + +src_unpack() { + unpack ${A} + cd ${S} + + # Use the CFLAGS from /etc/make.conf. + for file in `find . -iname "Makefile"`;do + mv ${file} ${file}.orig + sed -e "s/-O2/${CFLAGS}/" ${file}.orig > ${file} + done +} + +src_compile() { + emake +} + +src_install() { + einstall DESTDIR="${D}"|| die + + dodoc BUGS COPYING COPYING.LIB NEWS TODO + docinto proc + dodoc proc/COPYING + docinto ps + dodoc ps/COPYING ps/HACKING +} + +pkg_postinst() { + einfo "NOTE: By default \"ps\" and \"top\" no longer" + einfo "show threads. You can use the '-m' flag" + einfo "in ps or the 'H' key in top to show them" +} |