diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-01-24 05:54:03 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-01-24 05:54:03 +0000 |
commit | acc627a6847643de216940b47453805c7dad8878 (patch) | |
tree | 76863fa843d0bfe1d20e079683d28bdf5ad7a308 /sys-process | |
parent | add patch from Tanktalus@gmail.com to avoid crash on extreme idle time (bug #... (diff) | |
download | historical-acc627a6847643de216940b47453805c7dad8878.tar.gz historical-acc627a6847643de216940b47453805c7dad8878.tar.bz2 historical-acc627a6847643de216940b47453805c7dad8878.zip |
old
Diffstat (limited to 'sys-process')
-rw-r--r-- | sys-process/latencytop/files/digest-latencytop-0.1 | 3 | ||||
-rw-r--r-- | sys-process/latencytop/latencytop-0.1.ebuild | 43 |
2 files changed, 0 insertions, 46 deletions
diff --git a/sys-process/latencytop/files/digest-latencytop-0.1 b/sys-process/latencytop/files/digest-latencytop-0.1 deleted file mode 100644 index 33097f720775..000000000000 --- a/sys-process/latencytop/files/digest-latencytop-0.1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 e9f608cc1bda3f2700029d5b6d1607ad latencytop-0.1.tar.gz 6356 -RMD160 5f5121dd6fa86a29e3e35829b2d5330eddf7c841 latencytop-0.1.tar.gz 6356 -SHA256 76741c5917ddec57132f470272251acff6afc7b90ed9d6da458ee972fdf5dfdd latencytop-0.1.tar.gz 6356 diff --git a/sys-process/latencytop/latencytop-0.1.ebuild b/sys-process/latencytop/latencytop-0.1.ebuild deleted file mode 100644 index 170180acbc88..000000000000 --- a/sys-process/latencytop/latencytop-0.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# 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.1.ebuild,v 1.1 2008/01/19 21:24:55 vapier Exp $ - -inherit toolchain-funcs - -DESCRIPTION="tool for identifying where in the system latency is happening" -HOMEPAGE="http://www.latencytop.org/" -SRC_URI="http://www.latencytop.org/download/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="unicode" - -RDEPEND="=dev-libs/glib-2* - sys-libs/ncurses" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i 's:latencytop.trans:/usr/share/misc/latencytop.trans:' latencytop.c || die -} - -src_compile() { - # this sucks, but makefile is worse (for now) - use_echo() { use $1 && echo $2 || echo $3 ; } - $(tc-getCC) \ - ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} \ - $(pkg-config glib-2.0 --cflags) \ - *.c -o latencytop \ - $(pkg-config glib-2.0 --libs) \ - $(use_echo unicode -lncursesw -lncurses) \ - || die -} - -src_install() { - dosbin latencytop || die - insinto /usr/share/misc - doins latencytop.trans || die -} |