summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-10-07 10:49:51 +0200
committerMichał Górny <mgorny@gentoo.org>2019-10-07 10:49:51 +0200
commitfe35f15084fd987095a886bcdc4fb3030a0b40fb (patch)
tree1abd87bfe6885eb05192c7a65212ee4015b08bec /sys-process
parentapp-arch/zstd: Removed old (diff)
downloadgentoo-fe35f15084fd987095a886bcdc4fb3030a0b40fb.tar.gz
gentoo-fe35f15084fd987095a886bcdc4fb3030a0b40fb.tar.bz2
gentoo-fe35f15084fd987095a886bcdc4fb3030a0b40fb.zip
sys-process/latencytop: Drop old (EAPI=0)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sys-process')
-rw-r--r--sys-process/latencytop/latencytop-0.5.ebuild39
1 files changed, 0 insertions, 39 deletions
diff --git a/sys-process/latencytop/latencytop-0.5.ebuild b/sys-process/latencytop/latencytop-0.5.ebuild
deleted file mode 100644
index cf61c0b00e95..000000000000
--- a/sys-process/latencytop/latencytop-0.5.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils 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="gtk unicode"
-
-RDEPEND="=dev-libs/glib-2*
- gtk? ( =x11-libs/gtk+-2* )
- sys-libs/ncurses"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-*.patch
- sed -i \
- -e "/^HAS_GTK_GUI/s:=.*:=$(use gtk && echo 1):" \
- Makefile || die
-}
-
-src_compile() {
- tc-export CC PKG_CONFIG
- emake || die
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die
-}