diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2021-05-07 23:40:49 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-05-07 23:42:10 +0200 |
commit | e2793693062c693368664e3fff03b21e4fc37f1b (patch) | |
tree | 41d384a04bce8679390711b9a61e7f9fbc8b9e04 /app-admin/dio | |
parent | app-admin/dio: switch to pkg-config (diff) | |
download | gentoo-e2793693062c693368664e3fff03b21e4fc37f1b.tar.gz gentoo-e2793693062c693368664e3fff03b21e4fc37f1b.tar.bz2 gentoo-e2793693062c693368664e3fff03b21e4fc37f1b.zip |
app-admin/dio: drop old version
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-admin/dio')
-rw-r--r-- | app-admin/dio/dio-1.5.2-r1.ebuild | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/app-admin/dio/dio-1.5.2-r1.ebuild b/app-admin/dio/dio-1.5.2-r1.ebuild deleted file mode 100644 index 1ede22cf23f0..000000000000 --- a/app-admin/dio/dio-1.5.2-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="A device I/O monitoring tool" -HOMEPAGE="https://github.com/donaldmcintosh/dio" -SRC_URI="https://github.com/donaldmcintosh/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -KEYWORDS="amd64 x86" -LICENSE="MIT" -SLOT="0" - -RDEPEND="sys-libs/ncurses:0=" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${P}/src" - -DOCS=( "README" "../README.md" ) -HTML_DOCS=( "../site/www.diodio.org/." ) - -src_prepare() { - # Include the 'tinfo' lib, if sys-libs/ncurses is compiled with USE="tinfo" - if has_version -d 'sys-libs/ncurses[tinfo]'; then - sed -e 's/lcurses/& -ltinfo/' -i Makefile || die - fi - - default -} - -src_compile() { - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" -} - -src_install() { - dobin dio - doman dio.1 - einstalldocs -} |