diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-05-24 14:17:37 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-05-24 14:17:37 +0000 |
commit | 81713734e1cc6eeb6d8017d97c906c6faeb93774 (patch) | |
tree | b3848f8f1a889c529c3e1263d4a561153e6113f3 /eclass/games-q3mod.eclass | |
parent | - redigest. removed stray digest files (diff) | |
download | historical-81713734e1cc6eeb6d8017d97c906c6faeb93774.tar.gz historical-81713734e1cc6eeb6d8017d97c906c6faeb93774.tar.bz2 historical-81713734e1cc6eeb6d8017d97c906c6faeb93774.zip |
Added patch from Paul Bredbury <brebs@sent.com> from bug #110545.
Diffstat (limited to 'eclass/games-q3mod.eclass')
-rw-r--r-- | eclass/games-q3mod.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/games-q3mod.eclass b/eclass/games-q3mod.eclass index 223f292c33ba..586b95f34d54 100644 --- a/eclass/games-q3mod.eclass +++ b/eclass/games-q3mod.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/games-q3mod.eclass,v 1.33 2006/01/13 15:10:17 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games-q3mod.eclass,v 1.34 2006/05/24 14:17:37 wolf31o2 Exp $ inherit games @@ -81,14 +81,14 @@ games-q3mod_pkg_postinst() { games-q3mod_make_q3ded_exec() { cat << EOF > "${T}"/q3${MOD_NAME}-ded.bin #!/bin/sh -exec "${GAMES_BINDIR}"/q3ded +set fs_game ${MOD_NAME} +set dedicated 1 +exec server.cfg \${@} +exec "${GAMES_BINDIR}"/q3ded-bin +set fs_game ${MOD_NAME} +set dedicated 1 +exec server.cfg \${@} EOF } games-q3mod_make_quake3_exec() { cat << EOF > "${T}"/quake3-${MOD_NAME}.bin #!/bin/sh -exec "${GAMES_BINDIR}"/quake3 +set fs_game ${MOD_NAME} \${@} +exec "${GAMES_BINDIR}"/quake3-bin +set fs_game ${MOD_NAME} \${@} EOF } |