1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00

- Fix start crash

- Bump PORTREVISION

PR:		126680 (based on)
Submitted by:	Vitaly Magerya <vmagerya@gmail.com>
Approved by:	maintainer timeout
This commit is contained in:
Martin Wilke 2008-09-07 22:09:56 +00:00
parent 3ee8eafa7b
commit 943d9d90f3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=220180
4 changed files with 24 additions and 0 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= wormux
DISTVERSION= 0.8
PORTREVISION= 1
CATEGORIES= games
MASTER_SITES= http://download.gna.org/wormux/

View File

@ -0,0 +1,11 @@
--- src/game/config.h.orig 2008-08-20 13:36:54.000000000 +0300
+++ src/game/config.h 2008-08-20 13:35:42.000000000 +0300
@@ -126,7 +126,7 @@
const std::string& GetTtfFilename();
- std::string GetDataDir() const { return data_dir; };
+ std::string GetDataDir() const { return data_dir + "/"; };
std::string GetLocaleDir() const { return locale_dir; };
std::string GetPersonalDataDir() const { return personal_data_dir; };
std::string GetChatLogDir() const { return chat_log_dir; };

View File

@ -7,6 +7,7 @@
PORTNAME= wormux
DISTVERSION= 0.8
PORTREVISION= 1
CATEGORIES= games
MASTER_SITES= http://download.gna.org/wormux/

View File

@ -0,0 +1,11 @@
--- src/game/config.h.orig 2008-08-20 13:36:54.000000000 +0300
+++ src/game/config.h 2008-08-20 13:35:42.000000000 +0300
@@ -126,7 +126,7 @@
const std::string& GetTtfFilename();
- std::string GetDataDir() const { return data_dir; };
+ std::string GetDataDir() const { return data_dir + "/"; };
std::string GetLocaleDir() const { return locale_dir; };
std::string GetPersonalDataDir() const { return personal_data_dir; };
std::string GetChatLogDir() const { return chat_log_dir; };