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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 50265158041 for ; Thu, 21 Mar 2024 14:54:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 957EFE29A6; Thu, 21 Mar 2024 14:54:00 +0000 (UTC) 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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 70474E29A6 for ; Thu, 21 Mar 2024 14:54:00 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5D4A3335CB9 for ; Thu, 21 Mar 2024 14:53:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 77CC1ED1 for ; Thu, 21 Mar 2024 14:53:57 +0000 (UTC) From: "Vitaly Zdanevich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Vitaly Zdanevich" Message-ID: <1711032824.5ea5678f4ed937c2622ddd51e4236c2910ec1a88.zdanevich.vitaly@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: games-strategy/armies-of-exigo-demo/ X-VCS-Repository: repo/proj/guru X-VCS-Files: games-strategy/armies-of-exigo-demo/armies-of-exigo-demo-1.0.ebuild X-VCS-Directories: games-strategy/armies-of-exigo-demo/ X-VCS-Committer: zdanevich.vitaly X-VCS-Committer-Name: Vitaly Zdanevich X-VCS-Revision: 5ea5678f4ed937c2622ddd51e4236c2910ec1a88 X-VCS-Branch: dev Date: Thu, 21 Mar 2024 14:53:57 +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: 19c59756-c2ff-4398-a3d1-173efe4e8686 X-Archives-Hash: ff1ed5e5c8f4525208b3a1aa73cc251f commit: 5ea5678f4ed937c2622ddd51e4236c2910ec1a88 Author: Vitaly Zdanevich ya ru> AuthorDate: Thu Mar 21 14:53:44 2024 +0000 Commit: Vitaly Zdanevich ya ru> CommitDate: Thu Mar 21 14:53:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5ea5678f games-strategy/armies-of-exigo-demo: einfo add installed location Signed-off-by: Vitaly Zdanevich ya.ru> .../armies-of-exigo-demo/armies-of-exigo-demo-1.0.ebuild | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/games-strategy/armies-of-exigo-demo/armies-of-exigo-demo-1.0.ebuild b/games-strategy/armies-of-exigo-demo/armies-of-exigo-demo-1.0.ebuild index 10323aecaa..8837556736 100644 --- a/games-strategy/armies-of-exigo-demo/armies-of-exigo-demo-1.0.ebuild +++ b/games-strategy/armies-of-exigo-demo/armies-of-exigo-demo-1.0.ebuild @@ -25,6 +25,8 @@ RDEPEND=" QA_PREBUILT="*" +dir=/opt/armies-of-exigo + src_install() { conty=conty-1.25.2 @@ -37,7 +39,7 @@ src_install() { cp -r "$name" "$ED"/opt/armies-of-exigo/single-player-demo - path="/opt/armies-of-exigo/single-playerdemo/Exigo_spdemo.exe" + path="$dir/single-playerdemo/Exigo_spdemo.exe" make_wrapper "$single" "$conty wine \"$path\"" # TODO add USE flag to be able to choolse local wine or wine-proton, against 1.4 GB dependency? @@ -48,10 +50,12 @@ pkg_postinst() { einfo "https://en.wikipedia.org/wiki/Armies_of_Exigo" einfo "Discord: https://discord.gg/HcsjkNX3JY" einfo "https://armies-of-exigo.fandom.com/wiki/Armies_of_Exigo_Wiki" - + einfo "" einfo "This great game from 2004 is an abandonware - in 2024 you can buy it only as a second-hand CD." einfo "List of creators: https://www.mobygames.com/game/16100/armies-of-exigo/credits/windows/" einfo "If you want - please try to communicate with authors about making Armies of Exigo free and open source," einfo "or Intellectual Property holder can make a remake - add more display resolutions, improve the AI," - einfo "make it runnable on modern Windows" + einfo "make it runnable on modern Windows." + einfo "" + einfo "The game is installed to $dir - if you want to run it by another Wine" }