diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-05-11 19:55:43 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-05-11 19:55:43 +0100 |
commit | 185fa19bbf68a4d4dca534d2b46729207a177f16 (patch) | |
tree | a8a537b82fda83a0799c2ca9887f212558363aa7 /app-admin/dio | |
parent | c8fd0d84af0bfd1949542adc2cbb735b1d28f9ed (diff) |
gentoo resync : 11.05.2021
Diffstat (limited to 'app-admin/dio')
-rw-r--r-- | app-admin/dio/Manifest | 2 | ||||
-rw-r--r-- | app-admin/dio/dio-1.5.2-r2.ebuild (renamed from app-admin/dio/dio-1.5.2-r1.ebuild) | 16 |
2 files changed, 8 insertions, 10 deletions
diff --git a/app-admin/dio/Manifest b/app-admin/dio/Manifest index 94ba281f2ae0..dab4a8dc35ae 100644 --- a/app-admin/dio/Manifest +++ b/app-admin/dio/Manifest @@ -1,3 +1,3 @@ DIST dio-1.5.2.tar.gz 44344 BLAKE2B 8e573cbf2ad1b717ffec09f20f8c7474841bc3e1635af35116d02b37af56ef3b4742e12725134d485f788e7abb595605640e19bd6f84bfd8f14289abf1695089 SHA512 366d2f2d25b8d16439c4a9aaa7cd775ddffb1022980675cdda8e2e4d4de3d3e5dcfa8d0c581b73fcfe4eff66ee8ef682f082c8788f514b7abdf1a2cb2159b9ba -EBUILD dio-1.5.2-r1.ebuild 864 BLAKE2B 21d4534ca92e2eae1234efc1136be510f092ebf93f034f9e50035fee7fa9b0fef7756f255571c52c9f340304c9da58e55ac36c21ba9b8ef51727768e974dc014 SHA512 2bba0907947285946c1e3c07a98de3ef20012c29200bc5c40f6a48a78f0ae94508cb1e9018392f28b3dd39e7480f075b100db3bf0e1cadc4f99819526aa51be1 +EBUILD dio-1.5.2-r2.ebuild 864 BLAKE2B ca35e651f5d28151450bd2f05518778479f269bbb1dbe7efc1981fd8e48fa3ac18d84cd555a053bc071b867ac4a09a2d718b97e4d2011c5e43d1c401d32cd392 SHA512 ab5413733f0139e45dc66b09ca701d01003a32318625b9055d53d53c533e93bad593976bc6ec86315a01756bede635b73513455389e79122c992545de91c3c95 MISC metadata.xml 793 BLAKE2B cc48bcda030360c69a517a4c76e91dca8adc6d5228d6982c21cd4a07afc474a4ef03daedd773f9a22564eccfadd5fcc6eb528cc2631358b5ca602144f2bf8559 SHA512 9875ed341acd30db1009dc29da6d024b433a77a8212690911286798aeabb4206d3af91452976931bacd3db81159a393efdbd95058fa6d740b22d6ad1a81f2c82 diff --git a/app-admin/dio/dio-1.5.2-r1.ebuild b/app-admin/dio/dio-1.5.2-r2.ebuild index 1ede22cf23f0..3b303b3961b6 100644 --- a/app-admin/dio/dio-1.5.2-r1.ebuild +++ b/app-admin/dio/dio-1.5.2-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -8,26 +8,24 @@ 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" +S="${WORKDIR}/${P}/src" -KEYWORDS="amd64 x86" LICENSE="MIT" SLOT="0" +KEYWORDS="amd64 x86" RDEPEND="sys-libs/ncurses:0=" DEPEND="${RDEPEND}" - -S="${WORKDIR}/${P}/src" +BDEPEND="virtual/pkgconfig" 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 + + # Include the 'tinfo' lib, if sys-libs/ncurses is compiled with USE="tinfo" + sed -e "s:-lcurses:$($(tc-getPKG_CONFIG) --libs ncurses):" -i Makefile || die } src_compile() { |