commit:     d8ed5247f9e56d317eae3510aa26faccbcf2aa69
Author:     Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Tue Aug  7 16:58:06 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Aug  7 17:13:01 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8ed5247

app-admin/dio: fix build with sys-libs/ncurses[tinfo]

Also bumped to EAPI=7

Closes: https://bugs.gentoo.org/646802
Package-Manager: Portage-2.3.44, Repoman-2.3.10

 app-admin/dio/dio-1.5.2-r1.ebuild | 41 +++++++++++++++++++++++++++++++++++++++
 app-admin/dio/metadata.xml        | 23 ++++++++++++++++++----
 2 files changed, 60 insertions(+), 4 deletions(-)

diff --git a/app-admin/dio/dio-1.5.2-r1.ebuild 
b/app-admin/dio/dio-1.5.2-r1.ebuild
new file mode 100644
index 00000000000..2a0d993e8a0
--- /dev/null
+++ b/app-admin/dio/dio-1.5.2-r1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2018 Gentoo Foundation
+# 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
+}

diff --git a/app-admin/dio/metadata.xml b/app-admin/dio/metadata.xml
index ebf597f23ef..021428c4e44 100644
--- a/app-admin/dio/metadata.xml
+++ b/app-admin/dio/metadata.xml
@@ -1,8 +1,23 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
 <pkgmetadata>
-  <!-- maintainer-needed -->
-  <upstream>
-    <remote-id type="github">donaldmcintosh/dio</remote-id>
-  </upstream>
+       <maintainer type="person">
+               <email>ck+gen...@bl4ckb0x.de</email>
+               <name>Conrad Kostecki</name>
+       </maintainer>
+       <maintainer type="project">
+               <email>proxy-ma...@gentoo.org</email>
+               <name>Proxy Maintainers</name>
+       </maintainer>
+       <longdescription>
+               It samples kernel statistics at the specified time interval
+               and uses them to derive useful realtime and cumulative 
performance statistics.
+               The output is presented in a standard terminal window using the 
standard curses library,
+               which contains the output on visible terminal.
+               The approach offers a more intuitive visual presentation of the 
data.
+       </longdescription>
+       <upstream>
+               <bugs-to>https://github.com/donaldmcintosh/dio/issues</bugs-to>
+               <remote-id type="github">donaldmcintosh/dio</remote-id>
+       </upstream>
 </pkgmetadata>

Reply via email to