From: "Peter Levine" <plevine457@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: games-util/steamtinkerlaunch/
Date: Sun, 16 Jan 2022 01:11:43 +0000 (UTC) [thread overview]
Message-ID: <1642295489.be7d1a2afbcc767c65dcfc3e57a42e87aa3f79f7.plevine457@gentoo> (raw)
commit: be7d1a2afbcc767c65dcfc3e57a42e87aa3f79f7
Author: Peter Levine <plevine457 <AT> gmail <DOT> com>
AuthorDate: Sun Jan 16 01:08:02 2022 +0000
Commit: Peter Levine <plevine457 <AT> gmail <DOT> com>
CommitDate: Sun Jan 16 01:11:29 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=be7d1a2a
games-util/steamtinkerlaunch: initial commit
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Peter Levine <plevine457 <AT> gmail.com>
games-util/steamtinkerlaunch/Manifest | 1 +
games-util/steamtinkerlaunch/metadata.xml | 14 +++++
.../steamtinkerlaunch/steamtinkerlaunch-8.0.ebuild | 59 ++++++++++++++++++++++
3 files changed, 74 insertions(+)
diff --git a/games-util/steamtinkerlaunch/Manifest b/games-util/steamtinkerlaunch/Manifest
new file mode 100644
index 000000000..526f02f5e
--- /dev/null
+++ b/games-util/steamtinkerlaunch/Manifest
@@ -0,0 +1 @@
+DIST steamtinkerlaunch-8.0.tar.gz 265244 BLAKE2B 88198d1f31394a8207a1176caada9a24913571671783726a74c0882651de747a96a8174382c3651b07e96977541780e6b5ad42d1286c811bf20dfd320474c526 SHA512 8f879ef146ddd15a3da3182fa0752ae088e9d8653225641e40eecfe2f22703acf34897e34abbfb26bdea9111fbbac3866054ab522ed83c1ff3c77beeffceb217
diff --git a/games-util/steamtinkerlaunch/metadata.xml b/games-util/steamtinkerlaunch/metadata.xml
new file mode 100644
index 000000000..23d01221b
--- /dev/null
+++ b/games-util/steamtinkerlaunch/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <description>new maintainers welcome</description>
+ <name>Peter Levine</name>
+ <email>plevine457@gmail.com</email>
+ </maintainer>
+ <upstream>
+ <bugs-to>https://github.com/frostworx/steamtinkerlaunch/issues</bugs-to>
+ <changelog>https://github.com/frostworx/steamtinkerlaunch/wiki/Changelog</changelog>
+ <remote-id type="github">frostworx/steamtinkerlaunch</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/games-util/steamtinkerlaunch/steamtinkerlaunch-8.0.ebuild b/games-util/steamtinkerlaunch/steamtinkerlaunch-8.0.ebuild
new file mode 100644
index 000000000..994b9fc9e
--- /dev/null
+++ b/games-util/steamtinkerlaunch/steamtinkerlaunch-8.0.ebuild
@@ -0,0 +1,59 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit optfeature xdg
+
+DESCRIPTION="Wrapper script for Steam custom launch options"
+HOMEPAGE="https://github.com/frostworx/steamtinkerlaunch"
+SRC_URI="https://github.com/frostworx/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="GPL-3"
+SLOT="0"
+
+KEYWORDS="~amd64"
+
+DEPEND=
+
+RDEPEND="
+ app-arch/unzip
+ || ( app-editors/vim-core dev-util/xxd )
+ x11-apps/xprop
+ x11-apps/xrandr
+ x11-apps/xwininfo
+ x11-misc/xdotool
+
+ >=gnome-extra/yad-7.2
+"
+
+src_prepare() {
+ default
+
+ sed -e 's|PREFIX := /usr|PREFIX := $(DESTDIR)/usr|g' \
+ -e "s|share/doc/${PN}|share/doc/${PF}|g" \
+ -e '/sed "s:^PREFIX/d' \
+ -i Makefile
+}
+
+pkg_postinst() {
+ xdg_pkg_postinst
+
+ optfeature "writing an strace log of the launched game" dev-util/strace
+ optfeature "using GameMode per game" games-util/gamemode
+ optfeature "using MangoHUD per game" games-util/mangohud
+ optfeature "using vkBasalt per game" games-util/vkbasalt
+ optfeature "winetricks support" app-emulation/winetricks
+ optfeature "playing regular games side-by-side in VR" media-gfx/vr-video-player
+ optfeature "using Nyrna per game" x11-misc/nyrna
+ optfeature "network monitoring" sys-apps/net-tools
+ optfeature "Boxtron support" games-engines/boxtron
+ optfeature "ScummVM support via Roberta" games-engines/scummvm
+ optfeature "wine support" virtual/wine
+ optfeature "GameScope support" games-util/gamescope
+ optfeature "Notifier" x11-libs/libnotify
+ optfeature "extracting the Cheat Engine setup archive" app-arch/innoextract
+ optfeature "a quick VR HMD presence check" sys-apps/usbutils
+ optfeature "extracting game names from the steam api" app-misc/jq
+ optfeature "scaling a custom installed game header picture and for converting game icons" media-gfx/imagemagick
+ optfeature "extracting SpecialK archives" app-arch/p7zip
+}
next reply other threads:[~2022-01-16 1:11 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-16 1:11 Peter Levine [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-01-21 2:09 [gentoo-commits] repo/proj/guru:dev commit in: games-util/steamtinkerlaunch/ Peter Levine
2022-12-25 20:36 Mazunki Hoksaas
2025-01-30 15:34 Vincent Ahluwalia
2025-02-10 19:10 Blake Batson
2025-02-15 12:14 Vincent Ahluwalia
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1642295489.be7d1a2afbcc767c65dcfc3e57a42e87aa3f79f7.plevine457@gentoo \
--to=plevine457@gmail.com \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox