diff options
author | 2017-09-17 23:56:44 +0200 | |
---|---|---|
committer | 2017-09-17 23:59:10 +0200 | |
commit | 464d7d2c9ff5ba9e81a2b9cf5ba0b256c93e84ca (patch) | |
tree | f11a54fb9e385c369a6059a85affdf69047f7893 /games-action/supermariowar/files/smwd.initd | |
parent | dev-python/pydns-3.1.1: x86 stable, bug 625042 (diff) | |
download | gentoo-464d7d2c9ff5ba9e81a2b9cf5ba0b256c93e84ca.tar.gz gentoo-464d7d2c9ff5ba9e81a2b9cf5ba0b256c93e84ca.tar.bz2 gentoo-464d7d2c9ff5ba9e81a2b9cf5ba0b256c93e84ca.zip |
games-action/supermariowar: new package.
Super Mario War is a fan-made multiplayer Super Mario Bros. style
deathmatch game.
See: http://supermariowar.supersanctuary.net
See: https://github.com/mmatyas/supermariowar
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'games-action/supermariowar/files/smwd.initd')
-rw-r--r-- | games-action/supermariowar/files/smwd.initd | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/games-action/supermariowar/files/smwd.initd b/games-action/supermariowar/files/smwd.initd new file mode 100644 index 000000000000..6aa83cc3e1b2 --- /dev/null +++ b/games-action/supermariowar/files/smwd.initd @@ -0,0 +1,39 @@ +#!/sbin/openrc-run +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +command="/usr/sbin/smw-server" +command_background="true" +pidfile="/var/run/${RC_SVCNAME}.pid" +name="Super Mario War server" +description="The Super Mario War server process is in charge of hosting Super Mario War games" +smw_server_dir="/usr/share/supermariowar-2.0_beta1/server" + +depend() { + use net + before logger +} + +start() { + if [[ ! -d "${smw_server_dir}" ]]; then + eerror "Cannot cd into ${smw_server_dir}" + return 1 + fi + cd "${smw_server_dir}" || return 1 + ebegin "Starting ${name}" + start-stop-daemon \ + --start \ + --background \ + --pidfile ${pidfile} \ + --make-pidfile \ + --exec ${command} + eend $? +} + +stop() { + ebegin "Stopping ${name}" + start-stop-daemon \ + --stop \ + --pidfile ${pidfile} + eend $? +} |