From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D2AB8138334 for ; Sun, 14 Oct 2018 23:36:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C947BE0863; Sun, 14 Oct 2018 23:36:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A6514E0863 for ; Sun, 14 Oct 2018 23:36:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EFE5C335CCB for ; Sun, 14 Oct 2018 23:36:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4095C43D for ; Sun, 14 Oct 2018 23:36:22 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1539560171.2aba3bb1da03af75fd6e0b01a250053704e6d48f.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-rpg/arx-fatalis-demo/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-rpg/arx-fatalis-demo/arx-fatalis-demo-0.ebuild X-VCS-Directories: games-rpg/arx-fatalis-demo/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 2aba3bb1da03af75fd6e0b01a250053704e6d48f X-VCS-Branch: master Date: Sun, 14 Oct 2018 23:36:22 +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: 0f380646-a686-442f-9330-d1a2d4d2706e X-Archives-Hash: 157ea9edabecc45b994c6cad3fe58f6a commit: 2aba3bb1da03af75fd6e0b01a250053704e6d48f Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Oct 14 23:35:23 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Oct 14 23:36:11 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2aba3bb1 games-rpg/arx-fatalis-demo: Drop old Signed-off-by: Andreas Sturmlechner gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 .../arx-fatalis-demo/arx-fatalis-demo-0.ebuild | 53 ---------------------- 1 file changed, 53 deletions(-) diff --git a/games-rpg/arx-fatalis-demo/arx-fatalis-demo-0.ebuild b/games-rpg/arx-fatalis-demo/arx-fatalis-demo-0.ebuild deleted file mode 100644 index b3c07e2abd3..00000000000 --- a/games-rpg/arx-fatalis-demo/arx-fatalis-demo-0.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils games - -DESCRIPTION="Arx Fatalis demo" -HOMEPAGE="https://www.arkane-studios.com/uk/arx.php" -SRC_URI="arx_demo_english.zip" - -LICENSE="ArxFatalisDemo" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" -RESTRICT="fetch" - -RDEPEND="games-rpg/arx-libertatis" -DEPEND="app-arch/cabextract - app-arch/unzip" - -S=${WORKDIR} - -pkg_nofetch() { - einfo "Please find and download ${SRC_URI} and put it into ${DISTDIR}." - einfo "There is a list of possible download locations at" - einfo "http://wiki.arx-libertatis.org/Getting_the_game_data#Demo" -} - -src_unpack() { - unpack ${A} - cabextract Setup1.cab || die "cabextract failed" - cabextract Setup2.cab || die "cabextract failed" - cabextract Setup3.cab || die "cabextract failed" -} - -src_install() { - insinto "${GAMES_DATADIR}/${PN}" - doins -r *.pak bin/*.pak - insinto "${GAMES_DATADIR}/${PN}/misc" - doins bin/Logo.bmp bin/Arx.ttf - - # convert to lowercase - cd "${D}" - find . -type f -exec sh -c 'echo "${1}" - lower="`echo "${1}" | tr [:upper:] [:lower:]`" - [ "${1}" = "${lower}" ] || mv "${1}" "${lower}"' - {} \; - - make_desktop_entry "arx --data-dir=${GAMES_DATADIR}/arx-fatalis-demo" \ - "Arx Fatalis Demo" arx-libertatis - - prepgamesdirs -}