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 A1503139695 for ; Mon, 3 Jul 2017 21:13:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D30D1FC008; Mon, 3 Jul 2017 21:13:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 391AA1FC00D for ; Mon, 3 Jul 2017 21:13:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 2704F3417EB for ; Mon, 3 Jul 2017 21:13:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 64F9474A4 for ; Mon, 3 Jul 2017 21:12:58 +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: <1499116367.eb89277907b71f9430a2920823b9c7b75a4ea82e.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-rpg/manaplus/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-rpg/manaplus/manaplus-9999.ebuild X-VCS-Directories: games-rpg/manaplus/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: eb89277907b71f9430a2920823b9c7b75a4ea82e X-VCS-Branch: master Date: Mon, 3 Jul 2017 21:12:58 +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: dc6e084c-ef87-4eee-b4b7-4253de905236 X-Archives-Hash: 0acf55f101d0acc94c686b27c7cc31e0 commit: eb89277907b71f9430a2920823b9c7b75a4ea82e Author: Lars Wendler gentoo org> AuthorDate: Mon Jul 3 21:09:16 2017 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Jul 3 21:12:47 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb892779 games-rpg/manaplus: Sync live ebuild. Package-Manager: Portage-2.3.6, Repoman-2.3.2 games-rpg/manaplus/manaplus-9999.ebuild | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/games-rpg/manaplus/manaplus-9999.ebuild b/games-rpg/manaplus/manaplus-9999.ebuild index e7df6f7097d..2d5897b5d6f 100644 --- a/games-rpg/manaplus/manaplus-9999.ebuild +++ b/games-rpg/manaplus/manaplus-9999.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 @@ -62,16 +62,17 @@ src_prepare() { } src_configure() { - CONFIG_SHELL=/bin/bash \ - econf \ - --localedir=/usr/share/locale \ - --without-internalsdlgfx \ - $(use_with mumble) \ - $(use_enable nls) \ - $(use_with opengl) \ - --enable-libxml=$(usex pugixml pugixml libxml) \ - $(use_with sdl2) \ + local myeconfargs=( + --localedir=/usr/share/locale + --without-internalsdlgfx + $(use_with mumble) + $(use_enable nls) + $(use_with opengl) + --enable-libxml=$(usex pugixml pugixml libxml) + $(use_with sdl2) $(use_enable test unittests) + ) + CONFIG_SHELL=/bin/bash econf "${myeconfargs[@]}" } src_install() {