summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2017-12-20 22:30:19 +0100
committerDavid Seifert <soap@gentoo.org>2017-12-21 02:41:56 +0100
commit18a39bc7c4b1baef512c4a387cfcac207b73d9eb (patch)
tree04250766519c829d8f733f471efc74ffdc30ea2d /games-engines
parentgames-engines/openmw: Remove old (diff)
downloadgentoo-18a39bc7c4b1baef512c4a387cfcac207b73d9eb.tar.gz
gentoo-18a39bc7c4b1baef512c4a387cfcac207b73d9eb.tar.bz2
gentoo-18a39bc7c4b1baef512c4a387cfcac207b73d9eb.zip
games-engines/openxcom: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'games-engines')
-rw-r--r--games-engines/openxcom/openxcom-1.0.0.ebuild72
1 files changed, 0 insertions, 72 deletions
diff --git a/games-engines/openxcom/openxcom-1.0.0.ebuild b/games-engines/openxcom/openxcom-1.0.0.ebuild
deleted file mode 100644
index d45753ee281e..000000000000
--- a/games-engines/openxcom/openxcom-1.0.0.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils cmake-utils gnome2-utils games
-
-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() {
- mycmakeargs=(
- "-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}"
- "-DDATADIR=${GAMES_DATADIR}/${PN}"
- )
- 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 && dohtml -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
-
- prepgamesdirs
-}
-
-pkg_preinst() {
- games_pkg_preinst
- gnome2_icon_savelist
-}
-
-pkg_postinst() {
- games_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 "${GAMES_DATADIR}/${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 "${GAMES_DATADIR}/${PN}/data/Language"
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}