diff options
author | James Le Cuirot <chewi@gentoo.org> | 2018-03-17 21:25:54 +0000 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2018-03-17 21:27:38 +0000 |
commit | ed8f18b47dd37a01008ae634d124e31621743dab (patch) | |
tree | 8f07fc85e3088e37dcf806dc77f714f6beae269d /games-engines | |
parent | games-engines/openxcom: Add 20180317 snapshot as releases are ancient (diff) | |
download | gentoo-ed8f18b47dd37a01008ae634d124e31621743dab.tar.gz gentoo-ed8f18b47dd37a01008ae634d124e31621743dab.tar.bz2 gentoo-ed8f18b47dd37a01008ae634d124e31621743dab.zip |
games-engines/openxcom: Drop old broken 1.0.0
Closes: https://bugs.gentoo.org/620270
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'games-engines')
-rw-r--r-- | games-engines/openxcom/Manifest | 1 | ||||
-rw-r--r-- | games-engines/openxcom/openxcom-1.0.0-r1.ebuild | 65 |
2 files changed, 0 insertions, 66 deletions
diff --git a/games-engines/openxcom/Manifest b/games-engines/openxcom/Manifest index dcb76731ffcf..c35c6bfe6d7f 100644 --- a/games-engines/openxcom/Manifest +++ b/games-engines/openxcom/Manifest @@ -1,2 +1 @@ -DIST openxcom-1.0.0.tar.gz 2068640 BLAKE2B ce1c35d3d25e5f327549b3656f4b41d6e37503619c7ccb13ee5382faba905f491c01a0e2af03b70b7237bea3f3fd4a51f7a2be2c44c1feade1b848ad1a414fa3 SHA512 597abd2e7160551a3d6020d7c6fec863f86b708910ee582d446f2a5f97be94dc7e2522ede2e7ab4f62a2d21acf07ce441a435f74b530950e2f0b5791c00e06ab DIST openxcom-1.0.0_p20180317.tar.gz 2801430 BLAKE2B 8a3718fc99f733c145034509b596de8dd17a8bdfe1aa05b68571c66245eea45f997488e57a2811f604e0aac702e30614fcd55ecc71858f49b357afb9e8fc5de4 SHA512 57ff9a9cbbbf48b8c4f792458edf0590d7d0df9a5805eab13a4c984713311e98587afca00778e82bd66fb2f330b354ca80703b87922a92f9ae48e5bdecf68442 diff --git a/games-engines/openxcom/openxcom-1.0.0-r1.ebuild b/games-engines/openxcom/openxcom-1.0.0-r1.ebuild deleted file mode 100644 index fcbf6ebf2629..000000000000 --- a/games-engines/openxcom/openxcom-1.0.0-r1.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit eutils cmake-utils gnome2-utils - -DESCRIPTION="An open-source reimplementation of the popular UFO: Enemy Unknown" -HOMEPAGE="http://openxcom.org/" -SRC_URI="https://github.com/SupSuper/OpenXcom/archive/v1.0.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3 CC-BY-SA-4.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc" - -RDEPEND=">=dev-cpp/yaml-cpp-0.5.1 - media-libs/libsdl[opengl,video] - media-libs/sdl-gfx - media-libs/sdl-image[png] - media-libs/sdl-mixer[flac,mikmod,vorbis]" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen )" - -DOCS=( README.txt ) - -S=${WORKDIR}/OpenXcom-1.0 - -src_configure() { - cmake-utils_src_configure -} - -src_compile() { - use doc && cmake-utils_src_compile doxygen - cmake-utils_src_compile -} - -src_install() { - cmake-utils_src_install - use doc && dodoc -r "${CMAKE_BUILD_DIR}"/docs/html/* - doicon -s scalable res/linux/icons/openxcom.svg - newicon -s 48 res/linux/icons/openxcom_48x48.png openxcom.png - newicon -s 128 res/linux/icons/openxcom_128x128.png openxcom.png - domenu res/linux/openxcom.desktop -} - -pkg_preinst() { - games_pkg_preinst - gnome2_icon_savelist -} - -pkg_postinst() { - gnome2_icon_cache_update - echo - elog "In order to play you need copy GEODATA, GEOGRAPH, MAPS, ROUTES, SOUND," - elog "TERRAIN, UFOGRAPH, UFOINTRO, UNITS folders from original X-COM game to" - elog "/usr/share/${PN}/data" - echo - elog "If you need or want text in some language other than english, download:" - elog "http://openxcom.org/translations/latest.zip and uncompress it in" - elog "/usr/share/${PN}/data/Language" -} - -pkg_postrm() { - gnome2_icon_cache_update -} |