diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-04-25 18:28:14 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-04-25 18:28:14 +0000 |
commit | 00a9f3c049ec9417d8b496435d3ee9f61539fea3 (patch) | |
tree | 51868eb31a152af3c6f85df1bb315646b80c1aa4 /dev-libs/boost/boost-1.41.0-r3.ebuild | |
parent | Delete older ebuild. (diff) | |
download | historical-00a9f3c049ec9417d8b496435d3ee9f61539fea3.tar.gz historical-00a9f3c049ec9417d8b496435d3ee9f61539fea3.tar.bz2 historical-00a9f3c049ec9417d8b496435d3ee9f61539fea3.zip |
Delete calls to deprecated python_version().
Package-Manager: portage-HEAD/cvs/Linux x86_64
Diffstat (limited to 'dev-libs/boost/boost-1.41.0-r3.ebuild')
-rw-r--r-- | dev-libs/boost/boost-1.41.0-r3.ebuild | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/dev-libs/boost/boost-1.41.0-r3.ebuild b/dev-libs/boost/boost-1.41.0-r3.ebuild index 53b7d9daa8dd..eb8f8730e032 100644 --- a/dev-libs/boost/boost-1.41.0-r3.ebuild +++ b/dev-libs/boost/boost-1.41.0-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.41.0-r3.ebuild,v 1.9 2010/04/17 23:52:17 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.41.0-r3.ebuild,v 1.10 2010/04/25 18:28:14 arfrever Exp $ EAPI="2" @@ -51,8 +51,7 @@ _add_line() { pkg_setup() { # It doesn't compile with USE="python mpi" and python-3 (bug 295705) if use python && use mpi ; then - python_version - if [[ "${PYVER_MAJOR}" != "2" ]]; then + if [[ "$(python_get_version --major)" != "2" ]]; then eerror "The Boost.MPI python bindings do not support any other python version" eerror "than 2.x. Please either use eselect to select a python 2.x version or" eerror "disable the python and/or mpi use flag for =${CATEGORY}/${PF}." @@ -142,8 +141,7 @@ src_configure() { use mpi && mpi="using mpi ;" if use python ; then - python_version - pystring="using python : ${PYVER} : /usr : /usr/include/python${PYVER} : /usr/lib/python${PYVER} ;" + pystring="using python : $(python_get_version) : /usr : $(python_get_includedir) : $(python_get_libdir) ;" fi cat > "${S}/user-config.jam" << __EOF__ @@ -264,10 +262,10 @@ src_install () { # Move the mpi.so to the right place and make sure it's slotted if use mpi && use python; then - mkdir -p "${D}/usr/$(get_libdir)/python${PYVER}/site-packages/boost_${MAJOR_PV}" - mv "${D}/usr/$(get_libdir)/mpi.so" "${D}/usr/$(get_libdir)/python${PYVER}/site-packages/boost_${MAJOR_PV}/" - touch "${D}/usr/$(get_libdir)/python${PYVER}/site-packages/boost_${MAJOR_PV}/__init__.py" - _add_line "python=\"/usr/$(get_libdir)/python${PYVER}/site-packages/boost_${MAJOR_PV}/mpi.so\"" + mkdir -p "${D}$(python_get_sitedir)/boost_${MAJOR_PV}" + mv "${D}/usr/$(get_libdir)/mpi.so" "${D}$(python_get_sitedir)/boost_${MAJOR_PV}/" + touch "${D}$(python_get_sitedir)/boost_${MAJOR_PV}/__init__.py" + _add_line "python=\"$(python_get_sitedir)/boost_${MAJOR_PV}/mpi.so\"" fi if use doc ; then |