Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-visualization/hippodraw: ChangeLog hippodraw-1.21.3-r3.ebuild
Date: Sat, 29 May 2010 16:43:35
Message-Id: 20100529164331.A65992CF37@corvid.gentoo.org
1 grobian 10/05/29 16:43:31
2
3 Modified: ChangeLog hippodraw-1.21.3-r3.ebuild
4 Log:
5 Fix Prefix awareness (python_ functions don't return the prefix)
6 (Portage version: 2.2.00.15842-prefix/cvs/Darwin powerpc)
7
8 Revision Changes Path
9 1.17 sci-visualization/hippodraw/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/hippodraw/ChangeLog?rev=1.17&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/hippodraw/ChangeLog?rev=1.17&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/hippodraw/ChangeLog?r1=1.16&r2=1.17
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/hippodraw/ChangeLog,v
18 retrieving revision 1.16
19 retrieving revision 1.17
20 diff -u -r1.16 -r1.17
21 --- ChangeLog 21 May 2010 19:08:31 -0000 1.16
22 +++ ChangeLog 29 May 2010 16:43:31 -0000 1.17
23 @@ -1,6 +1,10 @@
24 # ChangeLog for sci-visualization/hippodraw
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/hippodraw/ChangeLog,v 1.16 2010/05/21 19:08:31 jlec Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/hippodraw/ChangeLog,v 1.17 2010/05/29 16:43:31 grobian Exp $
28 +
29 + 29 May 2010; Fabian Groffen <grobian@g.o>
30 + hippodraw-1.21.3-r3.ebuild:
31 + Fix Prefix awareness (python_ functions don't return the prefix)
32
33 *hippodraw-1.21.3-r3 (21 May 2010)
34
35
36
37
38 1.3 sci-visualization/hippodraw/hippodraw-1.21.3-r3.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/hippodraw/hippodraw-1.21.3-r3.ebuild?rev=1.3&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/hippodraw/hippodraw-1.21.3-r3.ebuild?rev=1.3&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/hippodraw/hippodraw-1.21.3-r3.ebuild?r1=1.2&r2=1.3
43
44 Index: hippodraw-1.21.3-r3.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/hippodraw/hippodraw-1.21.3-r3.ebuild,v
47 retrieving revision 1.2
48 retrieving revision 1.3
49 diff -u -r1.2 -r1.3
50 --- hippodraw-1.21.3-r3.ebuild 23 May 2010 14:07:59 -0000 1.2
51 +++ hippodraw-1.21.3-r3.ebuild 29 May 2010 16:43:31 -0000 1.3
52 @@ -1,8 +1,8 @@
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/hippodraw/hippodraw-1.21.3-r3.ebuild,v 1.2 2010/05/23 14:07:59 arfrever Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/hippodraw/hippodraw-1.21.3-r3.ebuild,v 1.3 2010/05/29 16:43:31 grobian Exp $
57
58 -EAPI=3
59 +EAPI="3"
60
61 PYTHON_DEPEND="2"
62 PYTHON_USE_WITH="threads"
63 @@ -122,10 +122,10 @@
64 python_copy_sources python
65 compilation() {
66 emake \
67 - PYTHON_INCLUDES="$(python_get_includedir)" \
68 - PYTHON_SITE_PACKAGES="$(python_get_sitedir)" \
69 - NUMARRAY_INCLUDE="$(python_get_sitedir)/numpy/core/include" \
70 - PY_INCLUDE="$(python_get_includedir)"
71 + PYTHON_INCLUDES="${EPREFIX}$(python_get_includedir)" \
72 + PYTHON_SITE_PACKAGES="${EPREFIX}$(python_get_sitedir)" \
73 + NUMARRAY_INCLUDE="${EPREFIX}$(python_get_sitedir)/numpy/core/include" \
74 + PY_INCLUDE="${EPREFIX}$(python_get_includedir)"
75 }
76 python_execute_function -s --source-dir python compilation
77 }
78 @@ -134,10 +134,10 @@
79 emake DESTDIR="${D}" install || die "emake install failed"
80 installation() {
81 emake DESTDIR="${D}" \
82 - PYTHON_SITE_PACKAGES="$(python_get_sitedir)" \
83 - docsdir="${EPREFIX}"/usr/share/doc/${PF}/python \
84 - exampledir="${EPREFIX}"/usr/share/doc/${PF}/python/examples \
85 - install
86 + PYTHON_SITE_PACKAGES="${EPREFIX}$(python_get_sitedir)" \
87 + docsdir="${EPREFIX}"/usr/share/doc/${PF}/python \
88 + exampledir="${EPREFIX}"/usr/share/doc/${PF}/python/examples \
89 + install
90 }
91 python_execute_function -s --source-dir python installation
92 python_clean_installation_image