summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-misc/ttyload/ttyload-0.5.3.ebuild')
-rw-r--r--app-misc/ttyload/ttyload-0.5.3.ebuild36
1 files changed, 0 insertions, 36 deletions
diff --git a/app-misc/ttyload/ttyload-0.5.3.ebuild b/app-misc/ttyload/ttyload-0.5.3.ebuild
deleted file mode 100644
index 09ffb3b75712..000000000000
--- a/app-misc/ttyload/ttyload-0.5.3.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="color-coded graph of load averages over time"
-HOMEPAGE="https://www.daveltd.com/src/util/ttyload https://github.com/lindes/ttyload"
-SRC_URI="https://www.daveltd.com/src/util/${PN}/${P}.tar.bz2"
-
-KEYWORDS="amd64 x86"
-LICENSE="ISC"
-SLOT="0"
-
-DEPEND="sys-libs/ncurses:0="
-
-RESTRICT="test"
-
-DOCS=( BUGS HISTORY LICENSE README.md TODO )
-
-src_prepare() {
- default
- sed -i '10i#include <time.h>' "${PN}.h" || die
- sed -i -e "s#make#$\(MAKE\)#" Makefile || die
-}
-
-src_compile() {
- emake CC=$(tc-getCC)
-}
-
-src_install() {
- dobin "${PN}"
- doman "${PN}.1"
- einstalldocs
-}