summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-04-14 20:29:38 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-04-14 20:29:38 +0000
commit7067a2a2a1a7774cdd809253ba1838c6a9f9e26e (patch)
treee2993727eee318be01f8cc4e2252b25231bf5f96 /sys-process
parentRemove old. (diff)
downloadgentoo-2-7067a2a2a1a7774cdd809253ba1838c6a9f9e26e.tar.gz
gentoo-2-7067a2a2a1a7774cdd809253ba1838c6a9f9e26e.tar.bz2
gentoo-2-7067a2a2a1a7774cdd809253ba1838c6a9f9e26e.zip
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'sys-process')
-rw-r--r--sys-process/latencytop/ChangeLog7
-rw-r--r--sys-process/latencytop/latencytop-0.4.ebuild49
2 files changed, 5 insertions, 51 deletions
diff --git a/sys-process/latencytop/ChangeLog b/sys-process/latencytop/ChangeLog
index b968323a380b..b7d4c528d1be 100644
--- a/sys-process/latencytop/ChangeLog
+++ b/sys-process/latencytop/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-process/latencytop
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/latencytop/ChangeLog,v 1.11 2012/11/17 08:11:54 vapier Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-process/latencytop/ChangeLog,v 1.12 2015/04/14 20:29:38 mrueg Exp $
+
+ 14 Apr 2015; Manuel Rüger <mrueg@gentoo.org> -latencytop-0.4.ebuild:
+ Remove old.
17 Nov 2012; Mike Frysinger <vapier@gentoo.org>
files/latencytop-0.5-03-clean-up-build-system.patch:
diff --git a/sys-process/latencytop/latencytop-0.4.ebuild b/sys-process/latencytop/latencytop-0.4.ebuild
deleted file mode 100644
index 80fb737caba0..000000000000
--- a/sys-process/latencytop/latencytop-0.4.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2012 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.4 2012/05/03 04:54:03 jdhore 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}
- virtual/pkgconfig"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- 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() {
- # this sucks, but makefile is worse (for now)
- use_echo() { use $1 && echo $2 || echo $3 ; }
- echoit() { echo "$@" ; "$@" ; }
- echoit \
- $(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,block} || die
- doman latencytop.8
-}