From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C077D158B20 for ; Sat, 01 Feb 2025 16:14:39 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id AD1FD343111 for ; Sat, 01 Feb 2025 16:14:39 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 38D8311048A; Sat, 01 Feb 2025 16:10:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 34AF511048A for ; Sat, 01 Feb 2025 16:10:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DF4C0343141 for ; Sat, 01 Feb 2025 16:10:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F3602626 for ; Sat, 01 Feb 2025 16:10:18 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1738422036.02af97fa58f1a14c1ee64c6356e5ee9cb888fe43.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: games-strategy/unciv-bin/ X-VCS-Repository: repo/proj/guru X-VCS-Files: games-strategy/unciv-bin/unciv-bin-4.15.6_p1.ebuild X-VCS-Directories: games-strategy/unciv-bin/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 02af97fa58f1a14c1ee64c6356e5ee9cb888fe43 X-VCS-Branch: master Date: Sat, 01 Feb 2025 16:10:18 +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: ef8b0713-487f-49dd-b48f-d9840e6206ba X-Archives-Hash: b5ffdd996ffcf624f22c9f125e0c806e commit: 02af97fa58f1a14c1ee64c6356e5ee9cb888fe43 Author: Takuya Wakazono gmail com> AuthorDate: Sat Feb 1 14:58:59 2025 +0000 Commit: David Roman gmail com> CommitDate: Sat Feb 1 15:00:36 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=02af97fa games-strategy/unciv-bin: use xdg eclass This ebuild installs desktop/icon files. Signed-off-by: Takuya Wakazono gmail.com> games-strategy/unciv-bin/unciv-bin-4.15.6_p1.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/games-strategy/unciv-bin/unciv-bin-4.15.6_p1.ebuild b/games-strategy/unciv-bin/unciv-bin-4.15.6_p1.ebuild index 6efb8c437..b5b5e3038 100644 --- a/games-strategy/unciv-bin/unciv-bin-4.15.6_p1.ebuild +++ b/games-strategy/unciv-bin/unciv-bin-4.15.6_p1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit desktop java-pkg-2 +inherit desktop java-pkg-2 xdg MY_PV=${PV/_p/-patch} DESCRIPTION="Turn-based historical strategy game, a remake of Civ V" @@ -32,3 +32,8 @@ src_install() { # this desktop file is better than upstream's make_desktop_entry "${PN}" Unciv-bin unciv "Game;StrategyGame" "Terminal=false" } + +pkg_preinst() { + java-pkg-2_pkg_preinst + xdg_pkg_preinst +}