summaryrefslogtreecommitdiff
path: root/games-action/descent2-data
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-12-21 20:47:17 +0000
committerV3n3RiX <venerix@redcorelinux.org>2017-12-21 20:47:17 +0000
commit4ab6db5717ef23f29320d4c6fb9ebdb8dec1f193 (patch)
treef7640b8b96a04499f1ce44a2cad122d45a8373bd /games-action/descent2-data
parent48bdeb0db9c7ffed22c6eb859ee40b55ba598b86 (diff)
gentoo resync : 21.12.2017
Diffstat (limited to 'games-action/descent2-data')
-rw-r--r--games-action/descent2-data/Manifest1
-rw-r--r--games-action/descent2-data/descent2-data-1.0.ebuild98
2 files changed, 0 insertions, 99 deletions
diff --git a/games-action/descent2-data/Manifest b/games-action/descent2-data/Manifest
index 2e9dc6231c3a..51769f7318e2 100644
--- a/games-action/descent2-data/Manifest
+++ b/games-action/descent2-data/Manifest
@@ -1,5 +1,4 @@
DIST d2xptch12.tgz 158419 BLAKE2B e4bd0d33fa8912b87f8018673c2f9fa9d965f96787b7af76da5473e0c6b06ca78303977cdb6e1f85affefe187b2f1e947eb477313b379bf2464e2a0ba95b74bf SHA512 14d59280e685a9c3d5e23e1d535f37f89768e022b795067793a994c5150685addfcacbd2dc52231804240d01d17d57b1db04335d41bc5930e3c8a845ebbb396b
DIST setup_descent2_2.1.0.10.exe 554371624 BLAKE2B fb05302652c7ba46c06d314453a03430850404c05fb8d43681b7505bdf1a3901d0875f0a63379b121c7338d9b3092410cfa77c5d98690c98b27b0bffaf00ae3d SHA512 0db1935864eb59002cc995dfe9c40badd72d0a3dcec61092b0760481cd3d1316db17631c05043b938e4b958d696c508ce379face9baa260dcc598c77b4460618
-EBUILD descent2-data-1.0.ebuild 2106 BLAKE2B d46ec60d5fe0a9e82d4656a091d4c955df09f7c067acbb64b177b137e41f71b89fffea619f3fda2af38a567f6292f97cf65c5d9dabaf83d2ba95e5fcdf29eab6 SHA512 9b6356245f8945f1e564c61b32fbf6fa9c7f610846d271f53567920aac9edbe41a0a9a802e8d35a5a03269e87d83bce86b5b4a52c94e0dd00cdfb6a5b2890d5f
EBUILD descent2-data-1.2.ebuild 2892 BLAKE2B b101311a0d5d880f068c90cb3cd70d2277bce1ef351c94a598c4247ccd2062cb4dad4d67a32c0f9c3d398891c6c5c517ce2baad61140c6dbd7e7f66f61221fd6 SHA512 81a9717dd2ace1af3852a2324bfbfe5226642fba07d9ce14906cb278d80385f6be77b73b58a9907364acfc45b2d38b70cc9a57fd0aa77f39cfed90edcf30ae26
MISC metadata.xml 249 BLAKE2B 7113a758d7abc93accec998a8843d8ef51ca8b72d72e659e224d5cec2a1a6a63e6c0605958091532ac6e51fa0d501ca4fd9f3f4a9e55baeb31519a02971b465f SHA512 895577c3a805c40581da03057b94e3f28f05f23012bf350c1e3575847d1a0fe40bb044a46f909012a200d991a400f6389358a60e9c2b5bef0da01fb26f846118
diff --git a/games-action/descent2-data/descent2-data-1.0.ebuild b/games-action/descent2-data/descent2-data-1.0.ebuild
deleted file mode 100644
index b526c21382fe..000000000000
--- a/games-action/descent2-data/descent2-data-1.0.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils cdrom games
-
-MY_PV=${PV/./}
-SOW="descent2.sow"
-
-DESCRIPTION="Data files for Descent 2"
-HOMEPAGE="http://www.interplay.com/games/product.asp?GameID=109"
-SRC_URI=""
-# Don't have a method of applying the ver 1.2 patch in Linux
-# http://www.interplay.com/support/product.asp?GameID=109
-# mirror://3dgamers/descent2/d2ptch${MY_PV}.exe
-
-# See readme.txt
-LICENSE="descent-data"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="videos"
-
-# d2x-0.2.5-r2 may include the CD data itself.
-# d2x-0.2.5-r3 does not include the CD data.
-# d2x-rebirth is favoured because it is stable.
-#RDEPEND="|| (
-# games-action/d2x-rebirth
-# >=games-action/d2x-0.2.5-r3 )"
-RDEPEND="!<games-action/d2x-0.2.5-r3"
-DEPEND="app-arch/unarj"
-
-S=${WORKDIR}
-dir=${GAMES_DATADIR}/d2x
-
-pkg_setup() {
- games_pkg_setup
-
- local m f need_cd="n"
-
- # Could have the ${SOW} file in ${DISTDIR}
- if [[ -e "${DISTDIR}/${SOW}" ]] ; then
- einfo "Using ${SOW} from ${DISTDIR}"
- # Check that the movies are available in ${DISTDIR} if needed
- if use videos ; then
- for m in {intro,other,robots}-{h,l}.mvl ; do
- [[ -e "${DISTDIR}/${m}" ]] || need_cd="y"
- done
- fi
- else
- need_cd="y"
- fi
-
- if [[ "${need_cd}" == "y" ]] ; then
- # The Descent 2 CD is needed
- cdrom_get_cds "d2data/${SOW}"
- fi
-}
-
-src_unpack() {
- local m f="${DISTDIR}/${SOW}"
-
- [[ -e "${f}" ]] || f="${CDROM_ROOT}/d2data/${SOW}"
- # Extract level data
- unarj e "${f}" || die
-
- if use videos ; then
- # Include both high and low resolution movie files
- for m in {intro,other,robots}-{h,l}.mvl ; do
- f="${DISTDIR}/${m}"
- [[ -e "${f}" ]] || f="${CDROM_ROOT}/d2data/${m}"
- einfo "Copying ${m}"
- cp -f "${f}" . || die
- done
- fi
-
- rm -f endnote.txt
- mkdir doc
- mv -f *.txt doc
-
- # Remove files not needed by any Linux native client
- rm -f *.{bat,dll,exe,ini,lst}
-}
-
-src_install() {
- insinto "${dir}"
- doins *
-
- dodoc doc/*
-
- prepgamesdirs
-}
-
-pkg_postinst() {
- games_pkg_postinst
-
- elog "A client is needed to run the game, e.g. games-action/d2x-rebirth."
- echo
-}