games-util/steamtinkerlaunch: initial commit

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Peter Levine <plevine457@gmail.com>
This commit is contained in:
Peter Levine
2022-01-15 20:08:02 -05:00
parent a013252b10
commit be7d1a2afb
3 changed files with 74 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST steamtinkerlaunch-8.0.tar.gz 265244 BLAKE2B 88198d1f31394a8207a1176caada9a24913571671783726a74c0882651de747a96a8174382c3651b07e96977541780e6b5ad42d1286c811bf20dfd320474c526 SHA512 8f879ef146ddd15a3da3182fa0752ae088e9d8653225641e40eecfe2f22703acf34897e34abbfb26bdea9111fbbac3866054ab522ed83c1ff3c77beeffceb217

View File

@@ -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>

View File

@@ -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
}