diff options
author | John M. Harris, Jr. <johnmh@johnmh.me> | 2024-06-16 20:40:37 -0700 |
---|---|---|
committer | John M. Harris, Jr. <johnmh@johnmh.me> | 2024-06-16 20:40:41 -0700 |
commit | 5a14d56c3bf1b8d0e31369f73903e9b5e113a46d (patch) | |
tree | 67299fa1f8508ad45fddaad20b089203f548dd7a | |
parent | games-strategy/freeorion: Update ebuild (diff) | |
download | johnmh-5a14d56c3bf1b8d0e31369f73903e9b5e113a46d.tar.gz johnmh-5a14d56c3bf1b8d0e31369f73903e9b5e113a46d.tar.bz2 johnmh-5a14d56c3bf1b8d0e31369f73903e9b5e113a46d.zip |
games-strategy/freeorion: Remove ebuild
Signed-off-by: John M. Harris, Jr. <johnmh@johnmh.me>
-rw-r--r-- | games-strategy/freeorion/Manifest | 2 | ||||
-rw-r--r-- | games-strategy/freeorion/freeorion-0.4.6.ebuild | 95 |
2 files changed, 0 insertions, 97 deletions
diff --git a/games-strategy/freeorion/Manifest b/games-strategy/freeorion/Manifest deleted file mode 100644 index 533743a..0000000 --- a/games-strategy/freeorion/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST freeorion-0.4.6.tar.gz 145720274 SHA256 3e3ff3a758c8a1ffa71773dff18faff2c792051bb5162758b5f5b8ea59e8e311 SHA512 0488e36286358e8db2dcfe0cdae68e4638388fd2d4c627a258cdecf0afd57e9dbac03111f7683c3ef22edecbedd197a172d177400ddbb585a50f34804a50c50a WHIRLPOOL 30d56a2ca76158168492aa0d1b3fe5a9f164afd7dc378128fe2796ce149a9d65a64cd10c41c5b6c1510773e9ead564dff452869e6c384d949cd0789a51198b6c -EBUILD freeorion-0.4.6.ebuild 2229 SHA256 81a2042cfc6943919aed4bf20c34ba9438238e7634d71e57617e8ef2ac392d19 SHA512 9f4fc17d0b811278f1bd41a71bed0ae4ed8c9014d7e208aa7c3e299f1e2225d9f0f66d752f95aa9fde03042861db32f3024e2cf289529a01abec30ae6f4499e2 WHIRLPOOL 01abd20e0391ebcbea14f87e5a0a55ca79df608265147b8b53ee3c2d9a8d44edfdd7803f33dc1a4125e0032d9c83dcb2c073481b2c3c5bdb2f61c81e89c404fc diff --git a/games-strategy/freeorion/freeorion-0.4.6.ebuild b/games-strategy/freeorion/freeorion-0.4.6.ebuild deleted file mode 100644 index 4dd558e..0000000 --- a/games-strategy/freeorion/freeorion-0.4.6.ebuild +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) -inherit cmake-utils python-any-r1 games - -DESCRIPTION="A free turn-based space empire and galactic conquest game" -HOMEPAGE="http://www.freeorion.org" -SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/FreeOrion_v0.4.6_2016-09-16.49f9123_Source.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2 LGPL-2.1 CC-BY-SA-3.0" -SLOT="0" -KEYWORDS="~amd64" -IUSE="cg" - -# Needs it's own version of GG(dev-games/gigi) which it ships. -# The split version dev-games/gigi is not used anymore as of 0.4.3 -RDEPEND=" - !dev-games/gigi - media-libs/libsdl2 - >=dev-libs/boost-1.47[python] - media-libs/freealut - media-libs/libogg - media-libs/libsdl[X,opengl,video] - media-libs/libvorbis - media-libs/openal - sys-libs/zlib - virtual/opengl" -DEPEND="${RDEPEND} - ${PYTHON_DEPS} - virtual/pkgconfig" - -CMAKE_USE_DIR="${S}" -CMAKE_VERBOSE="1" - -pkg_setup() { - # build system is using FindPythonLibs.cmake which needs python:2 - python-any-r1_pkg_setup - games_pkg_setup -} - -src_unpack() { - default - mv src-tarball "${P}" || die - } - -src_prepare() { - # parse subdir sets -O3 - sed -e "s:-O3::" -i parse/CMakeLists.txt -} - -src_configure() { - local mycmakeargs=( - -DRELEASE_COMPILE_FLAGS="" - -DCMAKE_SKIP_RPATH=ON - ) - - append-cppflags -DBOOST_OPTIONAL_CONFIG_USE_OLD_IMPLEMENTATION_OF_OPTIONAL - - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile -} - -src_install() { - # data files - rm "${CMAKE_USE_DIR}"/default/COPYING || die - insinto "${GAMES_DATADIR}"/${PN} - doins -r "${CMAKE_USE_DIR}"/default || die - - # bin - dogamesbin "${CMAKE_BUILD_DIR}"/${PN}{ca,d} || die - newgamesbin "${CMAKE_BUILD_DIR}"/${PN} ${PN}.bin || die - games_make_wrapper ${PN} \ - "${GAMES_BINDIR}/${PN}.bin --resource-dir ${GAMES_DATADIR}/${PN}/default" \ - "${GAMES_DATADIR}/${PN}" - - # lib - dogameslib "${CMAKE_BUILD_DIR}"/libfreeorion{common,parse}.so || die - dogameslib "${CMAKE_BUILD_DIR}"/libGiGi*.so || die - - # other - dodoc "${CMAKE_USE_DIR}"/ChangeLog.md || die - newicon "${CMAKE_USE_DIR}"/default/data/art/icons/FO_Icon_32x32.png \ - ${PN}.png || die - make_desktop_entry ${PN} ${PN} ${PN} - - # permissions - prepgamesdirs -} |