diff options
Diffstat (limited to 'games')
-rw-r--r-- | games/0ad/Makefile | 2 | ||||
-rw-r--r-- | games/0ad/files/patch-icu68 | 17 | ||||
-rw-r--r-- | games/an/Makefile | 2 | ||||
-rw-r--r-- | games/easyrpg-player/Makefile | 1 | ||||
-rw-r--r-- | games/liblcf/Makefile | 1 | ||||
-rw-r--r-- | games/openrct2/Makefile | 1 | ||||
-rw-r--r-- | games/openttd/Makefile | 1 | ||||
-rw-r--r-- | games/openttd/files/patch-icu68 | 17 | ||||
-rw-r--r-- | games/widelands/Makefile | 1 |
9 files changed, 41 insertions, 2 deletions
diff --git a/games/0ad/Makefile b/games/0ad/Makefile index 58cb16cf9446..fd1ae3e6da87 100644 --- a/games/0ad/Makefile +++ b/games/0ad/Makefile @@ -2,7 +2,7 @@ PORTNAME= 0ad PORTVERSION= 0.0.23b -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= games MASTER_SITES= http://releases.wildfiregames.com/ \ SF/zero-ad/releases diff --git a/games/0ad/files/patch-icu68 b/games/0ad/files/patch-icu68 new file mode 100644 index 000000000000..5e9199d89535 --- /dev/null +++ b/games/0ad/files/patch-icu68 @@ -0,0 +1,17 @@ +Regressed by https://github.com/unicode-org/icu/commit/c3fe7e09d844 + +../../../source/i18n/L10n.cpp:208:82: error: use of undeclared identifier 'TRUE' + currentLocaleIsOriginalGameLocale = (currentLocale == icu::Locale::getUS()) == TRUE; + ^ + +--- source/i18n/L10n.cpp.orig 2018-04-10 18:13:32 UTC ++++ source/i18n/L10n.cpp +@@ -205,7 +205,7 @@ void L10n::ReevaluateCurrentLocaleAndReload() + else + { + GetDictionaryLocale(locale, currentLocale); +- currentLocaleIsOriginalGameLocale = (currentLocale == icu::Locale::getUS()) == TRUE; ++ currentLocaleIsOriginalGameLocale = (currentLocale == icu::Locale::getUS()) == true; + useLongStrings = false; + } + LoadDictionaryForCurrentLocale(); diff --git a/games/an/Makefile b/games/an/Makefile index d83f20dc0415..014d2701a317 100644 --- a/games/an/Makefile +++ b/games/an/Makefile @@ -3,7 +3,7 @@ PORTNAME= an PORTVERSION= 1.2 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= games MASTER_SITES= DEBIAN_POOL DISTNAME= ${PORTNAME}_${PORTVERSION}.orig diff --git a/games/easyrpg-player/Makefile b/games/easyrpg-player/Makefile index c438b7234090..67c80a1391cb 100644 --- a/games/easyrpg-player/Makefile +++ b/games/easyrpg-player/Makefile @@ -3,6 +3,7 @@ PORTNAME= easyrpg-player PORTVERSION= 0.6.2.3 +PORTREVISION= 1 CATEGORIES= games MAINTAINER= amdmi3@FreeBSD.org diff --git a/games/liblcf/Makefile b/games/liblcf/Makefile index 185cbb82f102..578befa55020 100644 --- a/games/liblcf/Makefile +++ b/games/liblcf/Makefile @@ -3,6 +3,7 @@ PORTNAME= liblcf PORTVERSION= 0.6.2 +PORTREVISION= 1 CATEGORIES= games MAINTAINER= amdmi3@FreeBSD.org diff --git a/games/openrct2/Makefile b/games/openrct2/Makefile index f9fc53b503a5..9562c6a11b9b 100644 --- a/games/openrct2/Makefile +++ b/games/openrct2/Makefile @@ -4,6 +4,7 @@ PORTNAME= openrct2 DISTVERSIONPREFIX= v DISTVERSION= 0.3.1 +PORTREVISION= 1 CATEGORIES= games MAINTAINER= pkubaj@FreeBSD.org diff --git a/games/openttd/Makefile b/games/openttd/Makefile index 03db20a90083..145e976b38e8 100644 --- a/games/openttd/Makefile +++ b/games/openttd/Makefile @@ -3,6 +3,7 @@ PORTNAME= openttd DISTVERSION= 1.10.3 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= https://proxy.binaries.openttd.org/openttd-releases/${DISTVERSION}/ DISTNAME= ${PORTNAME}-${DISTVERSION}-source diff --git a/games/openttd/files/patch-icu68 b/games/openttd/files/patch-icu68 new file mode 100644 index 000000000000..1c2fa15cf409 --- /dev/null +++ b/games/openttd/files/patch-icu68 @@ -0,0 +1,17 @@ +Regressed by https://github.com/unicode-org/icu/commit/c3fe7e09d844 + +src/gfx_layout.cpp:119:9: error: use of undeclared identifier 'FALSE' + return FALSE; + ^ + +--- src/gfx_layout.cpp.orig 2020-08-09 17:56:38 UTC ++++ src/gfx_layout.cpp +@@ -116,7 +116,7 @@ void Font::getGlyphAdvance(LEGlyphID glyph, LEPoint &a + + le_bool Font::getGlyphPoint(LEGlyphID glyph, le_int32 pointNumber, LEPoint &point) const + { +- return FALSE; ++ return false; + } + + /** diff --git a/games/widelands/Makefile b/games/widelands/Makefile index f1f913af14f8..2e9a6144b2b0 100644 --- a/games/widelands/Makefile +++ b/games/widelands/Makefile @@ -3,6 +3,7 @@ PORTNAME= widelands DISTVERSION= build21 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= https://launchpad.net/widelands/${DISTVERSION}/${DISTVERSION}/+download/ \ https://mirror.amdmi3.ru/distfiles/ |