diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-08-16 23:13:27 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-08-28 16:32:04 +0200 |
commit | 4682710a0dc67b54b11236cff391c32833a16804 (patch) | |
tree | ae558fb8f2a3eaf73a62ecacc60001fd2ef7e28e /app-misc | |
parent | app-vim/vimclojure: update EAPI 6 -> 8 (diff) | |
download | gentoo-4682710a0dc67b54b11236cff391c32833a16804.tar.gz gentoo-4682710a0dc67b54b11236cff391c32833a16804.tar.bz2 gentoo-4682710a0dc67b54b11236cff391c32833a16804.zip |
app-misc/ttyload: drop 0.5.3, EAPI-6--
Closes: https://bugs.gentoo.org/817644
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/ttyload/ttyload-0.5.3.ebuild | 39 |
1 files changed, 0 insertions, 39 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 29fad0ff0a16..000000000000 --- a/app-misc/ttyload/ttyload-0.5.3.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2022 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 -e "s#make#$\(MAKE\)#" \ - -e "s#^CFLAGS.*#CFLAGS=\$(INCLUDES) ${CFLAGS} \$(VERSION)#" \ - -i Makefile || die -} - -src_compile() { - emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" -} - -src_install() { - dobin "${PN}" - doman "${PN}.1" - einstalldocs -} |