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 58F181382C5 for ; Wed, 14 Apr 2021 06:46:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2ABB3E0B63; Wed, 14 Apr 2021 06:46:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 E6010E0B61 for ; Wed, 14 Apr 2021 06:46:56 +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 E4643335DD0 for ; Wed, 14 Apr 2021 06:46:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 553DE64A for ; Wed, 14 Apr 2021 06:46:54 +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: <1618382794.6f4b1b1d8b597dbe2c0e0aa25faaaa92a43f7287.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libpng/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libpng/libpng-1.6.37-r2.ebuild X-VCS-Directories: media-libs/libpng/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 6f4b1b1d8b597dbe2c0e0aa25faaaa92a43f7287 X-VCS-Branch: master Date: Wed, 14 Apr 2021 06:46:54 +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: 9b1112aa-6c79-4936-9fc7-46c223df03f9 X-Archives-Hash: f4787752acadef2a1e2d511ce3503c26 commit: 6f4b1b1d8b597dbe2c0e0aa25faaaa92a43f7287 Author: Sam James gentoo org> AuthorDate: Wed Apr 14 00:39:53 2021 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Apr 14 06:46:34 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f4b1b1d media-libs/libpng: style changes * Sort myeconfargs * Move DOCS definition to global scope * s/einstalldocs/default/ Signed-off-by: Sam James gentoo.org> Signed-off-by: Lars Wendler gentoo.org> media-libs/libpng/libpng-1.6.37-r2.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/media-libs/libpng/libpng-1.6.37-r2.ebuild b/media-libs/libpng/libpng-1.6.37-r2.ebuild index 9d45e05e51c..38d7b6e6195 100644 --- a/media-libs/libpng/libpng-1.6.37-r2.ebuild +++ b/media-libs/libpng/libpng-1.6.37-r2.ebuild @@ -18,6 +18,8 @@ IUSE="apng cpu_flags_arm_neon cpu_flags_x86_sse static-libs" RDEPEND=">=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}]" DEPEND="${RDEPEND}" +DOCS=( ANNOUNCE CHANGES libpng-manual.txt README TODO ) + src_prepare() { default if use apng; then @@ -30,15 +32,15 @@ src_prepare() { multilib_src_configure() { local myeconfargs=( + $(use_enable cpu_flags_arm_neon arm-neon check) $(use_enable cpu_flags_x86_sse intel-sse) $(use_enable static-libs static) - $(use_enable cpu_flags_arm_neon arm-neon check) ) ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" } multilib_src_install_all() { - DOCS=( ANNOUNCE CHANGES libpng-manual.txt README TODO ) - einstalldocs + default + find "${ED}" \( -type f -o -type l \) -name '*.la' -delete || die }