From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C71FA138334 for ; Sat, 16 Feb 2019 16:48:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ACCB6E08A6; Sat, 16 Feb 2019 16:48:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7FF66E08A6 for ; Sat, 16 Feb 2019 16:48:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 90ADC335CDE for ; Sat, 16 Feb 2019 16:48:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 134A0501 for ; Sat, 16 Feb 2019 16:47:59 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1550335653.70797b0ff01257ff4d8a9f30cc644792b1e8fb89.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libasyncns/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libasyncns/libasyncns-0.8-r4.ebuild X-VCS-Directories: net-libs/libasyncns/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 70797b0ff01257ff4d8a9f30cc644792b1e8fb89 X-VCS-Branch: master Date: Sat, 16 Feb 2019 16:47:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 049422bf-d54c-40a5-a5e3-3ce964e5e36c X-Archives-Hash: ccc0e77e71c61eec22a7da881d9e183d commit: 70797b0ff01257ff4d8a9f30cc644792b1e8fb89 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Feb 16 16:47:33 2019 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sat Feb 16 16:47:33 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70797b0f net-libs/libasyncns: fix multiple QA issues Bug: https://bugs.gentoo.org/678124 Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 net-libs/libasyncns/libasyncns-0.8-r4.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/net-libs/libasyncns/libasyncns-0.8-r4.ebuild b/net-libs/libasyncns/libasyncns-0.8-r4.ebuild index 4d10bdbdf78..cdde64a4fc8 100644 --- a/net-libs/libasyncns/libasyncns-0.8-r4.ebuild +++ b/net-libs/libasyncns/libasyncns-0.8-r4.ebuild @@ -2,6 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 + inherit autotools flag-o-matic multilib-minimal DESCRIPTION="C library for executing name service queries asynchronously" @@ -15,8 +16,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd IUSE="doc debug" -RDEPEND="" -DEPEND="doc? ( app-doc/doxygen )" +BDEPEND="doc? ( app-doc/doxygen )" src_prepare() { default @@ -48,11 +48,11 @@ multilib_src_compile() { } multilib_src_install() { - emake DESTDIR="${D}" install + default if multilib_is_native_abi && use doc; then docinto apidocs - dohtml html/* + dodoc -r html fi }