aballier 15/01/05 15:30:02 Modified: ChangeLog boost-1.56.0-r1.ebuild Log: fix cross compile of boost_python; leave native path as is Signed-off-by: aball...@gentoo.org (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path 1.342 dev-libs/boost/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.342&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.342&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/ChangeLog?r1=1.341&r2=1.342 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v retrieving revision 1.341 retrieving revision 1.342 diff -u -r1.341 -r1.342 --- ChangeLog 2 Jan 2015 13:45:12 -0000 1.341 +++ ChangeLog 5 Jan 2015 15:30:02 -0000 1.342 @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/boost # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.341 2015/01/02 13:45:12 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.342 2015/01/05 15:30:02 aballier Exp $ + + 05 Jan 2015; Alexis Ballier <aball...@gentoo.org> boost-1.56.0-r1.ebuild: + fix cross compile of boost_python; leave native path as is 02 Jan 2015; Agostino Sarubbo <a...@gentoo.org> boost-1.55.0-r2.ebuild: Stable for x86, wrt bug #525286 1.2 dev-libs/boost/boost-1.56.0-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.56.0-r1.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.56.0-r1.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.56.0-r1.ebuild?r1=1.1&r2=1.2 Index: boost-1.56.0-r1.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.56.0-r1.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- boost-1.56.0-r1.ebuild 24 Dec 2014 12:36:25 -0000 1.1 +++ boost-1.56.0-r1.ebuild 5 Jan 2015 15:30:02 -0000 1.2 @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.56.0-r1.ebuild,v 1.1 2014/12/24 12:36:25 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.56.0-r1.ebuild,v 1.2 2015/01/05 15:30:02 aballier Exp $ EAPI="5" PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} ) @@ -75,7 +75,11 @@ fi if python_bindings_needed; then - python_configuration="using python : : ${PYTHON} ;" + if tc-is-cross-compiler; then + python_configuration="using python : ${EPYTHON#python} : : ${SYSROOT:-${EROOT}}/usr/include/${EPYTHON} : ${SYSROOT:-${EROOT}}/usr/$(get_libdir) ;" + else + python_configuration="using python : : ${PYTHON} ;" + fi fi cat > "${BOOST_ROOT}/user-config.jam" << __EOF__