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 52855138010 for ; Tue, 28 Aug 2012 11:58:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F014FE0462; Tue, 28 Aug 2012 11:58:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id C4B03E0462 for ; Tue, 28 Aug 2012 11:58:40 +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 9AED733D898 for ; Tue, 28 Aug 2012 11:58:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 5D74AE543C for ; Tue, 28 Aug 2012 11:58:38 +0000 (UTC) From: "Christian Schmitt" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christian Schmitt" Message-ID: <1346154995.74e8bf7d23ac4c204068838224e012846ef40ce1.christian@gentoo> Subject: [gentoo-commits] proj/gamerlay:master commit in: dev-games/simgear/ X-VCS-Repository: proj/gamerlay X-VCS-Files: dev-games/simgear/simgear-9999.ebuild X-VCS-Directories: dev-games/simgear/ X-VCS-Committer: christian X-VCS-Committer-Name: Christian Schmitt X-VCS-Revision: 74e8bf7d23ac4c204068838224e012846ef40ce1 X-VCS-Branch: master Date: Tue, 28 Aug 2012 11:58:38 +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: cf5e4626-38bd-4fab-857d-d58e1b8490db X-Archives-Hash: 11426c90f551109ecac92e163d4b707f commit: 74e8bf7d23ac4c204068838224e012846ef40ce1 Author: Christian Schmitt ilovelinux de> AuthorDate: Tue Aug 28 11:19:34 2012 +0000 Commit: Christian Schmitt ilovelinux de> CommitDate: Tue Aug 28 11:56:35 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=74e8bf7d [dev-games/simgear-9999] sync with portage --- dev-games/simgear/simgear-9999.ebuild | 30 ++++++++++++++++++++---------- 1 files changed, 20 insertions(+), 10 deletions(-) diff --git a/dev-games/simgear/simgear-9999.ebuild b/dev-games/simgear/simgear-9999.ebuild index 4628af7..9821d47 100644 --- a/dev-games/simgear/simgear-9999.ebuild +++ b/dev-games/simgear/simgear-9999.ebuild @@ -17,25 +17,35 @@ EGIT_REPO_URI="git://mapserver.flightgear.org/simgear/ LICENSE="GPL-2" SLOT="0" KEYWORDS="" -IUSE="subversion X" +IUSE="debug +subversion test X" -RDEPEND="dev-libs/boost +COMMON_DEPEND=" + sys-libs/zlib X? ( >=dev-games/openscenegraph-3.0[png] media-libs/openal - subversion? ( dev-vcs/subversion ) + virtual/opengl + subversion? ( + dev-libs/apr + dev-vcs/subversion + ) ) " -DEPEND="${RDEPEND}" +DEPEND="${COMMON_DEPEND} + >=dev-libs/boost-1.37 +" + +RDEPEND="${COMMON_DEPEND}" -DOCS=(NEWS AUTHORS) +DOCS=(AUTHORS ChangeLog NEWS README Thanks) src_configure() { - mycmakeargs=( - -DSIMGEAR_SHARED=ON - $(cmake-utils_use subversion ENABLE_LIBSVN) - $(cmake-utils_use !X SIMGEAR_HEADLESS) + local mycmakeargs=( + -DENABLE_RTI=OFF + -DSIMGEAR_SHARED=ON + $(cmake-utils_use_enable subversion LIBSVN) + $(cmake-utils_use !X SIMGEAR_HEADLESS) + $(cmake-utils_use_enable test TESTS) ) - cmake-utils_src_configure }