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 B8FE6138350 for ; Mon, 23 Mar 2020 15:22:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F3D18E0809; Mon, 23 Mar 2020 15:22:18 +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 A63A0E0809 for ; Mon, 23 Mar 2020 15:22:18 +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 4E47B34EF8F for ; Mon, 23 Mar 2020 15:22:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DE34817 for ; Mon, 23 Mar 2020 15:22:15 +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: <1584976932.5c23b66104ec74c1fce71da77a8ba9cc34a886dc.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-engines/devilutionx/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-engines/devilutionx/devilutionx-9999.ebuild X-VCS-Directories: games-engines/devilutionx/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 5c23b66104ec74c1fce71da77a8ba9cc34a886dc X-VCS-Branch: master Date: Mon, 23 Mar 2020 15:22:15 +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: 92070d92-2f91-4534-bcb4-1f98468d147b X-Archives-Hash: 07a0b71e47c08d5cbd60e85e7e304820 commit: 5c23b66104ec74c1fce71da77a8ba9cc34a886dc Author: Lars Wendler gentoo org> AuthorDate: Mon Mar 23 15:06:21 2020 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Mar 23 15:22:12 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c23b661 games-engines/devilutionx: Can be built with ninja again Package-Manager: Portage-2.3.95, Repoman-2.3.21 Signed-off-by: Lars Wendler gentoo.org> games-engines/devilutionx/devilutionx-9999.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/games-engines/devilutionx/devilutionx-9999.ebuild b/games-engines/devilutionx/devilutionx-9999.ebuild index b363bc7378a..829fcf1b68b 100644 --- a/games-engines/devilutionx/devilutionx-9999.ebuild +++ b/games-engines/devilutionx/devilutionx-9999.ebuild @@ -6,8 +6,8 @@ EAPI=7 # Sometimes build with ninja fails. # Please check occasionally if we can revert back to ninja. # Latest known issue: -# https://github.com/diasurgical/devilutionX/issues/490 -CMAKE_MAKEFILE_GENERATOR="emake" +# +#CMAKE_MAKEFILE_GENERATOR="emake" inherit cmake desktop @@ -62,8 +62,10 @@ src_configure() { src_install() { dobin "${BUILD_DIR}/${PN}" - newicon -s 32 Packaging/resources/Diablo_32.png ${PN}.png - newicon -s 48 Packaging/resources/Diablo_48.png ${PN}.png + local size + for size in 32 48 ; do + newicon -s ${size} Packaging/resources/Diablo_${size}.png ${PN}.png + done make_desktop_entry ${PN} "Diablo devolved" "/usr/share/icons/hicolor/48x48/apps/devilutionx.png" }