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 24A6D139694 for ; Wed, 22 Mar 2017 03:15:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75F2CE0DA3; Wed, 22 Mar 2017 03:15:32 +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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5112BE0DA3 for ; Wed, 22 Mar 2017 03:15:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6F552340AD2 for ; Wed, 22 Mar 2017 03:15:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 186817095 for ; Wed, 22 Mar 2017 03:15:30 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1490152516.68c92e2cbe53b0d55a7feec3793baaf9d477efa8.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libtasn1/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libtasn1/libtasn1-4.10-r1.ebuild dev-libs/libtasn1/libtasn1-4.10.ebuild X-VCS-Directories: dev-libs/libtasn1/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 68c92e2cbe53b0d55a7feec3793baaf9d477efa8 X-VCS-Branch: master Date: Wed, 22 Mar 2017 03:15:30 +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-Archives-Salt: a5d7f306-f158-4a34-9824-8b94cd05e195 X-Archives-Hash: fa0b327165e330109ac29b013a95df5e commit: 68c92e2cbe53b0d55a7feec3793baaf9d477efa8 Author: Mike Frysinger gentoo org> AuthorDate: Wed Mar 22 03:15:09 2017 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Mar 22 03:15:16 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68c92e2c dev-libs/libtasn1: fix USE=static-libs handling dev-libs/libtasn1/{libtasn1-4.10.ebuild => libtasn1-4.10-r1.ebuild} | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-libs/libtasn1/libtasn1-4.10.ebuild b/dev-libs/libtasn1/libtasn1-4.10-r1.ebuild similarity index 89% rename from dev-libs/libtasn1/libtasn1-4.10.ebuild rename to dev-libs/libtasn1/libtasn1-4.10-r1.ebuild index 56d15191556..722fc677010 100644 --- a/dev-libs/libtasn1/libtasn1-4.10.ebuild +++ b/dev-libs/libtasn1/libtasn1-4.10-r1.ebuild @@ -40,5 +40,11 @@ src_prepare() { multilib_src_configure() { ECONF_SOURCE="${S}" econf \ + $(use_enable static-libs static) \ $(multilib_native_use_enable valgrind valgrind-tests) } + +multilib_src_install_all() { + einstalldocs + use static-libs || find "${ED}" -name '*.la' -delete +}