Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libasyncns/
Date: Sat, 16 Feb 2019 16:48:03
Message-Id: 1550335653.70797b0ff01257ff4d8a9f30cc644792b1e8fb89.zlogene@gentoo
1 commit: 70797b0ff01257ff4d8a9f30cc644792b1e8fb89
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 16 16:47:33 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 16 16:47:33 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70797b0f
7
8 net-libs/libasyncns: fix multiple QA issues
9
10 Bug: https://bugs.gentoo.org/678124
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12 Package-Manager: Portage-2.3.51, Repoman-2.3.11
13
14 net-libs/libasyncns/libasyncns-0.8-r4.ebuild | 8 ++++----
15 1 file changed, 4 insertions(+), 4 deletions(-)
16
17 diff --git a/net-libs/libasyncns/libasyncns-0.8-r4.ebuild b/net-libs/libasyncns/libasyncns-0.8-r4.ebuild
18 index 4d10bdbdf78..cdde64a4fc8 100644
19 --- a/net-libs/libasyncns/libasyncns-0.8-r4.ebuild
20 +++ b/net-libs/libasyncns/libasyncns-0.8-r4.ebuild
21 @@ -2,6 +2,7 @@
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=7
25 +
26 inherit autotools flag-o-matic multilib-minimal
27
28 DESCRIPTION="C library for executing name service queries asynchronously"
29 @@ -15,8 +16,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd
30
31 IUSE="doc debug"
32
33 -RDEPEND=""
34 -DEPEND="doc? ( app-doc/doxygen )"
35 +BDEPEND="doc? ( app-doc/doxygen )"
36
37 src_prepare() {
38 default
39 @@ -48,11 +48,11 @@ multilib_src_compile() {
40 }
41
42 multilib_src_install() {
43 - emake DESTDIR="${D}" install
44 + default
45
46 if multilib_is_native_abi && use doc; then
47 docinto apidocs
48 - dohtml html/*
49 + dodoc -r html
50 fi
51 }