diff options
Diffstat (limited to 'games-rpg/lure')
-rw-r--r-- | games-rpg/lure/Manifest | 1 | ||||
-rw-r--r-- | games-rpg/lure/lure-1.1.ebuild | 108 |
2 files changed, 0 insertions, 109 deletions
diff --git a/games-rpg/lure/Manifest b/games-rpg/lure/Manifest index 25d2c1f9c23c..ec6517061183 100644 --- a/games-rpg/lure/Manifest +++ b/games-rpg/lure/Manifest @@ -5,5 +5,4 @@ DIST lure-es-1.1.zip 2176970 BLAKE2B 61cb1a36d1033bac293b5cab30840f992581cb77fb3 DIST lure-fr-1.1.zip 3583274 BLAKE2B d6cf52139bf728ec15a10fd6e7d06e62e8a64f3acfcf9f2c79c217eb6618d756c3787ef04a296ee8829da5f5fd20312a342a961b06796b2658a6376701420f64 SHA512 d2972d1c19da2ff74f72e54290f53e4af89a96b9e647ef6d50c686fd1ff8433020eac78ab24613551be8343b854c80c61a1140fc2ccda3e20dd05f22c6fc7f4a DIST lure-it-1.1.zip 4718011 BLAKE2B ba04504dd9d35ac767de9933bd2c9b9629fb0fd0ff5a36044a81639657e87a2ae4041e5195c65853e9ea7a48f8f9977ed1b732fc05901d64582bb875b8587b16 SHA512 1af90c8867f6426983fd3eb22651f0f2ab425b1a74110bda0277339ad82c7cffcc9ba9d9790909f5120f8a4d5c2cd82ed1ef9555511fc4c4064dd1563ec75abf EBUILD lure-1.1-r1.ebuild 2825 BLAKE2B ea6409a258b061640195e651b667ee2ef569f67498dcdce8eaf87024ce80195c3e68f9e38b84e6108a27452ae64b05377a26bec1040e37dd7519f890632307b1 SHA512 a5fbc56953dbd81eab52ee85037b16050689f27a54ffbf177c49065af0049aeccad6bd16076d2b50e0b337012f2ab4a787b9f6f665b03f5b276156d70d0df2a8 -EBUILD lure-1.1.ebuild 2859 BLAKE2B 5928665eb87e11d612152e375bf54ec1db10a54152fa05fd0a91d220c06823dd5889e997e962ced44b6ad77b3ad413a33707aa254593c9a4c2c7b1b7d09fa2b5 SHA512 56376c23bbc252b06ed3b1dec533ca1cdd1bb20c616e97a8538f463285ec8eedd612899f67e58f9acaa48233bfd845383c05c527b1405cf5c13f96a9e41e251f MISC metadata.xml 330 BLAKE2B 4f070e6c8bc4c2f6b4efb4f0eb84ea861773fba85acda1f4dec223a6594e2cdf4ac90c895a98819e2fab2ba2cd30081aee591554d2e932025a9da6d3c16a275b SHA512 4541c93daab84bd6d0764adccf44bb4986ba02303e731b5b9a7a8060bb88a32c1cef91e2b2910e15915b67cf3ea2b5f31b4e637909d1d0b7c3b627f1134206dc diff --git a/games-rpg/lure/lure-1.1.ebuild b/games-rpg/lure/lure-1.1.ebuild deleted file mode 100644 index 4c243f2e4ed6..000000000000 --- a/games-rpg/lure/lure-1.1.ebuild +++ /dev/null @@ -1,108 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils games - -DAT_PV=0.13.1 -DESCRIPTION="Lure of the Temptress" -HOMEPAGE="http://www.revolution.co.uk/_display.php?id=10" -SRC_URI=" - http://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/tags/release-0-13-1/dists/engine-data/lure.dat -> lure-${DAT_PV}.dat - !linguas_en? ( !linguas_es? ( !linguas_fr? ( !linguas_de? ( !linguas_it? - ( mirror://sourceforge/scummvm/${P}.zip -> ${PN}-en-${PV}.zip ) ) ) ) ) - linguas_en? ( mirror://sourceforge/scummvm/${P}.zip -> ${PN}-en-${PV}.zip ) - linguas_es? ( mirror://sourceforge/scummvm/${PN}-es-${PV}.zip ) - linguas_fr? ( mirror://sourceforge/scummvm/${PN}-fr-${PV}.zip ) - linguas_de? ( mirror://sourceforge/scummvm/${PN}-de-${PV}.zip ) - linguas_it? ( mirror://sourceforge/scummvm/${PN}-it-${PV}.zip )" - -LICENSE="lure" -SLOT="0" -KEYWORDS="~amd64 ~x86" -LANGS_IUSE="linguas_en linguas_es linguas_de linguas_fr linguas_it" -IUSE=${LANGS_IUSE} -RESTRICT="mirror" - -RDEPEND=">=games-engines/scummvm-0.13.1" -DEPEND="${RDEPEND} - app-arch/unzip" - -S=${WORKDIR} - -any_linguas() { - use linguas_en || use linguas_es || use linguas_de || use linguas_fr || use linguas_it -} - -src_unpack() { - local lang - - if any_linguas ; then - for lang in ${LANGS_IUSE} - do - use ${lang} && unpack ${PN}-${lang/linguas_}-${PV}.zip - done - mv lure lure-en 2> /dev/null - else - unpack ${PN}-en-${PV}.zip - fi -} - -src_prepare() { - local lang f - - find . \ - \( -iname "*exe" \ - -o -iname "*ega" \ - -o -iname LICENSE.txt \) \ - -exec rm -f '{}' + - mkdir docs - if any_linguas ; then - for lang in ${LANGS_IUSE} - do - mkdir docs/${lang} - find lure-${lang/linguas_} \ - \( -iname "*pdf" \ - -o -iname README \ - -o -iname "*txt" \) \ - -exec mv '{}' docs/${lang} \; 2> /dev/null - done - else - find lure \ - \( -iname "*pdf" \ - -o -iname README \ - -o -iname "*txt" \) \ - -exec mv '{}' docs \; 2> /dev/null - fi - for f in $(find docs -type f) - do - mv ${f} ${f%.*}.$(echo ${f#*.} | tr '[[:upper:]]' '[[:lower:]]') 2> /dev/null - done -} - -src_install() { - local lang - - if any_linguas ; then - for lang in ${LANGS_IUSE} - do - if use ${lang} ; then - lang=${lang/linguas_} - insinto "${GAMES_DATADIR}"/${PN}-${lang} - newins "${DISTDIR}"/lure-${DAT_PV}.dat lure.dat - doins -r ${PN}-${lang}/* - games_make_wrapper ${PN}-${lang} "scummvm -q ${lang} -f -p \"${GAMES_DATADIR}/${PN}-${lang}\" lure" . - make_desktop_entry ${PN}-${lang} "Lure of the Temptress (${lang})" ${PN} - docinto linguas_${lang} - dodoc docs/linguas_${lang}/* - fi - done - else - insinto "${GAMES_DATADIR}"/${PN} - newins "${DISTDIR}"/lure-${DAT_PV}.dat lure.dat - doins -r ${PN}/* - games_make_wrapper ${PN} "scummvm -f -p \"${GAMES_DATADIR}/${PN}\" lure" . - make_desktop_entry ${PN} "Lure of the Temptress" - fi - prepgamesdirs -} |