diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2020-10-09 15:17:00 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2020-10-09 15:17:00 +0200 |
commit | 8b6bd9c7cac723d1c294b781ad74f03714fa5349 (patch) | |
tree | 35cfed18df2ce117b844036aca7999e72ee29fae /games-server | |
parent | app-misc/graphlcd-base: drop old version (diff) | |
download | gentoo-8b6bd9c7cac723d1c294b781ad74f03714fa5349.tar.gz gentoo-8b6bd9c7cac723d1c294b781ad74f03714fa5349.tar.bz2 gentoo-8b6bd9c7cac723d1c294b781ad74f03714fa5349.zip |
games-server/steamcmd: drop old version
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'games-server')
-rw-r--r-- | games-server/steamcmd/files/steamcmd.confd-r1 | 15 | ||||
-rw-r--r-- | games-server/steamcmd/files/steamcmd.initd-r1 | 32 | ||||
-rw-r--r-- | games-server/steamcmd/steamcmd-1.0-r2.ebuild | 52 |
3 files changed, 0 insertions, 99 deletions
diff --git a/games-server/steamcmd/files/steamcmd.confd-r1 b/games-server/steamcmd/files/steamcmd.confd-r1 deleted file mode 100644 index b5d8b4198493..000000000000 --- a/games-server/steamcmd/files/steamcmd.confd-r1 +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -# Specifies, which server binary is used. -# This could be 'hlds_run' or 'srcds_run', depending on your game. -# STEAMCMD_BINARY="hlds_run" - -# Path to the files of your started server. -# It's recommended to use: -# '/opt/steamcmd/hlds' for older HL1 based mods. -# '/opt/steamcmd/srcds' for newer HL2 based mods. -# STEAMCMD_PATH="/opt/steamcmd/hlds" - -# Options for your server binary. -# STEAMCMD_OPTS="-game valve +ip 127.0.0.1 +maxplayers 32 +map crossfire -pingboost 3" diff --git a/games-server/steamcmd/files/steamcmd.initd-r1 b/games-server/steamcmd/files/steamcmd.initd-r1 deleted file mode 100644 index 327b47734ec6..000000000000 --- a/games-server/steamcmd/files/steamcmd.initd-r1 +++ /dev/null @@ -1,32 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -if [ "${SVCNAME}" = "steamcmd" ]; then - instance="main" -else - instance="${SVCNAME#steamcmd.}" -fi - -name="SteamCMD (Mod: ${instance})" -pidfile="/run/steamcmd.${instance}.pid" -screen_name="steamcmd.${instance}" -start_stop_daemon_args="--chdir ${STEAMCMD_PATH}" - -command="screen" -command_args="-DmUS ${screen_name} ${STEAMCMD_PATH}/${STEAMCMD_BINARY} ${STEAMCMD_OPTS}" -command_background="true" -command_group="steamcmd" -command_user="steamcmd" - -depend() { - use net -} - -start_pre() { - if [ -z "${STEAMCMD_BINARY}" ] || [ -z "${STEAMCMD_PATH}" ]; then - eerror "One or more STEAMCMD_* variables in /etc/conf.d/steamcmd.${SVCNAME} are not set!" - return 1 - fi - return 0 -} diff --git a/games-server/steamcmd/steamcmd-1.0-r2.ebuild b/games-server/steamcmd/steamcmd-1.0-r2.ebuild deleted file mode 100644 index 102dc5e774ed..000000000000 --- a/games-server/steamcmd/steamcmd-1.0-r2.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit readme.gentoo-r1 - -DESCRIPTION="This is the command-line version of the Steam client for dedicated servers" -HOMEPAGE="https://developer.valvesoftware.com/wiki/SteamCMD" -SRC_URI="https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-2.1+ Steam" -SLOT="0" -KEYWORDS="-* amd64 x86" - -RDEPEND=" - acct-group/steamcmd - acct-user/steamcmd - app-misc/screen -" - -RESTRICT="bindist mirror" - -S="${WORKDIR}" - -QA_PREBUILT=" - opt/steamcmd/linux32/libstdc++.so.6 - opt/steamcmd/linux32/steamcmd -" - -src_install() { - diropts -o steamcmd -g steamcmd - dodir /opt/steamcmd - keepdir /opt/steamcmd/{.steam,.steam/sdk32,linux32} - - exeopts -o steamcmd -g steamcmd - exeinto /opt/steamcmd - doexe steamcmd.sh - - exeopts -o steamcmd -g steamcmd - exeinto /opt/steamcmd/linux32 - doexe linux32/steamcmd linux32/libstdc++.so.6 - - newinitd "${FILESDIR}"/steamcmd.initd-r1 steamcmd - newconfd "${FILESDIR}"/steamcmd.confd-r1 steamcmd - - readme.gentoo_create_doc -} - -pkg_postinst() { - readme.gentoo_print_elog -} |