From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1SSP43-0002wk-7i for garchives@archives.gentoo.org; Thu, 10 May 2012 08:49:35 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E75BCE0773; Thu, 10 May 2012 08:49:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 91A14E0773 for ; Thu, 10 May 2012 08:49:25 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 90EBE1B4026 for ; Thu, 10 May 2012 08:49:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 52407E542D for ; Thu, 10 May 2012 08:49:23 +0000 (UTC) From: "Christian Schmitt" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christian Schmitt" Message-ID: <1336639485.6f9a911257b505e2feed1edd02a7b69a521a16fd.christian@gentoo> Subject: [gentoo-commits] proj/gamerlay:master commit in: games-simulation/flightgear/ X-VCS-Repository: proj/gamerlay X-VCS-Files: games-simulation/flightgear/flightgear-9999.ebuild X-VCS-Directories: games-simulation/flightgear/ X-VCS-Committer: christian X-VCS-Committer-Name: Christian Schmitt X-VCS-Revision: 6f9a911257b505e2feed1edd02a7b69a521a16fd X-VCS-Branch: master Date: Thu, 10 May 2012 08:49:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 03c97076-347b-4b19-a6fb-fac00df897de X-Archives-Hash: 82292b8f1f27bfb170586527c902a8d0 commit: 6f9a911257b505e2feed1edd02a7b69a521a16fd Author: Christian Schmitt ilovelinux de> AuthorDate: Thu May 10 08:30:05 2012 +0000 Commit: Christian Schmitt ilovelinux de> CommitDate: Thu May 10 08:44:45 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gamerlay.git;= a=3Dcommit;h=3D6f9a9112 [games-simulation/flightgear-9999] larcsim/UIUC FDMs depend on each other= . so get this right. --- games-simulation/flightgear/flightgear-9999.ebuild | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/games-simulation/flightgear/flightgear-9999.ebuild b/games-s= imulation/flightgear/flightgear-9999.ebuild index b894208..3280b63 100644 --- a/games-simulation/flightgear/flightgear-9999.ebuild +++ b/games-simulation/flightgear/flightgear-9999.ebuild @@ -29,15 +29,19 @@ DEPEND=3D"${RDEPEND}" DOCS=3D(AUTHORS ChangeLog NEWS README Thanks) =20 src_configure() { - mycmakeargs=3D( + if use uiuc || use larcsim; then + mycmakeargs=3D(-DENABLE_LARCSIM=3DON -DENABLE_UIUC_MODEL=3DON) + else + mycmakeargs=3D(-DENABLE_LARCSIM=3DOFF -DENABLE_UIUC_MODEL=3DOFF) + fi + + mycmakeargs+=3D( -DCMAKE_INSTALL_PREFIX=3D${GAMES_PREFIX} -DFG_DATA_DIR=3D"${GAMES_DATADIR}"/${PN}-live -DENABLE_FGADMIN=3DOFF -DWITH_FGPANEL=3DOFF $(cmake-utils_use_enable jsbsim) - $(cmake-utils_use_enable larcsim) $(cmake-utils_use subversion ENABLE_LIBSVN) - $(cmake-utils_use_enable uiuc) $(cmake-utils_use_enable yasim) ) cmake-utils_src_configure