svn commit: r444536 - in branches/2017Q2/games/xscavenger: . files

Jan Beich jbeich at FreeBSD.org
Wed Jun 28 02:55:49 UTC 2017


Author: jbeich
Date: Wed Jun 28 02:55:47 2017
New Revision: 444536
URL: https://svnweb.freebsd.org/changeset/ports/444536

Log:
  MFH: r444423
  
  games/xscavenger: fix font mapping with Clang or GCC 7.*
  
  Characters of user name and some menu couldn't display the correct
  letters because of incorrect font mapping.
  
  PR:		220106
  Submitted by:	Yasuhito FUTATSUKI
  Approved by:	ports-secteam (miwi)

Added:
  branches/2017Q2/games/xscavenger/files/patch-x.c
     - copied unchanged from r444423, head/games/xscavenger/files/patch-x.c
Modified:
  branches/2017Q2/games/xscavenger/Makefile
Directory Properties:
  branches/2017Q2/   (props changed)

Modified: branches/2017Q2/games/xscavenger/Makefile
==============================================================================
--- branches/2017Q2/games/xscavenger/Makefile	Wed Jun 28 02:43:31 2017	(r444535)
+++ branches/2017Q2/games/xscavenger/Makefile	Wed Jun 28 02:55:47 2017	(r444536)
@@ -3,6 +3,7 @@
 
 PORTNAME=	xscavenger
 PORTVERSION=	1.4.5
+PORTREVISION=	1
 CATEGORIES=	games
 MASTER_SITES=	http://www.linuxmotors.com/scavenger/downloads/
 

Copied: branches/2017Q2/games/xscavenger/files/patch-x.c (from r444423, head/games/xscavenger/files/patch-x.c)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2017Q2/games/xscavenger/files/patch-x.c	Wed Jun 28 02:55:47 2017	(r444536, copy of r444423, head/games/xscavenger/files/patch-x.c)
@@ -0,0 +1,12 @@
+--- x.c.orig	2014-11-18 19:58:49 UTC
++++ x.c
+@@ -445,7 +445,8 @@ int i;
+ 	i=0;
+ 	while(*p)
+ 	{
+-		fmap[tolower(*p)]=fmap[*p++]=i++;
++		fmap[tolower(*p)]=fmap[*p]=i++;
++		p++;
+ 	}
+ }
+ 


More information about the svn-ports-branches mailing list