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 542BB1388C4 for ; Wed, 6 Jan 2016 07:53:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8FA52E086F; Wed, 6 Jan 2016 07:53:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0BBE8E0872 for ; Wed, 6 Jan 2016 07:53:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2FB0A340A69 for ; Wed, 6 Jan 2016 07:53:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8FF2FCF9 for ; Wed, 6 Jan 2016 07:53:09 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1452065148.3ba96f893fe3d245d76283e9f4fee235b10b0f18.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/openbabel-perl/ X-VCS-Repository: proj/sci X-VCS-Files: sci-chemistry/openbabel-perl/metadata.xml sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild X-VCS-Directories: sci-chemistry/openbabel-perl/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 3ba96f893fe3d245d76283e9f4fee235b10b0f18 X-VCS-Branch: master Date: Wed, 6 Jan 2016 07:53:09 +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: b0ab0976-8f39-4217-8107-67827dc4d8e9 X-Archives-Hash: 07f46cacff324179a3e3cdd6e18ef523 commit: 3ba96f893fe3d245d76283e9f4fee235b10b0f18 Author: Justin Lecher gentoo org> AuthorDate: Wed Jan 6 07:25:48 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Jan 6 07:25:48 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=3ba96f89 sci-chemistry/openbabel-perl: Respect CXXFLAGS Package-Manager: portage-2.2.26 Signed-off-by: Justin Lecher gentoo.org> sci-chemistry/openbabel-perl/metadata.xml | 2 +- sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sci-chemistry/openbabel-perl/metadata.xml b/sci-chemistry/openbabel-perl/metadata.xml index c73e211..506b159 100644 --- a/sci-chemistry/openbabel-perl/metadata.xml +++ b/sci-chemistry/openbabel-perl/metadata.xml @@ -1,4 +1,4 @@ - + sci-chemistry diff --git a/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild b/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild index e61d472..ca1bc98 100644 --- a/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild +++ b/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -29,6 +29,7 @@ src_unpack() { src_configure() { perl_set_version local mycmakeargs=( + -DOPTIMIZE_NATIVE=OFF -DCMAKE_INSTALL_RPATH= -DBINDINGS_ONLY=ON -DBABEL_SYSTEM_LIBRARY="${EPREFIX}"/usr/$(get_libdir)/libopenbabel.so @@ -50,14 +51,13 @@ src_test() { cp \ "${CMAKE_USE_DIR}/scripts/perl/OpenBabel.pm" \ "${BUILD_DIR}/$(get_libdir)/Chemistry/" - for i in "${CMAKE_USE_DIR}"/scripts/perl/t/* - do + for i in "${CMAKE_USE_DIR}"/scripts/perl/t/*; do einfo "Running test: ${i}" perl -I"${BUILD_DIR}/$(get_libdir)" "${i}" || die done } src_install() { - cd "${BUILD_DIR}" + cd "${BUILD_DIR}" || die cmake -DCOMPONENT=bindings_perl -P cmake_install.cmake }