diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2017-09-16 18:25:19 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2017-09-16 18:25:27 +0100 |
commit | 422346e2efac61e2e800a07b2f7a7cc498b9ab69 (patch) | |
tree | 964d90e0a42789611a2265f90bf3464d40ba6220 /net-libs | |
parent | dev-python/frozen-flask: Bump (diff) | |
download | gentoo-422346e2efac61e2e800a07b2f7a7cc498b9ab69.tar.gz gentoo-422346e2efac61e2e800a07b2f7a7cc498b9ab69.tar.bz2 gentoo-422346e2efac61e2e800a07b2f7a7cc498b9ab69.zip |
net-libs/libnsl: add basic multilib support
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libnsl/libnsl-1.1.0.ebuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/net-libs/libnsl/libnsl-1.1.0.ebuild b/net-libs/libnsl/libnsl-1.1.0.ebuild index 77108d56898a..61647327556f 100644 --- a/net-libs/libnsl/libnsl-1.1.0.ebuild +++ b/net-libs/libnsl/libnsl-1.1.0.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit autotools +inherit autotools multilib-minimal DESCRIPTION="Public client interface for NIS(YP) and NIS+ in a IPv6 ready version" HOMEPAGE="https://github.com/thkukuk/libnsl" @@ -16,7 +16,7 @@ IUSE="" DEPEND=" !<sys-libs/glibc-2.26 - net-libs/libtirpc + net-libs/libtirpc[${MULTILIB_USEDEP}] " RDEPEND=${DEPEND} @@ -26,3 +26,8 @@ src_prepare(){ default eautoreconf } + +multilib_src_configure() { + # Fool multilib-minimal to run ./configure in out-of-tree build + ECONF_SOURCE=${S} econf +} |