diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2019-02-16 19:47:33 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2019-02-16 19:47:33 +0300 |
commit | 70797b0ff01257ff4d8a9f30cc644792b1e8fb89 (patch) | |
tree | 57c8a7f77974b542594c505caa877b1a1c5e23a0 /net-libs/libasyncns | |
parent | net-mail/amavis-logwatch: new revision with another custom patch. (diff) | |
download | gentoo-70797b0ff01257ff4d8a9f30cc644792b1e8fb89.tar.gz gentoo-70797b0ff01257ff4d8a9f30cc644792b1e8fb89.tar.bz2 gentoo-70797b0ff01257ff4d8a9f30cc644792b1e8fb89.zip |
net-libs/libasyncns: fix multiple QA issues
Bug: https://bugs.gentoo.org/678124
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'net-libs/libasyncns')
-rw-r--r-- | net-libs/libasyncns/libasyncns-0.8-r4.ebuild | 8 |
1 files 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 4d10bdbdf781..cdde64a4fc83 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 } |