diff options
author | David Seifert <soap@gentoo.org> | 2017-12-20 22:30:08 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-12-21 02:29:34 +0100 |
commit | 7ccaa73fe139442431c334a8682fc90b47fbeee1 (patch) | |
tree | bc530dbef7707a4b890cf303dfdc701c18922de9 /games-action | |
parent | games-action/deathchase3d: Remove old (diff) | |
download | gentoo-7ccaa73fe139442431c334a8682fc90b47fbeee1.tar.gz gentoo-7ccaa73fe139442431c334a8682fc90b47fbeee1.tar.bz2 gentoo-7ccaa73fe139442431c334a8682fc90b47fbeee1.zip |
games-action/descent1-demodata: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/descent1-demodata/descent1-demodata-1.4.ebuild | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/games-action/descent1-demodata/descent1-demodata-1.4.ebuild b/games-action/descent1-demodata/descent1-demodata-1.4.ebuild deleted file mode 100644 index 7eaea0b829a8..000000000000 --- a/games-action/descent1-demodata/descent1-demodata-1.4.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils unpacker games - -MY_PV=${PV/./} -DEMO="desc${MY_PV}sw.exe" - -DESCRIPTION="Demo data files for Descent 1" -HOMEPAGE="http://en.wikipedia.org/wiki/Descent_%28computer_game%29" -SRC_URI="http://icculus.org/d2x/data/${DEMO} - mirror://3dgamers/descent/${DEMO} - ftp://ftp.funet.fi/pub/msdos/games/interplay/${DEMO}" - -# See readme.txt -LICENSE="free-noncomm" - -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="" -DEPEND="app-arch/unzip - app-arch/unarj" - -S=${WORKDIR} - -src_unpack() { - unpack_zip ${A} - - unarj e DESCENT1.SOW || die - mv descent.pig{,1} - unarj e DESCENT2.SOW || die - mv descent.pig{,2} - - # From the sows, big porkie pies shall grow - cat descent.pig{1,2} > descent.pig || die - - rm *{1,2} *.{bat,exe,EXE,SOW,ubn} -} - -src_install() { - local dir=${GAMES_DATADIR}/d1x - - insinto "${dir}" - doins descent.* - - dodoc *.txt - - prepgamesdirs -} - -pkg_postinst() { - games_pkg_postinst - - elog "A client is needed to run the game, e.g. d1x-rebirth." - elog "Not all Descent 1 clients support the demo data." - echo -} |