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 EFE3C138334 for ; Fri, 29 Nov 2019 10:04:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 267A2E0976; Fri, 29 Nov 2019 10:04:35 +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 058A8E0976 for ; Fri, 29 Nov 2019 10:04:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 069D034D56F for ; Fri, 29 Nov 2019 10:04:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8659A8C6 for ; Fri, 29 Nov 2019 10:04:32 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1575021848.9e5836d54ba3be74788c613b3dc1371aa11d5e0a.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libharu/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libharu/libharu-2.3.0-r2.ebuild X-VCS-Directories: media-libs/libharu/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 9e5836d54ba3be74788c613b3dc1371aa11d5e0a X-VCS-Branch: master Date: Fri, 29 Nov 2019 10:04:32 +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: 47f3fe0c-ba1c-48f9-9827-6f876be3b78a X-Archives-Hash: cdf1c96b10fd219154118d6fd3740f64 commit: 9e5836d54ba3be74788c613b3dc1371aa11d5e0a Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Nov 29 10:02:07 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Nov 29 10:04:08 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e5836d5 media-libs/libharu: Actually call multilib_src_configure Package-Manager: Portage-2.3.80, Repoman-2.3.17 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/libharu/libharu-2.3.0-r2.ebuild | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/media-libs/libharu/libharu-2.3.0-r2.ebuild b/media-libs/libharu/libharu-2.3.0-r2.ebuild index aec8e3bf620..0d2427edfda 100644 --- a/media-libs/libharu/libharu-2.3.0-r2.ebuild +++ b/media-libs/libharu/libharu-2.3.0-r2.ebuild @@ -31,7 +31,10 @@ PATCHES=( "${FILESDIR}"/${P}-4-Add-support-for-free-form-triangle-Shading-objects.patch ) -mycmakeargs=( - -DLIBHPDF_EXAMPLES=NO # Doesn't work - -DLIBHPDF_STATIC=NO -) +multilib_src_configure() { + local mycmakeargs=( + -DLIBHPDF_EXAMPLES=NO # Doesn't work + -DLIBHPDF_STATIC=NO + ) + cmake-utils_src_configure +}