You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.2 KiB
61 lines
1.2 KiB
# Copyright 1999-2021 Gentoo Authors
|
|
# 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"
|
|
HOMEPAGE="http://0pointer.de/lennart/projects/libasyncns/"
|
|
SRC_URI="http://0pointer.de/lennart/projects/libasyncns/${P}.tar.gz"
|
|
|
|
SLOT="0"
|
|
LICENSE="LGPL-2.1"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux"
|
|
|
|
IUSE="doc debug"
|
|
|
|
BDEPEND="doc? ( app-doc/doxygen )"
|
|
|
|
PATCHES=(
|
|
# fix libdir in pkgconfig file
|
|
"${FILESDIR}"/${P}-libdir.patch
|
|
# fix configure check for res_query
|
|
"${FILESDIR}"/${P}-configure-res_query.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|
|
|
|
multilib_src_configure() {
|
|
# libasyncns uses assert()
|
|
use debug || append-cppflags -DNDEBUG
|
|
|
|
ECONF_SOURCE="${S}" econf \
|
|
--disable-lynx \
|
|
--disable-static
|
|
}
|
|
|
|
multilib_src_compile() {
|
|
emake
|
|
|
|
if multilib_is_native_abi && use doc; then
|
|
doxygen doxygen/doxygen.conf || die "doxygen failed"
|
|
fi
|
|
}
|
|
|
|
multilib_src_install() {
|
|
default
|
|
|
|
if multilib_is_native_abi && use doc; then
|
|
docinto apidocs
|
|
dodoc -r html
|
|
fi
|
|
}
|
|
|
|
multilib_src_install_all() {
|
|
find "${ED}" -name '*.la' -delete || die
|
|
}
|