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 2683D138334 for ; Mon, 16 Jul 2018 22:56:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1CF1EE0864; Mon, 16 Jul 2018 22:56:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 E7445E0864 for ; Mon, 16 Jul 2018 22:56:27 +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 E1E13335C9B for ; Mon, 16 Jul 2018 22:56:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 32A9C353 for ; Mon, 16 Jul 2018 22:56:23 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1531781676.c55d70f2f39a759c81554c0ee609cae389761c76.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-games/newton/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-games/newton/Manifest dev-games/newton/newton-3.14.ebuild X-VCS-Directories: dev-games/newton/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c55d70f2f39a759c81554c0ee609cae389761c76 X-VCS-Branch: master Date: Mon, 16 Jul 2018 22:56: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 X-Archives-Salt: 9e249ac6-78ed-482c-a2be-a0c8c593430e X-Archives-Hash: da8ef4c1750457bb03657036297fd4f6 commit: c55d70f2f39a759c81554c0ee609cae389761c76 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Jul 16 22:52:30 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Jul 16 22:54:36 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c55d70f2 dev-games/newton: 3.14 version bump Package-Manager: Portage-2.3.43, Repoman-2.3.10 dev-games/newton/Manifest | 1 + dev-games/newton/newton-3.14.ebuild | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/dev-games/newton/Manifest b/dev-games/newton/Manifest index 0ad456b309b..59eace5a1b8 100644 --- a/dev-games/newton/Manifest +++ b/dev-games/newton/Manifest @@ -1 +1,2 @@ DIST newton-3.13.zip 61059070 BLAKE2B d77dddb222084e2b0c56aa5d7c919f8aaeb00825027d5b75cfeaa33f2e893f7b2ac5f0cd5d14ff387edc924f2c22f11a9b5ca0e00976e4572f2821f78cc819e3 SHA512 767078222569fa6f3b0564fc5882eaa439b76b636101128f19db5047547b91e4a8be45ba8fadc426345db7784a17a7d1c22dce7e87533cba36fd70d145881f32 +DIST newton-3.14.tar.gz 31417588 BLAKE2B 40704d614928ea2927f21201d924641766cbb32393e3d1cc36ea8fca2158625847e20ec2f0b3fa9e70f30bb1d6f4d8c4795e19873392b8211b0efb015ccc10c7 SHA512 c86775329921faafc061516db8473ef3b17ee407ffe3d6aaca604f1b733f837bef18d394b2251dfa9cd1296e0f3c3ba61803e0e9b43a4ecb6abe42640b4773eb diff --git a/dev-games/newton/newton-3.14.ebuild b/dev-games/newton/newton-3.14.ebuild new file mode 100644 index 00000000000..e998f8cc5f0 --- /dev/null +++ b/dev-games/newton/newton-3.14.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils toolchain-funcs + +MY_P="${PN}-dynamics-${P}" +DESCRIPTION="Integrated solution for real time simulation of physics environments" +HOMEPAGE="http://newtondynamics.com/forum/newton.php" +SRC_URI="https://github.com/MADEAPPS/newton-dynamics/archive/${P}.tar.gz" + +LICENSE="ZLIB" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="" +DEPEND="" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + cmake-utils_src_prepare + sed -i -e '/packages/d' CMakeLists.txt || die +} + +src_configure() { + local mycmakeargs=( + -DCMAKE_INSTALL_PREFIX=/usr/ + -DNEWTON_DEMOS_SANDBOX=OFF + -DCMAKE_VERBOSE_MAKEFILE=ON + ) + cmake-utils_src_configure +}