Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/vtk: vtk-5.4.2-r1.ebuild
Date: Thu, 29 Apr 2010 01:16:02
Message-Id: 20100429011558.592992C04C@corvid.gentoo.org
1 arfrever 10/04/29 01:15:58
2
3 Modified: vtk-5.4.2-r1.ebuild
4 Log:
5 Use more appropriate Python getter functions.
6 (Portage version: HEAD/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.8 sci-libs/vtk/vtk-5.4.2-r1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/vtk/vtk-5.4.2-r1.ebuild?rev=1.8&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/vtk/vtk-5.4.2-r1.ebuild?rev=1.8&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/vtk/vtk-5.4.2-r1.ebuild?r1=1.7&r2=1.8
14
15 Index: vtk-5.4.2-r1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-libs/vtk/vtk-5.4.2-r1.ebuild,v
18 retrieving revision 1.7
19 retrieving revision 1.8
20 diff -u -r1.7 -r1.8
21 --- vtk-5.4.2-r1.ebuild 25 Apr 2010 10:00:50 -0000 1.7
22 +++ vtk-5.4.2-r1.ebuild 29 Apr 2010 01:15:58 -0000 1.8
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/vtk/vtk-5.4.2-r1.ebuild,v 1.7 2010/04/25 10:00:50 jlec Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/vtk/vtk-5.4.2-r1.ebuild,v 1.8 2010/04/29 01:15:58 arfrever Exp $
28
29 EAPI="2"
30
31 @@ -130,11 +130,10 @@
32 fi
33
34 if use python; then
35 - PYVER="$(python_get_version)"
36 mycmakeargs+=(
37 -DVTK_WRAP_PYTHON=ON
38 - -DPYTHON_INCLUDE_PATH=/usr/include/python${PYVER}
39 - -DPYTHON_LIBRARY=/usr/$(get_libdir)/libpython${PYVER}.so
40 + -DPYTHON_INCLUDE_PATH=$(python_get_includedir)
41 + -DPYTHON_LIBRARY=$(python_get_library)
42 -DVTK_PYTHON_SETUP_ARGS:STRING=--root="${D}")
43 fi