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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F1CB91581D3 for ; Fri, 17 May 2024 05:21:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C73A4E2A1E; Fri, 17 May 2024 05:21:33 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A976AE2A1E for ; Fri, 17 May 2024 05:21:33 +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 B7903343010 for ; Fri, 17 May 2024 05:21:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD81A1AA6 for ; Fri, 17 May 2024 05:21:30 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1715922854.0e57a8f5857bc6dd75e17c8f9d31ff1f7a6c056f.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-server/mednafen-server/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-server/mednafen-server/mednafen-server-0.5.2-r2.ebuild X-VCS-Directories: games-server/mednafen-server/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 0e57a8f5857bc6dd75e17c8f9d31ff1f7a6c056f X-VCS-Branch: master Date: Fri, 17 May 2024 05:21:30 +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: de14e979-946c-4723-a743-084715f39b8f X-Archives-Hash: 0c7766e24bcb35e80366ac2302ee2d38 commit: 0e57a8f5857bc6dd75e17c8f9d31ff1f7a6c056f Author: Michael Mair-Keimberger levelnine at> AuthorDate: Thu May 16 17:15:04 2024 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Fri May 17 05:14:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e57a8f5 games-server/mednafen-server: EAPI8 bump Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Ionen Wolkens gentoo.org> .../mednafen-server-0.5.2-r2.ebuild | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/games-server/mednafen-server/mednafen-server-0.5.2-r2.ebuild b/games-server/mednafen-server/mednafen-server-0.5.2-r2.ebuild new file mode 100644 index 000000000000..a08ec6a3f444 --- /dev/null +++ b/games-server/mednafen-server/mednafen-server-0.5.2-r2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Server for Mednafen emulator" +HOMEPAGE="https://mednafen.github.io/releases/" +SRC_URI="https://mednafen.github.io/releases/files/${P}.tar.xz" +S="${WORKDIR}/${PN}" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +src_prepare() { + default + + mv standard.conf standard.conf.example || die + mv run.sh run.sh.example || die +} + +src_install() { + dobin src/${PN} + dodoc README *.example +} + +pkg_postinst() { + einfo "Example config file and run file can be found in" + einfo "/usr/share/doc/${PF}/" +}