From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-985549-garchives=archives.gentoo.org@lists.gentoo.org>
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 E68C3139083
	for <garchives@archives.gentoo.org>; Wed, 22 Nov 2017 18:01:45 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 19372E0ECA;
	Wed, 22 Nov 2017 18:01:45 +0000 (UTC)
Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(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 EF135E0ECA
	for <gentoo-commits@lists.gentoo.org>; Wed, 22 Nov 2017 18:01:44 +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 D263D340DF9
	for <gentoo-commits@lists.gentoo.org>; Wed, 22 Nov 2017 18:01:43 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C8BAA3E3
	for <gentoo-commits@lists.gentoo.org>; Wed, 22 Nov 2017 18:01:42 +0000 (UTC)
From: "Aric Belsito" <lluixhi@gmail.com>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Aric Belsito" <lluixhi@gmail.com>
Message-ID: <1511373664.703900fc8e10a0c35ee4b0d0ac2f6a81a1b84803.lluixhi@gentoo>
Subject: [gentoo-commits] proj/musl:master commit in: net-libs/libnsl/
X-VCS-Repository: proj/musl
X-VCS-Files: net-libs/libnsl/libnsl-1.1.0-r1.ebuild net-libs/libnsl/libnsl-1.1.0-r3.ebuild
X-VCS-Directories: net-libs/libnsl/
X-VCS-Committer: lluixhi
X-VCS-Committer-Name: Aric Belsito
X-VCS-Revision: 703900fc8e10a0c35ee4b0d0ac2f6a81a1b84803
X-VCS-Branch: master
Date: Wed, 22 Nov 2017 18:01:42 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 095b1fcb-d186-424d-81a5-1985eb0b493a
X-Archives-Hash: 6c9b671df6d9e4a1a377f98f83240181

commit:     703900fc8e10a0c35ee4b0d0ac2f6a81a1b84803
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Wed Nov 22 18:01:04 2017 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Wed Nov 22 18:01:04 2017 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=703900fc

net-libs/libnsl: version bump to 1.1.0-r3

 .../{libnsl-1.1.0-r1.ebuild => libnsl-1.1.0-r3.ebuild}       | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/net-libs/libnsl/libnsl-1.1.0-r1.ebuild b/net-libs/libnsl/libnsl-1.1.0-r3.ebuild
similarity index 84%
rename from net-libs/libnsl/libnsl-1.1.0-r1.ebuild
rename to net-libs/libnsl/libnsl-1.1.0-r3.ebuild
index f635e75..9524db2 100644
--- a/net-libs/libnsl/libnsl-1.1.0-r1.ebuild
+++ b/net-libs/libnsl/libnsl-1.1.0-r3.ebuild
@@ -39,6 +39,14 @@ src_prepare(){
 }
 
 multilib_src_configure() {
-	# Fool multilib-minimal to run ./configure in out-of-tree build
-	ECONF_SOURCE=${S} econf
+	local myconf=(
+		--enable-shared
+		--disable-static
+	)
+	ECONF_SOURCE=${S} econf "${myconf[@]}"
+}
+
+multilib_src_install_all() {
+	einstalldocs
+	find "${ED}" -name '*.la' -delete || die
 }