From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4A0F01385B4 for ; Fri, 14 Aug 2015 23:10:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E4E0E07FB; Fri, 14 Aug 2015 23:10:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A161AE0804 for ; Fri, 14 Aug 2015 23:10:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 90545340CFD for ; Fri, 14 Aug 2015 23:10:52 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A4BFB14A for ; Fri, 14 Aug 2015 23:10:50 +0000 (UTC) From: "Julian Ospald" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julian Ospald" Message-ID: <1439591914.835d1539962d1ce52825925b9f49079fb0bc595f.hasufell@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-rpg/arx-fatalis-data/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-rpg/arx-fatalis-data/arx-fatalis-data-1.21-r1.ebuild X-VCS-Directories: games-rpg/arx-fatalis-data/ X-VCS-Committer: hasufell X-VCS-Committer-Name: Julian Ospald X-VCS-Revision: 835d1539962d1ce52825925b9f49079fb0bc595f X-VCS-Branch: master Date: Fri, 14 Aug 2015 23:10:50 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4698b27d-2901-4c48-9aa1-324763733429 X-Archives-Hash: 7e39f5143a077f9b3a933c09399f0f9f commit: 835d1539962d1ce52825925b9f49079fb0bc595f Author: Julian Ospald gentoo org> AuthorDate: Fri Aug 14 22:38:34 2015 +0000 Commit: Julian Ospald gentoo org> CommitDate: Fri Aug 14 22:38:34 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=835d1539 games-rpg/arx-fatalis-data: rm old .../arx-fatalis-data-1.21-r1.ebuild | 70 ---------------------- 1 file changed, 70 deletions(-) diff --git a/games-rpg/arx-fatalis-data/arx-fatalis-data-1.21-r1.ebuild b/games-rpg/arx-fatalis-data/arx-fatalis-data-1.21-r1.ebuild deleted file mode 100644 index 53eca8c..0000000 --- a/games-rpg/arx-fatalis-data/arx-fatalis-data-1.21-r1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -inherit eutils cdrom check-reqs games - -DESCRIPTION="Arx Fatalis data files" -HOMEPAGE="http://www.arkane-studios.com/uk/arx.php" -SRC_URI="http://download.zenimax.com/arxfatalis/patches/1.21/ArxFatalis_1.21_MULTILANG.exe" - -LICENSE="ArxFatalis-EULA-JoWooD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" -RESTRICT="mirror" - -RDEPEND="games-rpg/arx-libertatis" -DEPEND="app-arch/cabextract - app-arch/innoextract" - -LANGS="linguas_de +linguas_en linguas_es linguas_fr linguas_it linguas_ru" -IUSE="$IUSE $LANGS" -REQUIRED_USE="^^ ( ${LANGS//+/} )" - -CHECKREQS_DISK_BUILD="621M" -CHECKREQS_DISK_USR="617M" - -S=${WORKDIR} - -src_unpack() { - cdrom_get_cds bin/Arx.ttf - - local mylang - case ${LINGUAS} in - de) mylang="german" ;; - en) mylang="english" ;; - es) mylang="spanish" ;; - fr) mylang="french" ;; - it) mylang="italian" ;; - ru) mylang="russian" ;; - esac - elog "Chosen language is ${mylang}" - - find "${CDROM_ROOT}" -iname "setup*.cab" -exec cabextract '{}' \; - innoextract --lowercase --language=${mylang} \ - "${DISTDIR}"/ArxFatalis_1.21_MULTILANG.exe || die -} - -src_install() { - insinto "${GAMES_DATADIR}"/arx - doins -r app/{graph,misc} - find . -iname "*.pak" -exec doins '{}' \; - - dodoc app/{manual,map}.pdf - - # convert to lowercase - cd "${D}" - find . -type f -exec sh -c 'echo "${1}" - lower="`echo "${1}" | tr [:upper:] [:lower:]`" - [ "${1}" = "${lower}" ] || mv "${1}" "${lower}"' - {} \; - - prepgamesdirs -} - -pkg_postinst() { - elog "You need Arx Fatalis in the chosen language, otherwise set it in package.use!" - games_pkg_postinst -}