diff options
Diffstat (limited to 'sys-apps/procps/procps-3.1.12.ebuild')
-rw-r--r-- | sys-apps/procps/procps-3.1.12.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/sys-apps/procps/procps-3.1.12.ebuild b/sys-apps/procps/procps-3.1.12.ebuild new file mode 100644 index 000000000000..9b2f660a2bcb --- /dev/null +++ b/sys-apps/procps/procps-3.1.12.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2003 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.12.ebuild,v 1.5 2003/12/07 19:10:10 seemant Exp $ + +IUSE="selinux" + +SELINUX_PATCH="procps-3.1.12-selinux.diff.bz2" + +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/" + +inherit flag-o-matic + +replace-flags "-O3" "-O2" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 ~amd64 ~ppc ~sparc ~alpha ~hppa ~arm ~mips ~ia64" + +RDEPEND=">=sys-libs/ncurses-5.2-r2" +DEPEND="${RDEPEND} + >=sys-devel/gettext-0.10.35 + selinux? ( sys-libs/libselinux )" + +src_unpack() { + unpack ${A} + cd ${S} + + use selinux && epatch ${FILESDIR}/${SELINUX_PATCH} + + # Use the CFLAGS from /etc/make.conf. + for file in `find . -iname "Makefile"`;do + sed -i "s:-O2:${CFLAGS}:" ${file} + done +} + +src_compile() { + emake || die +} + +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" +} |