diff options
author | Brandon Low <lostlogic@gentoo.org> | 2002-11-16 17:01:39 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2002-11-16 17:01:39 +0000 |
commit | 09ceb4aa203071fbcc7231fd5980e05be6ee7197 (patch) | |
tree | e665190e7004a25e76ed40337da2f53c04a1023b /sys-apps/procps | |
parent | version bump (diff) | |
download | gentoo-2-09ceb4aa203071fbcc7231fd5980e05be6ee7197.tar.gz gentoo-2-09ceb4aa203071fbcc7231fd5980e05be6ee7197.tar.bz2 gentoo-2-09ceb4aa203071fbcc7231fd5980e05be6ee7197.zip |
Switch to sf.net procps. please test
Diffstat (limited to 'sys-apps/procps')
-rw-r--r-- | sys-apps/procps/ChangeLog | 21 | ||||
-rw-r--r-- | sys-apps/procps/files/digest-procps-3.1.0 | 1 | ||||
-rw-r--r-- | sys-apps/procps/procps-3.1.0.ebuild | 46 |
3 files changed, 66 insertions, 2 deletions
diff --git a/sys-apps/procps/ChangeLog b/sys-apps/procps/ChangeLog index e2105b766ef3..46b4313c44dd 100644 --- a/sys-apps/procps/ChangeLog +++ b/sys-apps/procps/ChangeLog @@ -1,6 +1,23 @@ # 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.8 2002/11/06 04:26:16 jrray Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/procps/ChangeLog,v 1.9 2002/11/16 17:01:39 lostlogic Exp $ + +*procps-3.1.0 (16 Nov 2002) + + 16 Nov 2002; Brandon Low <lostlogic@gentoo.org> procps-3.1.0.ebuild : + + Well this should be an interesting experiment. I'm putting into + unstable the most recent procps from the sf.net procps project. This + procps tree has some very nice new features, and SHOULD actually be + more stable than the 2.0.X tree we were using which was maintained by + Rik Van Riel. The reason we waited until now for this move was that + some of the features of the gentoo-sources and development-sources + kernels weren't supported by this procps, HOPEFULLY the sf.net project + will continue from here on to keep up with support for the latest + kernel features AND remainthe more stable tree. + + Of course I also did my usual round of ebuild cleanups that goes + with a major version bump. Enjoy. 05 Nov 2002; J Robert Ray <jrray@gentoo.org> procps-2.0.10-r1.ebuild : Combine both sed calls into one, avoiding attempt to overwrite 0444 @@ -12,7 +29,7 @@ Added einfo about threads default behavior thanks to j2ee. - 31 Oct 2002; Brandon Low <lostlogic@gentoo.org> procps-2.0.10.ebuild : + 31 Oct 2002; Brandon Low <lostlogic@gentoo.org> procps-2.0.10-r1.ebuild : Fix /lib/libproc.so symlink. diff --git a/sys-apps/procps/files/digest-procps-3.1.0 b/sys-apps/procps/files/digest-procps-3.1.0 new file mode 100644 index 000000000000..283002a53c4f --- /dev/null +++ b/sys-apps/procps/files/digest-procps-3.1.0 @@ -0,0 +1 @@ +MD5 118e8f52403ce7fbc045bbc9ee5ae8f9 procps-3.1.0.tar.gz 228313 diff --git a/sys-apps/procps/procps-3.1.0.ebuild b/sys-apps/procps/procps-3.1.0.ebuild new file mode 100644 index 000000000000..263767756e0e --- /dev/null +++ b/sys-apps/procps/procps-3.1.0.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.0.ebuild,v 1.1 2002/11/16 17:01:39 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 ~sparc64 ~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" +} |