diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2008-04-23 19:22:05 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2008-04-23 19:22:05 +0000 |
commit | 051fa62f80b3631cd67f4965f3ec03e61ae16399 (patch) | |
tree | 774fb1fdad2b639ca93e9118b5e9845fac2152d4 /sys-process/latencytop | |
parent | Initial import (diff) | |
download | gentoo-2-051fa62f80b3631cd67f4965f3ec03e61ae16399.tar.gz gentoo-2-051fa62f80b3631cd67f4965f3ec03e61ae16399.tar.bz2 gentoo-2-051fa62f80b3631cd67f4965f3ec03e61ae16399.zip |
add latencytop.block and man page
(Portage version: 2.1.5_rc6)
Diffstat (limited to 'sys-process/latencytop')
-rw-r--r-- | sys-process/latencytop/ChangeLog | 5 | ||||
-rw-r--r-- | sys-process/latencytop/latencytop-0.4.ebuild | 10 |
2 files changed, 11 insertions, 4 deletions
diff --git a/sys-process/latencytop/ChangeLog b/sys-process/latencytop/ChangeLog index 4f3f4872e0b8..101e7a98e76c 100644 --- a/sys-process/latencytop/ChangeLog +++ b/sys-process/latencytop/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-process/latencytop # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/latencytop/ChangeLog,v 1.3 2008/04/23 16:04:23 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/latencytop/ChangeLog,v 1.4 2008/04/23 19:22:05 cardoe Exp $ + + 23 Apr 2008; Doug Goldstein <cardoe@gentoo.org> latencytop-0.4.ebuild: + add latencytop.block and man page *latencytop-0.4 (23 Apr 2008) diff --git a/sys-process/latencytop/latencytop-0.4.ebuild b/sys-process/latencytop/latencytop-0.4.ebuild index 0c05fbb5f04a..76a82b915c9b 100644 --- a/sys-process/latencytop/latencytop-0.4.ebuild +++ b/sys-process/latencytop/latencytop-0.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/latencytop/latencytop-0.4.ebuild,v 1.1 2008/04/23 16:04:23 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/latencytop/latencytop-0.4.ebuild,v 1.2 2008/04/23 19:22:05 cardoe Exp $ inherit toolchain-funcs @@ -21,7 +21,10 @@ DEPEND="${RDEPEND} src_unpack() { unpack ${A} cd "${S}" - sed -i 's:latencytop.trans:/usr/share/misc/latencytop.trans:' latencytop.c || die + sed -e 's:latencytop.trans:/usr/share/misc/latencytop.trans:' \ + -e 's:/usr/share/latencytop:/usr/share/misc:' \ + -e 's:latencytop.block:/usr/share/misc/latencytop.block:' \ + -i latencytop.c || die } src_compile() { @@ -41,5 +44,6 @@ src_compile() { src_install() { dosbin latencytop || die insinto /usr/share/misc - doins latencytop.trans || die + doins latencytop.{trans,block} || die + doman latencytop.8 } |