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 0A384139694 for ; Wed, 5 Jul 2017 08:14:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 545CCE0BA0; Wed, 5 Jul 2017 08:14:06 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2D057E0BA0 for ; Wed, 5 Jul 2017 08:14:06 +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 1473834165C for ; Wed, 5 Jul 2017 08:14:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 921247466 for ; Wed, 5 Jul 2017 08:14:02 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1499242434.ece5f6c9f42b946f4d96613966615f6eedf1b12b.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-simulation/simutrans/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-simulation/simutrans/simutrans-0.120.2.2.ebuild X-VCS-Directories: games-simulation/simutrans/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: ece5f6c9f42b946f4d96613966615f6eedf1b12b X-VCS-Branch: master Date: Wed, 5 Jul 2017 08:14:02 +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: cc7c62fb-4aac-43a9-82e8-bb9ed1d7cd5e X-Archives-Hash: 647190c3d30ba0dd957038bdb8324657 commit: ece5f6c9f42b946f4d96613966615f6eedf1b12b Author: Lars Wendler gentoo org> AuthorDate: Wed Jul 5 08:13:54 2017 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Jul 5 08:13:54 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ece5f6c9 games-simulation/simutrans: Fixed broken rm call in src_prepare. Package-Manager: Portage-2.3.6, Repoman-2.3.2 games-simulation/simutrans/simutrans-0.120.2.2.ebuild | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/games-simulation/simutrans/simutrans-0.120.2.2.ebuild b/games-simulation/simutrans/simutrans-0.120.2.2.ebuild index aab9fb8ef31..f175a36b9e0 100644 --- a/games-simulation/simutrans/simutrans-0.120.2.2.ebuild +++ b/games-simulation/simutrans/simutrans-0.120.2.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -50,17 +50,15 @@ src_prepare() { default strip-flags # bug #293927 - echo "BACKEND=mixer_sdl -COLOUR_DEPTH=16 -OSTYPE=linux -VERBOSE=1" > config.default || die + printf "BACKEND=mixer_sdl\nCOLOUR_DEPTH=16\nOSTYPE=linux\nVERBOSE=1" \ + > config.default || die # make it look in the install location for the data sed -i \ -e "s:argv\[0\]:\"/usr/share/${PN}/\":" \ simmain.cc || die - rm -v simutrans/{simutrans,*.txt} || die + rm simutrans/*.txt || die } src_install() {