From 3fd4af3bdf8b4e1aa5562d8c62a397b78246acdb Mon Sep 17 00:00:00 2001 From: amdmi3 Date: Sun, 5 Aug 2018 20:25:54 +0000 Subject: - Update to 0.4.8-rc2 --- games/freeorion/Makefile | 3 +-- games/freeorion/distinfo | 6 +++--- games/freeorion/files/patch-boost167 | 29 ----------------------------- 3 files changed, 4 insertions(+), 34 deletions(-) delete mode 100644 games/freeorion/files/patch-boost167 (limited to 'games') 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 -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) -- cgit