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 6FF311382C5 for ; Wed, 16 May 2018 20:03:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7709EE08DB; Wed, 16 May 2018 20:03:26 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5270FE08DB for ; Wed, 16 May 2018 20:03:25 +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 7365E335C43 for ; Wed, 16 May 2018 20:03:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4F78E43 for ; Wed, 16 May 2018 20:03:21 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1526500987.f9c30273b0f84245c7be1fc01d822d1b4052db96.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-action/bzflag/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-action/bzflag/bzflag-2.4.14.ebuild X-VCS-Directories: games-action/bzflag/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: f9c30273b0f84245c7be1fc01d822d1b4052db96 X-VCS-Branch: master Date: Wed, 16 May 2018 20:03:21 +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: 135b4213-5a77-4744-b230-44a258c018b4 X-Archives-Hash: 0b4369435fdda5d713a4b169c3d5abed commit: f9c30273b0f84245c7be1fc01d822d1b4052db96 Author: Tupone Alfredo gentoo org> AuthorDate: Wed May 16 20:03:07 2018 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Wed May 16 20:03:07 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9c30273 games-action/bzflag: Fix plugins directory and --with-SDL Package-Manager: Portage-2.3.24, Repoman-2.3.6 games-action/bzflag/bzflag-2.4.14.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/games-action/bzflag/bzflag-2.4.14.ebuild b/games-action/bzflag/bzflag-2.4.14.ebuild index 59edcad4188..290ef54d300 100644 --- a/games-action/bzflag/bzflag-2.4.14.ebuild +++ b/games-action/bzflag/bzflag-2.4.14.ebuild @@ -48,11 +48,12 @@ src_configure() { ewarn myconf="--disable-client --without-SDL" else - myconf="--with-sdl=2" + myconf="--with-SDL=2" fi econf \ $(use_enable upnp UPnP) \ + --libdir=/usr/$(get_libdir)/${PN} \ ${myconf} }