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 DDB9D138334 for ; Mon, 18 Mar 2019 16:24:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CCEBDE0891; Mon, 18 Mar 2019 16:24:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 A0C3AE0891 for ; Mon, 18 Mar 2019 16:24:37 +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 52C94335D06 for ; Mon, 18 Mar 2019 16:24:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F012754F for ; Mon, 18 Mar 2019 16:24:33 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1552926266.de715cbe1562643b3a47a34b1e45e04638e8e089.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libpsl/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libpsl/libpsl-0.20.2.ebuild X-VCS-Directories: net-libs/libpsl/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: de715cbe1562643b3a47a34b1e45e04638e8e089 X-VCS-Branch: master Date: Mon, 18 Mar 2019 16:24:33 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f1098456-5730-4233-8e02-805196a8b189 X-Archives-Hash: 24a1d8b3f787f8069e0e237ccad3abdb commit: de715cbe1562643b3a47a34b1e45e04638e8e089 Author: Lars Wendler gentoo org> AuthorDate: Mon Mar 18 16:24:26 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Mar 18 16:24:26 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de715cbe net-libs/libpsl: Added multilib support. Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Lars Wendler gentoo.org> net-libs/libpsl/libpsl-0.20.2.ebuild | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/net-libs/libpsl/libpsl-0.20.2.ebuild b/net-libs/libpsl/libpsl-0.20.2.ebuild index 4873768c063..13d871a3273 100644 --- a/net-libs/libpsl/libpsl-0.20.2.ebuild +++ b/net-libs/libpsl/libpsl-0.20.2.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit multilib-minimal + DESCRIPTION="C library for the Public Suffix List" HOMEPAGE="https://github.com/rockdaboot/libpsl" SRC_URI="https://github.com/rockdaboot/${PN}/releases/download/${P}/${P}.tar.gz" @@ -15,10 +17,10 @@ IUSE="icu +idn +man" REQUIRED_USE="^^ ( icu idn )" RDEPEND=" - icu? ( dev-libs/icu:= ) + icu? ( dev-libs/icu:=[${MULTILIB_USEDEP}] ) idn? ( - dev-libs/libunistring - net-dns/libidn2:= + dev-libs/libunistring[${MULTILIB_USEDEP}] + net-dns/libidn2:=[${MULTILIB_USEDEP}] ) " @@ -32,7 +34,7 @@ BDEPEND=" man? ( dev-libs/libxslt ) " -src_configure() { +multilib_src_configure() { local myeconfargs=( --enable-ubsan --disable-asan @@ -57,10 +59,10 @@ src_configure() { myeconfargs+=( --disable-runtime ) fi - econf "${myeconfargs[@]}" + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" } -src_install() { +multilib_src_install() { default find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die