diff options
author | Azamat H. Hackimov <azamat.hackimov@gmail.com> | 2020-02-29 17:11:01 +0300 |
---|---|---|
committer | Azamat H. Hackimov <azamat.hackimov@gmail.com> | 2020-02-29 17:11:01 +0300 |
commit | 0de968708c799a58481f3479058eb4c700d89c51 (patch) | |
tree | 18cf515180740589467b9dfc58d7471095fdbafe /games-action | |
parent | games-action/rochard: update package (diff) | |
download | gamerlay-0de968708c799a58481f3479058eb4c700d89c51.tar.gz gamerlay-0de968708c799a58481f3479058eb4c700d89c51.tar.bz2 gamerlay-0de968708c799a58481f3479058eb4c700d89c51.zip |
games-action/overgrowth: remove package
Broken.
Signed-off-by: Azamat H. Hackimov <azamat.hackimov@gmail.com>
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/overgrowth/Manifest | 1 | ||||
-rw-r--r-- | games-action/overgrowth/metadata.xml | 14 | ||||
-rw-r--r-- | games-action/overgrowth/overgrowth-1_alpha194.ebuild | 100 |
3 files changed, 0 insertions, 115 deletions
diff --git a/games-action/overgrowth/Manifest b/games-action/overgrowth/Manifest deleted file mode 100644 index dd650dc..0000000 --- a/games-action/overgrowth/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST overgrowth-a194-linux.sh 2207669986 SHA256 1ffbf4dc9b7a1fd200495a656d1c1ff98efe29b27877f9263a9cafb95559e577 SHA512 bb38ae343761139158e9531dc413d4d0ca98ad79eb0f1bcfeab4587c6a32f32be83b6d4904716a499cf1529b941500fbd0dec15ab1b26c44812b2c84d596648a WHIRLPOOL e8b66e3c4a2b6bae757fd3e3d9f2a0cb17c64dd46724f98158ddfb5a9b2f6700a8b7dbb1d017f17621622fdb00a06e13e1065a85365757bbc58c87e774d100cd diff --git a/games-action/overgrowth/metadata.xml b/games-action/overgrowth/metadata.xml deleted file mode 100644 index 23da526..0000000 --- a/games-action/overgrowth/metadata.xml +++ /dev/null @@ -1,14 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer> - <email>mva@mva.name</email> - <description> - If you have any issues, please contact me, or try to find me in IRC on Freenode, OFTC or RusNet. - </description> - <name>Vadim A. Misbakh-Soloviov</name> -</maintainer> -<longdescription>FIXME</longdescription> -<use> -</use> -</pkgmetadata> diff --git a/games-action/overgrowth/overgrowth-1_alpha194.ebuild b/games-action/overgrowth/overgrowth-1_alpha194.ebuild deleted file mode 100644 index 8b18b5b..0000000 --- a/games-action/overgrowth/overgrowth-1_alpha194.ebuild +++ /dev/null @@ -1,100 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI="5" - -inherit games multilib unpacker-nixstaller - -DESCRIPTION="3d action-adventure game. Spiritual successor to Lugaru." -HOMEPAGE="http://www.wolfire.com/overgrowth/" - -SLOT="0" -LICENSE="as-is" -KEYWORDS="-* ~amd64 ~x86" -RESTRICT="fetch strip" -IUSE="video_cards_intel video_cards_nouveau video_cards_radeon video_cards_nvidia" - -QA_PRESTRIPPED="${GAMES_PREFIX_OPT}/${PN}/lib.*" -SRC_URI="${PN}-a194-linux.sh" - -RDEPEND=" - app-arch/bzip2 - app-arch/xz-utils - media-libs/freeimage - media-libs/freetype:2 - media-libs/ilmbase - virtual/jpeg - media-libs/lcms - media-libs/libogg - media-libs/libpng - media-libs/libraw - media-libs/libvorbis - virtual/opengl - media-libs/openal - media-libs/openexr - media-libs/openjpeg - media-libs/tiff - sys-libs/zlib - x11-libs/libdrm - x11-libs/libX11 - x11-libs/libXau - x11-libs/libxcb - x11-libs/libXdamage - x11-libs/libXdmcp - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXxf86vm - video_cards_intel? ( media-libs/libtxc_dxtn ) - video_cards_nouveau? ( media-libs/libtxc_dxtn ) - video_cards_radeon? ( media-libs/libtxc_dxtn ) - video_cards_nvidia? ( x11-drivers/nvidia-drivers ) -" -#=media-libs/libsdl-9999 (untill 2.0 will be added to the tree). -DEPEND="${RDEPEND}" - -S="${WORKDIR}" -#MY_PN="" - -pkg_nofetch() { - ewarn - ewarn "Place ${A} to ${DISTDIR}" - ewarn -} - -src_unpack() { - # FIXME !!!! - die "Package is disabled, while waiting new fixed distfile from upstream" - local arch; - use amd64 && arch=x86_64 || arch=x86 - nixstaller_unpack "subarch" \ - "instarchive_all" \ - "instarchive_linux_${arch}" #\ -# "deps/SDL2/SDL2_files_linux_${arch}" -} - -src_install() { - local dir="${GAMES_PREFIX_OPT}/${PN}" - local arch; - use amd64 && arch=x86_64 || arch=x86 - - insinto "${dir}" - doins \ - "${PN}.dat" \ - "${PN}.png" - - exeinto "${dir}" - doexe \ - "${MY_PN}.bin.${arch}" - - exeinto "${dir}/$(get_libdir)" - doexe \ - "$(get_libdir)/libSDL2-2.0.so.0" - - games_make_wrapper "${PN}" "./${MY_PN}.bin.${arch}" "${dir}" "${dir}/$(get_libdir)" - doicon "${PN}.png" || die - make_desktop_entry "${PN}" "${MY_PN}" - - dodoc README.linux - prepgamesdirs -} |