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 17993138A1F for ; Tue, 16 Sep 2014 17:01:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70A7AE0AA8; Tue, 16 Sep 2014 17:01:45 +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 E64B8E0AA5 for ; Tue, 16 Sep 2014 17:01:44 +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 0952B34031D for ; Tue, 16 Sep 2014 17:01:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9BC1E5B9F for ; Tue, 16 Sep 2014 17:01:40 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1410885510.b2436002f8aff35c6b91b193e60b4cd098ba1527.ottxor@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/ChangeLog sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild X-VCS-Directories: sci-chemistry/openbabel-perl/ X-VCS-Committer: ottxor X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: b2436002f8aff35c6b91b193e60b4cd098ba1527 X-VCS-Branch: master Date: Tue, 16 Sep 2014 17:01:40 +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: 67201421-cbcb-4743-9224-a22e04f118e8 X-Archives-Hash: 6f927737bc5ac41e993e6fec797f9ef0 commit: b2436002f8aff35c6b91b193e60b4cd098ba1527 Author: Christoph Junghans gentoo org> AuthorDate: Tue Sep 16 16:38:30 2014 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Tue Sep 16 16:38:30 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=b2436002 quote vars Package-Manager: portage-2.2.8-r1 --- sci-chemistry/openbabel-perl/ChangeLog | 5 ++++- sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild | 11 ++++++----- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/sci-chemistry/openbabel-perl/ChangeLog b/sci-chemistry/openbabel-perl/ChangeLog index 38e6e14..88e2b35 100644 --- a/sci-chemistry/openbabel-perl/ChangeLog +++ b/sci-chemistry/openbabel-perl/ChangeLog @@ -2,6 +2,10 @@ # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 16 Sep 2014; Christoph Junghans + openbabel-perl-9999.ebuild: + quote vars + 14 Feb 2014; Reinis Danne openbabel-perl-9999.ebuild: Fix move to git-r3. @@ -13,4 +17,3 @@ 26 Sep 2013; Reinis Danne +openbabel-perl-9999.ebuild, +metadata.xml: Add live ebuild. - diff --git a/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild b/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild index 2c54899..207a1b4 100644 --- a/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild +++ b/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild @@ -28,14 +28,15 @@ src_unpack() { src_configure() { perl_set_version - local mycmakeargs="${mycmakeargs} + local mycmakeargs=( -DCMAKE_INSTALL_RPATH= -DBINDINGS_ONLY=ON - -DBABEL_SYSTEM_LIBRARY=${EPREFIX}/usr/$(get_libdir)/libopenbabel.so - -DOB_MODULE_PATH=${EPREFIX}/usr/$(get_libdir)/openbabel/${PV} - -DLIB_INSTALL_DIR=${ED}/${VENDOR_ARCH} + -DBABEL_SYSTEM_LIBRARY="${EPREFIX}"/usr/$(get_libdir)/libopenbabel.so + -DOB_MODULE_PATH="${EPREFIX}"/usr/$(get_libdir)/openbabel/${PV} + -DLIB_INSTALL_DIR="${ED}/${VENDOR_ARCH}" -DPERL_BINDINGS=ON - -DRUN_SWIG=ON" + -DRUN_SWIG=ON + ) cmake-utils_src_configure }