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 E5B501384B4 for ; Wed, 11 Nov 2015 15:09:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28C7221C051; Wed, 11 Nov 2015 15:09:24 +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 9F60E21C051 for ; Wed, 11 Nov 2015 15:09:23 +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 7AA42340688 for ; Wed, 11 Nov 2015 15:09:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3ADAE1063 for ; Wed, 11 Nov 2015 15:09:20 +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: <1447254556.877582dae6848c1ba8a82b7437ba8a604b56ed18.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/openbabel-python/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild X-VCS-Directories: sci-chemistry/openbabel-python/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 877582dae6848c1ba8a82b7437ba8a604b56ed18 X-VCS-Branch: master Date: Wed, 11 Nov 2015 15:09:20 +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: 4b55d0a3-8316-4f50-9e52-7077433a19cb X-Archives-Hash: 77fc69d2478e5166af8f7f41edabacb9 commit: 877582dae6848c1ba8a82b7437ba8a604b56ed18 Author: Justin Lecher gentoo org> AuthorDate: Wed Nov 11 14:10:12 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Nov 11 15:09:16 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=877582da sci-chemistry/openbabel-python: Adopt to ABIFLAGS change in python Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild b/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild index 114ace5..94b84d5 100644 --- a/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild +++ b/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild @@ -57,12 +57,12 @@ src_configure() { -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}/usr/$(get_libdir)/${EPYTHON}/site-packages" + -DLIB_INSTALL_DIR="${D}$(python_get_sitedir)" -DPYTHON_BINDINGS=ON -DPYTHON_EXECUTABLE=${PYTHON} - -DPYTHON_INCLUDE_DIR="${EPREFIX}/usr/include/${EPYTHON}" - -DPYTHON_INCLUDE_PATH="${EPREFIX}/usr/include/${EPYTHON}" - -DPYTHON_LIBRARY="${EPREFIX}/usr/$(get_libdir)/lib${EPYTHON}.so" + -DPYTHON_INCLUDE_DIR="$(python_get_includedir)" + -DPYTHON_INCLUDE_PATH="$(python_get_includedir)" + -DPYTHON_LIBRARY="$(python_get_library_path)" -DENABLE_TESTS=ON )