From dcc2f6b146d0060e77564f6e87e56e64b59c569d Mon Sep 17 00:00:00 2001 From: Jan Segre Date: Fri, 11 Aug 2017 18:12:31 -0300 Subject: games-simulation/openrct2: drop old Closes: https://github.com/gentoo/gentoo/pull/5377 Package-Manager: Portage-2.3.6, Repoman-2.3.1 --- games-simulation/openrct2/Manifest | 1 - .../openrct2-0.1.0-remove-external-gtest.patch | 67 -------------- .../files/openrct2-0.1.0-respect-libdir.patch | 11 --- games-simulation/openrct2/openrct2-0.1.0.ebuild | 100 --------------------- 4 files changed, 179 deletions(-) delete mode 100644 games-simulation/openrct2/files/openrct2-0.1.0-remove-external-gtest.patch delete mode 100644 games-simulation/openrct2/files/openrct2-0.1.0-respect-libdir.patch delete mode 100644 games-simulation/openrct2/openrct2-0.1.0.ebuild (limited to 'games-simulation/openrct2') diff --git a/games-simulation/openrct2/Manifest b/games-simulation/openrct2/Manifest index 267f4e9c3e9a..178565bb243f 100644 --- a/games-simulation/openrct2/Manifest +++ b/games-simulation/openrct2/Manifest @@ -1,3 +1,2 @@ -DIST openrct2-0.1.0.tar.gz 6253207 SHA256 0347a47d380fc18ea543928c92a13d1bdb4431573154afeb80fa33f1149e6992 SHA512 102902f47948e2dc648a48897eddbb53bbd451fd6e9a66f397c6f026012131c11e3c5a5aa208b9d719a0e75aa244c9a3967ae3b98c33ba695fd622cb1bd18f12 WHIRLPOOL 18d1fc763606b9fb85fae9ba056ef3b8ae9be68903fbd137e045f594e273c954777c2ea2f2ede65e3695d43e4c4a714df9f77afaf07b5a6555a314e616188a3d DIST openrct2-0.1.1.tar.gz 6284135 SHA256 5d7a6c7f3c770e7de506958f86789c438c543c27d312fd096322cde4e89f50ad SHA512 fd84907819ac317af88c0446afcb04acdb43cd6671f0837f1294191aacf58e93887d46e6eb28d86f558577f4e7c834bc42a9ec486f67e0b64cb7bc0cc1bda427 WHIRLPOOL 9e673852d653fe8e1839db96d124b1cc1e7e4f7a594ec05c1a895c883da234e536851025c75e0fcacb3be776cb3dd1dea9ad7ac028cfda6434095146ba68c5e7 DIST openrct2-title-sequence-v0.1.0.zip 1766393 SHA256 1df6ad253896bd09b728616f7bf12f4b797ef9db2b9bab8465b08662f47f4bef SHA512 0d1b47c5fc5d1d9e5580b30d0f43d5532b388f1a5685060ca9313ec2f76c61a5fc96b8aa37689072b71edd9fb1aedddd46fa38c237ccb7198841d7bc33bf2a2b WHIRLPOOL f78612445dda2c55aa224e4df0ece92a5f762049ca1b6bcf4e00f72f6aaf900fb944a6a1dd358900b1968a63b301af8bf4b1ca0a645c43c0ca2221279efabd9a diff --git a/games-simulation/openrct2/files/openrct2-0.1.0-remove-external-gtest.patch b/games-simulation/openrct2/files/openrct2-0.1.0-remove-external-gtest.patch deleted file mode 100644 index 2c1392b731fc..000000000000 --- a/games-simulation/openrct2/files/openrct2-0.1.0-remove-external-gtest.patch +++ /dev/null @@ -1,67 +0,0 @@ ---- a/test/tests/CMakeLists.txt 2017-07-13 14:46:34.690292993 +0200 -+++ b/test/tests/CMakeLists.txt 2017-07-13 14:56:57.678054368 +0200 -@@ -2,61 +2,13 @@ - - option(DISABLE_RCT2_TESTS "Disable tests that require RollerCoaster Tycoon 2 assets.") - --# Bootstrap GoogleTest --INCLUDE(ExternalProject) -+find_package(GTest REQUIRED) - --ExternalProject_Add( -- googletest-distribution -- URL https://github.com/google/googletest/archive/release-1.8.0.tar.gz -- URL_HASH SHA1=e7e646a6204638fe8e87e165292b8dd9cd4c36ed -- TIMEOUT 10 -- CONFIGURE_COMMAND "" -- BUILD_COMMAND "" -- INSTALL_COMMAND "" --) -- --# Specify include dir --ExternalProject_Get_Property(googletest-distribution SOURCE_DIR) --set(GOOGLETEST_DISTRIB_SOURCE_DIR "${SOURCE_DIR}") -- --ExternalProject_Add( -- googletest -- DEPENDS googletest-distribution -- DOWNLOAD_COMMAND "" -- SOURCE_DIR "${GOOGLETEST_DISTRIB_SOURCE_DIR}/googletest" -- CMAKE_ARGS "-DCMAKE_CXX_FLAGS=${TARGET_M}" -- BUILD_BYPRODUCTS "googletest-prefix/src/googletest-build/${CMAKE_STATIC_LIBRARY_PREFIX}gtest${CMAKE_STATIC_LIBRARY_SUFFIX}" -- BUILD_BYPRODUCTS "googletest-prefix/src/googletest-build/${CMAKE_STATIC_LIBRARY_PREFIX}gtest_main${CMAKE_STATIC_LIBRARY_SUFFIX}" -- # Disable install step -- INSTALL_COMMAND "" -- # Wrap download, configure and build steps in a script to log output -- LOG_DOWNLOAD ON -- LOG_CONFIGURE ON -- LOG_BUILD ON) -- -- --# Specify include dir --set(GTEST_INCLUDE_DIR ${GOOGLETEST_DISTRIB_SOURCE_DIR}/googletest/include) -- --# Library --ExternalProject_Get_Property(googletest BINARY_DIR) --set(GOOGLETEST_BINARY_DIR "${BINARY_DIR}") --set(GTEST_LIBRARY_PATH ${GOOGLETEST_BINARY_DIR}/${CMAKE_STATIC_LIBRARY_PREFIX}gtest${CMAKE_STATIC_LIBRARY_SUFFIX}) --set(GTEST_MAIN_LIBRARY_PATH ${GOOGLETEST_BINARY_DIR}/${CMAKE_STATIC_LIBRARY_PREFIX}gtest_main${CMAKE_STATIC_LIBRARY_SUFFIX}) --set(GTEST_LIBRARY gtest) --set(GTEST_MAIN_LIBRARY gtest_main) --add_library(${GTEST_LIBRARY} STATIC IMPORTED) --add_library(${GTEST_MAIN_LIBRARY} STATIC IMPORTED) --set_property(TARGET ${GTEST_LIBRARY} PROPERTY IMPORTED_LOCATION ${GTEST_LIBRARY_PATH}) --set_property(TARGET ${GTEST_MAIN_LIBRARY} PROPERTY IMPORTED_LOCATION ${GTEST_MAIN_LIBRARY_PATH}) --add_dependencies(${GTEST_LIBRARY} googletest) --add_dependencies(${GTEST_MAIN_LIBRARY} ${GTEST_LIBRARY}) -- --include_directories(SYSTEM ${GTEST_INCLUDE_DIR}) -+include_directories(SYSTEM ${GTEST_INCLUDE_DIRS}) - include_directories("${ROOT_DIR}/src") - include_directories(${SDL2_INCLUDE_DIRS}) - --set(GTEST_LIBRARIES gtest gtest_main pthread) -+set(GTEST_LIBRARIES ${GTEST_BOTH_LIBRARIES}) - - # Some most common files required in tests - set(COMMON_TEST_SOURCES diff --git a/games-simulation/openrct2/files/openrct2-0.1.0-respect-libdir.patch b/games-simulation/openrct2/files/openrct2-0.1.0-respect-libdir.patch deleted file mode 100644 index 606958027642..000000000000 --- a/games-simulation/openrct2/files/openrct2-0.1.0-respect-libdir.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/CMakeLists.txt 2017-07-26 00:54:48.021345174 -0300 -+++ b/CMakeLists.txt 2017-07-26 00:54:39.510156990 -0300 -@@ -140,7 +140,7 @@ - if (PORTABLE) - install(TARGETS "libopenrct2" LIBRARY DESTINATION "bin") - else () -- install(TARGETS "libopenrct2" LIBRARY DESTINATION "lib") -+ install(TARGETS "libopenrct2" LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}") - endif () - endif () - install(TARGETS "openrct2" RUNTIME DESTINATION "bin") diff --git a/games-simulation/openrct2/openrct2-0.1.0.ebuild b/games-simulation/openrct2/openrct2-0.1.0.ebuild deleted file mode 100644 index a0f3e6270529..000000000000 --- a/games-simulation/openrct2/openrct2-0.1.0.ebuild +++ /dev/null @@ -1,100 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils gnome2-utils - -DESCRIPTION="An open source re-implementation of RollerCoaster Tycoon 2" -HOMEPAGE="https://openrct2.website/" -if [[ ${PV} == 9999 ]]; then - EGIT_REPO_URI="https://github.com/OpenRCT2/OpenRCT2.git" - EGIT_BRANCH="develop" - inherit git-r3 - SRC_URI="" -else - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/OpenRCT2/OpenRCT2/archive/v${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/OpenRCT2-${PV}" -fi - -TSV="0.1.0" -SRC_URI+=" https://github.com/OpenRCT2/title-sequences/releases/download/v${TSV}/title-sequence-v${TSV}.zip -> ${PN}-title-sequence-v${TSV}.zip " - -LICENSE="GPL-3" -SLOT="0" -IUSE="libressl +multiplayer opengl test truetype +twitch" - -# This is needed because of this bug: https://github.com/OpenRCT2/OpenRCT2/issues/5469 -REQUIRED_USE="multiplayer? ( twitch )" - -RDEPEND=" - >=dev-libs/jansson-2.5 - >=dev-libs/libzip-1.0 - media-libs/libpng:0= - media-libs/libsdl2 - || ( - media-libs/speexdsp -