aboutsummaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
authoramdmi3 <amdmi3@FreeBSD.org>2018-08-06 04:25:54 +0800
committeramdmi3 <amdmi3@FreeBSD.org>2018-08-06 04:25:54 +0800
commit3fd4af3bdf8b4e1aa5562d8c62a397b78246acdb (patch)
treef9d588f6d602a56fa46371754425d470a213766f /games
parent30feb57680a8a874603dcaac053efe262d5b52fd (diff)
downloadfreebsd-ports-gnome-3fd4af3bdf8b4e1aa5562d8c62a397b78246acdb.tar.gz
freebsd-ports-gnome-3fd4af3bdf8b4e1aa5562d8c62a397b78246acdb.tar.zst
freebsd-ports-gnome-3fd4af3bdf8b4e1aa5562d8c62a397b78246acdb.zip
- Update to 0.4.8-rc2
Diffstat (limited to 'games')
-rw-r--r--games/freeorion/Makefile3
-rw-r--r--games/freeorion/distinfo6
-rw-r--r--games/freeorion/files/patch-boost16729
3 files changed, 4 insertions, 34 deletions
diff --git a/games/freeorion/Makefile b/games/freeorion/Makefile
index a7493f4e3c57..c4dc541babc6 100644
--- a/games/freeorion/Makefile
+++ b/games/freeorion/Makefile
@@ -3,8 +3,7 @@
PORTNAME= freeorion
DISTVERSIONPREFIX= v
-DISTVERSION= 0.4.8-rc1
-PORTREVISION= 1
+DISTVERSION= 0.4.8-rc2
CATEGORIES= games
MAINTAINER= amdmi3@FreeBSD.org
diff --git a/games/freeorion/distinfo b/games/freeorion/distinfo
index d0976f8aaca2..a86bf3f7d61b 100644
--- a/games/freeorion/distinfo
+++ b/games/freeorion/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1530197828
-SHA256 (freeorion-freeorion-v0.4.8-rc1_GH0.tar.gz) = 0963ec3573b8ab71278687a9ad143fda083171b651adab6b3cf6705fe93741c9
-SIZE (freeorion-freeorion-v0.4.8-rc1_GH0.tar.gz) = 106224914
+TIMESTAMP = 1533298586
+SHA256 (freeorion-freeorion-v0.4.8-rc2_GH0.tar.gz) = 7a88858021cc23e308cb333327b16feccadc636c9afac2ba602e9dc5842745c0
+SIZE (freeorion-freeorion-v0.4.8-rc2_GH0.tar.gz) = 106234158
diff --git a/games/freeorion/files/patch-boost167 b/games/freeorion/files/patch-boost167
deleted file mode 100644
index 88d6983e655b..000000000000
--- a/games/freeorion/files/patch-boost167
+++ /dev/null
@@ -1,29 +0,0 @@
-commit 618568705a0ca37ffd9e88d08cda3d3601d01d98
-Author: Dmitry Marakasov <amdmi3@amdmi3.ru>
-Date: Fri Jun 29 19:42:52 2018 +0300
-
- Fix compatibility with boost 1.67.0
-
-diff --git CMakeLists.txt CMakeLists.txt
-index 5b2fe63a7..4d26e06a2 100644
---- CMakeLists.txt
-+++ CMakeLists.txt
-@@ -204,11 +204,17 @@ find_package(Boost ${MINIMUM_BOOST_VERSION}
- log_setup
- regex
- serialization
-- python
- signals
- system
- thread
- REQUIRED)
-+if(${Boost_VERSION} GREATER 106699) # boost >= 1.67
-+ find_package(Boost COMPONENTS python27 REQUIRED)
-+ set(Boost_PYTHON_LIBRARY ${Boost_PYTHON27_LIBRARY})
-+else()
-+ find_package(Boost COMPONENTS python REQUIRED)
-+endif()
-+
- find_package(ZLIB REQUIRED)
- if(NOT BUILD_HEADLESS)
- find_package(Freetype REQUIRED)