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 8BAEF138247 for ; Wed, 8 Jan 2014 14:03:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B3AAE0C50; Wed, 8 Jan 2014 14:03:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 42106E0B4E for ; Wed, 8 Jan 2014 14:03:26 +0000 (UTC) Received: from 127.0.0.1 (ip-134-178-143-79.static.contabo.net [79.143.178.134]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: hasufell) by smtp.gentoo.org (Postfix) with ESMTPSA id C4F6C33F603 for ; Wed, 8 Jan 2014 14:03:22 +0000 (UTC) Message-ID: <52CD5AA4.4060907@gentoo.org> Date: Wed, 08 Jan 2014 14:03:16 +0000 From: hasufell Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org MIME-Version: 1.0 To: gentoo-dev@lists.gentoo.org Subject: [gentoo-dev] RFC: games.eclass patch: set --datarootdir=/usr/share Content-Type: multipart/mixed; boundary="------------090207090607030003080302" X-Archives-Salt: cee430b9-7b9e-4068-8903-3022202c79ef X-Archives-Hash: d99ceb36379833decb651ae5f1fee981 This is a multi-part message in MIME format. --------------090207090607030003080302 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 bug https://bugs.gentoo.org/show_bug.cgi?id=493954 from my own tinderbox run... nothing broke (or misplaced any files) -----BEGIN PGP SIGNATURE----- iQEcBAEBCgAGBQJSzVqjAAoJEFpvPKfnPDWzW8oH/292WLthspEMyage7H05+9h4 4IwI4A0gXVOffXSw9bgV4SDp5RZ1Ofd58Wn0iCMQIMKHuYTxJoXp/mhO4pSNsAze feiirFqem8jviRXruuU0pVBRz8REM98ImraZ6NAftkNHrL4xaY+/S/BjRf68QM9s 1pE8ljPlkirW1gjvfhqTnwBU7T8glwdA6MJO+3kaP0228AQvBj7pzwliJt1nj+n/ u+6lHT/KDgBMMoSakeeLbjJfDt6qU9Hsst9nN2LpoSePDSsEJqsZZe9UuJ1qlKGb xRAk6hudiR6TARwFLBSg6GjrnIv4ozy2SVQjGtrDI6jM/F5hoaBs9fxiJP4HA3c= =U1RG -----END PGP SIGNATURE----- --------------090207090607030003080302 Content-Type: text/x-patch; name="games.eclass.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="games.eclass.patch" --- eclass/games.eclass +++ eclass/games.eclass @@ -45,6 +45,11 @@ if grep -q -s disable-silent-rules "${ECONF_SOURCE:-.}"/configure ; then _gamesconf="--disable-silent-rules" fi + fi + + # bug 493954 + if grep -q -s datarootdir "${ECONF_SOURCE:-.}"/configure ; then + _gamesconf="${_gamesconf} --datarootdir=/usr/share" fi econf \ --------------090207090607030003080302--