From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1686043-garchives=archives.gentoo.org@lists.gentoo.org> 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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0F3F5158042 for <garchives@archives.gentoo.org>; Sat, 2 Nov 2024 12:06:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 300CBE0870; Sat, 2 Nov 2024 12:06:07 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 pigeon.gentoo.org (Postfix) with ESMTPS id EF80EE0875 for <gentoo-commits@lists.gentoo.org>; Sat, 2 Nov 2024 12:06:06 +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 413C5342FB2 for <gentoo-commits@lists.gentoo.org>; Sat, 2 Nov 2024 12:06:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D16251F0B for <gentoo-commits@lists.gentoo.org>; Sat, 2 Nov 2024 12:06:04 +0000 (UTC) From: "Conrad Kostecki" <conikost@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" <conikost@gentoo.org> Message-ID: <1730549138.555b97a76dfa6c2732cd2aeef867a42cce83ae7a.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-roguelike/adom/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-roguelike/adom/adom-3.3.3-r2.ebuild X-VCS-Directories: games-roguelike/adom/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 555b97a76dfa6c2732cd2aeef867a42cce83ae7a X-VCS-Branch: master Date: Sat, 2 Nov 2024 12:06:04 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1c31fd14-1c28-4e09-98d8-e1a82b14089e X-Archives-Hash: 6c903978e37abde1e03007dc143275de commit: 555b97a76dfa6c2732cd2aeef867a42cce83ae7a Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at> AuthorDate: Wed Oct 30 17:50:08 2024 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Sat Nov 2 12:05:38 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=555b97a7 games-roguelike/adom: EAPI8 bump Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at> Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> games-roguelike/adom/adom-3.3.3-r2.ebuild | 33 +++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/games-roguelike/adom/adom-3.3.3-r2.ebuild b/games-roguelike/adom/adom-3.3.3-r2.ebuild new file mode 100644 index 000000000000..76a508735df5 --- /dev/null +++ b/games-roguelike/adom/adom-3.3.3-r2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_P="${PN}_linux_debian" + +DESCRIPTION="Ancient Domains Of Mystery rogue-like game" +HOMEPAGE="https://www.adom.de/" +SRC_URI="x86? ( https://www.adom.de/home/download/current/${MY_P}_32_${PV}.tar.gz -> ${P}_x86.tar.gz ) + amd64? ( https://www.adom.de/home/download/current/${MY_P}_64_${PV}.tar.gz -> ${P}_amd64.tar.gz )" +S="${WORKDIR}/adom" + +LICENSE="adom" +SLOT="0" +KEYWORDS="~amd64 ~x86" +RESTRICT="strip" # The executable is pre-stripped + +QA_FLAGS_IGNORED="/opt/bin/adom" +RDEPEND="sys-libs/ncurses-compat:5[abi_x86_32(-)]" + +DOCS=( + "docs/adomfaq.txt" + "docs/credits.txt" + "docs/manual.txt" + "docs/readme1st.txt" +) + +src_install() { + exeinto /opt/bin + doexe adom + einstalldocs +}