From owner-svn-ports-head@freebsd.org Sat Jan 16 17:00:07 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id ED0294E4D3B; Sat, 16 Jan 2021 17:00:07 +0000 (UTC) (envelope-from rhurlin@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DJ46b6RYcz4XCL; Sat, 16 Jan 2021 17:00:07 +0000 (UTC) (envelope-from rhurlin@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CFFEC121DF; Sat, 16 Jan 2021 17:00:07 +0000 (UTC) (envelope-from rhurlin@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 10GH07Ze092789; Sat, 16 Jan 2021 17:00:07 GMT (envelope-from rhurlin@FreeBSD.org) Received: (from rhurlin@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 10GH07im092788; Sat, 16 Jan 2021 17:00:07 GMT (envelope-from rhurlin@FreeBSD.org) Message-Id: <202101161700.10GH07im092788@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rhurlin set sender to rhurlin@FreeBSD.org using -f From: Rainer Hurling Date: Sat, 16 Jan 2021 17:00:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r561738 - head/games/devilutionX X-SVN-Group: ports-head X-SVN-Commit-Author: rhurlin X-SVN-Commit-Paths: head/games/devilutionX X-SVN-Commit-Revision: 561738 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jan 2021 17:00:08 -0000 Author: rhurlin Date: Sat Jan 16 17:00:07 2021 New Revision: 561738 URL: https://svnweb.freebsd.org/changeset/ports/561738 Log: games/devilutionX: fix empty credits window Fix empty "Show Credits" window by changing TTF_FONT_PATH to TTF_FONT_DIR/TTF_FONT_NAME, introduced in v1.1.0 [1]. [1] https://github.com/diasurgical/devilutionX/commit/791aa60cab453899dfaa7456cde1e8c23fcbee79 PR: 252601 Submitted by: Nuno Teixeira (maintainer) Approved by: arrowd, tcberner (mentors, implicit) Modified: head/games/devilutionX/Makefile Modified: head/games/devilutionX/Makefile ============================================================================== --- head/games/devilutionX/Makefile Sat Jan 16 16:56:30 2021 (r561737) +++ head/games/devilutionX/Makefile Sat Jan 16 17:00:07 2021 (r561738) @@ -2,6 +2,7 @@ PORTNAME= devilutionX PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= games MAINTAINER= ed.arrakis@gmail.com @@ -30,7 +31,7 @@ CMAKE_ON= DEBUG CMAKE_ON= BINARY_RELEASE .endif -CXXFLAGS+= -DTTF_FONT_PATH=\\\"${LOCALBASE}/share/fonts/CharisSIL/CharisSIL-B.ttf\\\" +CXXFLAGS+= -DTTF_FONT_NAME=\\\"${LOCALBASE}/share/fonts/CharisSIL/CharisSIL-B.ttf\\\" PLIST_FILES= bin/devilutionx \ share/applications/devilutionx.desktop \