From owner-svn-ports-all@freebsd.org Wed Jun 28 02:55:49 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 45E51D961DA; Wed, 28 Jun 2017 02:55:49 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0EF1E23E1; Wed, 28 Jun 2017 02:55:48 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5S2tmQS059570; Wed, 28 Jun 2017 02:55:48 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5S2tlte059568; Wed, 28 Jun 2017 02:55:47 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706280255.v5S2tlte059568@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 28 Jun 2017 02:55:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r444536 - in branches/2017Q2/games/xscavenger: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2017Q2/games/xscavenger: . files X-SVN-Commit-Revision: 444536 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jun 2017 02:55:49 -0000 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++; + } + } +