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 2553E1382C5 for ; Sun, 23 May 2021 16:53:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D503E0887; Sun, 23 May 2021 16:53:34 +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 44C06E0887 for ; Sun, 23 May 2021 16:53:34 +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 3D194340DDF for ; Sun, 23 May 2021 16:53:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4AD2F78B for ; Sun, 23 May 2021 16:53:31 +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: <1621788786.e4eda48d2518cb0dcd80e0593801dad5fd0b0b0c.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-games/aseprite/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-games/aseprite/aseprite-1.1.9.ebuild X-VCS-Directories: dev-games/aseprite/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e4eda48d2518cb0dcd80e0593801dad5fd0b0b0c X-VCS-Branch: master Date: Sun, 23 May 2021 16:53:31 +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: f976e52f-219a-4b9d-9020-46972c3bc5f7 X-Archives-Hash: e4b36d51854452656a56b3ee89ae13b1 commit: e4eda48d2518cb0dcd80e0593801dad5fd0b0b0c Author: Azamat H. Hackimov gmail com> AuthorDate: Fri May 21 22:30:56 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun May 23 16:53:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4eda48d dev-games/aseprite: fix building with USE=bundled-libs Shared libloadpng comes with shared allegro[png]. USE=bundled-libs will disable allegro dependency, which leads to building error. Closes: https://bugs.gentoo.org/680060 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Azamat H. Hackimov gmail.com> Closes: https://github.com/gentoo/gentoo/pull/20917 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-games/aseprite/aseprite-1.1.9.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-games/aseprite/aseprite-1.1.9.ebuild b/dev-games/aseprite/aseprite-1.1.9.ebuild index b3ab60f8d32..c96e7c87576 100644 --- a/dev-games/aseprite/aseprite-1.1.9.ebuild +++ b/dev-games/aseprite/aseprite-1.1.9.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -74,7 +74,7 @@ src_configure() { -DUSE_SHARED_FREETYPE=ON -DUSE_SHARED_GIFLIB=ON -DUSE_SHARED_JPEGLIB=ON - -DUSE_SHARED_LIBLOADPNG=ON + -DUSE_SHARED_LIBLOADPNG=$(usex !bundled-libs) -DUSE_SHARED_LIBPNG=ON -DUSE_SHARED_PIXMAN=ON -DUSE_SHARED_TINYXML=ON