diff options
-rw-r--r-- | sys-process/iotop/ChangeLog | 7 | ||||
-rw-r--r-- | sys-process/iotop/iotop-0.3.1.ebuild | 24 |
2 files changed, 30 insertions, 1 deletions
diff --git a/sys-process/iotop/ChangeLog b/sys-process/iotop/ChangeLog index 0ec7313a8df8..b7efa170e0f9 100644 --- a/sys-process/iotop/ChangeLog +++ b/sys-process/iotop/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-process/iotop # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/iotop/ChangeLog,v 1.14 2009/07/13 14:54:54 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/iotop/ChangeLog,v 1.15 2009/07/23 03:00:16 darkside Exp $ + +*iotop-0.3.1 (23 Jul 2009) + + 23 Jul 2009; Jeremy Olexa <darkside@gentoo.org> +iotop-0.3.1.ebuild: + Bug fix version bump, bug 278401 13 Jul 2009; Joseph Jezak <josejx@gentoo.org> iotop-0.2.1.ebuild, iotop-0.3.ebuild: diff --git a/sys-process/iotop/iotop-0.3.1.ebuild b/sys-process/iotop/iotop-0.3.1.ebuild new file mode 100644 index 000000000000..d039c1631cc2 --- /dev/null +++ b/sys-process/iotop/iotop-0.3.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-process/iotop/iotop-0.3.1.ebuild,v 1.1 2009/07/23 03:00:16 darkside Exp $ + +EAPI=2 + +inherit distutils linux-info + +DESCRIPTION="Iotop has a top-like UI used to show which process is using the I/O." +HOMEPAGE="http://guichaz.free.fr/iotop/" +SRC_URI="${HOMEPAGE}/files/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86" +IUSE="" +RDEPEND=">=dev-lang/python-2.5[ncurses]" +DEPEND="${RDEPEND}" +CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASKSTATS" +DOCS="THANKS" + +src_install() { + distutils_src_install + doman iotop.1 +} |