Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/nlopt: ChangeLog nlopt-2.2.4.ebuild
Date: Mon, 09 Jul 2012 17:14:45
Message-Id: 20120709171428.DAE9820063@flycatcher.gentoo.org
1 bicatali 12/07/09 17:14:28
2
3 Modified: ChangeLog nlopt-2.2.4.ebuild
4 Log:
5 keyword amd64-linux and x86-linux
6
7 (Portage version: 2.2.01.20757-prefix/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.17 sci-libs/nlopt/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/nlopt/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/nlopt/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/nlopt/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-libs/nlopt/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 4 Apr 2012 08:07:04 -0000 1.16
23 +++ ChangeLog 9 Jul 2012 17:14:28 -0000 1.17
24 @@ -1,6 +1,9 @@
25 # ChangeLog for sci-libs/nlopt
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/nlopt/ChangeLog,v 1.16 2012/04/04 08:07:04 jlec Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/nlopt/ChangeLog,v 1.17 2012/07/09 17:14:28 bicatali Exp $
29 +
30 + 09 Jul 2012; Sébastien Fabbro <bicatali@g.o> nlopt-2.2.4.ebuild:
31 + keyword amd64-linux and x86-linux
32
33 04 Apr 2012; Justin Lecher <jlec@g.o> nlopt-2.2.4.ebuild:
34 Correct handling of PYABI things, #405255
35
36
37
38 1.9 sci-libs/nlopt/nlopt-2.2.4.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/nlopt/nlopt-2.2.4.ebuild?rev=1.9&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/nlopt/nlopt-2.2.4.ebuild?rev=1.9&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/nlopt/nlopt-2.2.4.ebuild?r1=1.8&r2=1.9
43
44 Index: nlopt-2.2.4.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sci-libs/nlopt/nlopt-2.2.4.ebuild,v
47 retrieving revision 1.8
48 retrieving revision 1.9
49 diff -u -r1.8 -r1.9
50 --- nlopt-2.2.4.ebuild 4 Apr 2012 08:07:04 -0000 1.8
51 +++ nlopt-2.2.4.ebuild 9 Jul 2012 17:14:28 -0000 1.9
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/nlopt/nlopt-2.2.4.ebuild,v 1.8 2012/04/04 08:07:04 jlec Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/nlopt/nlopt-2.2.4.ebuild,v 1.9 2012/07/09 17:14:28 bicatali Exp $
57
58 EAPI=4
59
60 @@ -15,7 +15,7 @@
61 SRC_URI="${HOMEPAGE}/${P}.tar.gz"
62
63 LICENSE="LGPL-2.1 MIT"
64 -KEYWORDS="amd64 x86"
65 +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
66 SLOT="0"
67 IUSE="cxx guile octave python static-libs"
68
69 @@ -61,13 +61,13 @@
70 python_copy_sources swig
71 compilation() {
72 autotools-utils_src_compile \
73 - PYTHON_CPPFLAGS="-I$(python_get_includedir)" \
74 - PYTHON_LDFLAGS="$(python_get_library -l)" \
75 - PYTHON_SITE_PKG="$(python_get_sitedir)" \
76 - PYTHON_VERSION="$(python_get_version)" \
77 - PYTHON_INCLUDES="$(python_get_includedir)" \
78 - pythondir="$(python_get_sitedir)" \
79 - pyexecdir="$(python_get_sitedir)"
80 + PYTHON_CPPFLAGS="-I${EPREFIX}$(python_get_includedir)" \
81 + PYTHON_LDFLAGS="${EPREFIX}$(python_get_library -l)" \
82 + PYTHON_SITE_PKG="${EPREFIX}$(python_get_sitedir)" \
83 + PYTHON_VERSION="${EPREFIX}$(python_get_version)" \
84 + PYTHON_INCLUDES="${EPREFIX}$(python_get_includedir)" \
85 + pythondir="${EPREFIX}$(python_get_sitedir)" \
86 + pyexecdir="${EPREFIX}$(python_get_sitedir)"
87 }
88 python_execute_function -s --source-dir swig compilation
89 fi
90 @@ -79,8 +79,8 @@
91 installation() {
92 rm *.la
93 emake DESTDIR=${D} install \
94 - pyexecdir="$(python_get_sitedir)" \
95 - pythondir="$(python_get_sitedir)"
96 + pyexecdir="${EPREFIX}$(python_get_sitedir)" \
97 + pythondir="${EPREFIX}$(python_get_sitedir)"
98 }
99 python_execute_function -s --source-dir swig installation
100 python_clean_installation_image