diff options
Diffstat (limited to 'games-fps/alienarena')
-rw-r--r-- | games-fps/alienarena/alienarena-20130827.ebuild | 8 | ||||
-rw-r--r-- | games-fps/alienarena/files/alienarena-20130827-format.patch | 11 |
2 files changed, 17 insertions, 2 deletions
diff --git a/games-fps/alienarena/alienarena-20130827.ebuild b/games-fps/alienarena/alienarena-20130827.ebuild index b07a3c265d35..4e19f1af1ac7 100644 --- a/games-fps/alienarena/alienarena-20130827.ebuild +++ b/games-fps/alienarena/alienarena-20130827.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -inherit eutils gnome2-utils games +inherit eutils gnome2-utils eutils games MY_PN=alienarena-7.66 DESCRIPTION="Fast-paced multiplayer deathmatch game" @@ -35,6 +35,10 @@ DEPEND="${RDEPEND} S=${WORKDIR}/${MY_PN/_/.} +src_prepare() { + epatch "${FILESDIR}"/${P}-format.patch +} + src_configure() { egamesconf \ --with-icondir=/usr/share/icons/hicolor/48x48/apps/ \ diff --git a/games-fps/alienarena/files/alienarena-20130827-format.patch b/games-fps/alienarena/files/alienarena-20130827-format.patch new file mode 100644 index 000000000000..4a88eab840fc --- /dev/null +++ b/games-fps/alienarena/files/alienarena-20130827-format.patch @@ -0,0 +1,11 @@ +--- source/game/p_client.c.old 2016-01-18 20:13:25.147714704 +0100 ++++ source/game/p_client.c 2016-01-18 20:13:38.776476727 +0100 +@@ -2123,7 +2123,7 @@ + #else
+ ent->ctype = 0; //alien is default
+ sprintf(modelpath, "players/%s/human", playermodel);
+- sprintf(ent->charModel, playermodel);
++ sprintf(ent->charModel, "%s", playermodel);
+ Q2_FindFile (modelpath, &file);
+ if(file)
+ {
|