diff options
author | 2002-12-21 17:25:04 +0000 | |
---|---|---|
committer | 2002-12-21 17:25:04 +0000 | |
commit | 1ca9ba4f2993c001b06b92a2a14e9595d3badf87 (patch) | |
tree | fd78555ea53ae8058b03c67aab40dd8f57491b73 /sys-apps/procps | |
parent | A small fix for bug #12524. (diff) | |
download | historical-1ca9ba4f2993c001b06b92a2a14e9595d3badf87.tar.gz historical-1ca9ba4f2993c001b06b92a2a14e9595d3badf87.tar.bz2 historical-1ca9ba4f2993c001b06b92a2a14e9595d3badf87.zip |
bump
Diffstat (limited to 'sys-apps/procps')
-rw-r--r-- | sys-apps/procps/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/procps/files/digest-procps-3.1.5 | 1 | ||||
-rw-r--r-- | sys-apps/procps/procps-3.1.5.ebuild | 46 |
3 files changed, 54 insertions, 1 deletions
diff --git a/sys-apps/procps/ChangeLog b/sys-apps/procps/ChangeLog index 8a2fb4e75bf4..ee9cba2cd749 100644 --- a/sys-apps/procps/ChangeLog +++ b/sys-apps/procps/ChangeLog @@ -1,6 +1,12 @@ # 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.16 2002/12/15 08:49:45 lostlogic Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/procps/ChangeLog,v 1.17 2002/12/21 17:25:04 lostlogic Exp $ + +*procps-3.1.5 (21 Dec 2002) + + 21 Dec 2002; Brandon Low <lostlogic@gentoo.org> procps-3.1.5.ebuild : + + Upstream bump... *procps-3.1.4 (15 Dec 2002) diff --git a/sys-apps/procps/files/digest-procps-3.1.5 b/sys-apps/procps/files/digest-procps-3.1.5 new file mode 100644 index 000000000000..55bad1105d14 --- /dev/null +++ b/sys-apps/procps/files/digest-procps-3.1.5 @@ -0,0 +1 @@ +MD5 d37503aef6c001d9730dd012494a4d9a procps-3.1.5.tar.gz 237556 diff --git a/sys-apps/procps/procps-3.1.5.ebuild b/sys-apps/procps/procps-3.1.5.ebuild new file mode 100644 index 000000000000..5f61d2b40760 --- /dev/null +++ b/sys-apps/procps/procps-3.1.5.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.5.ebuild,v 1.1 2002/12/21 17:25:04 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" +} |