Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/qtoctave: ChangeLog qtoctave-0.9.1-r1.ebuild qtoctave-0.9.1.ebuild
Date: Mon, 28 Jun 2010 16:51:14
Message-Id: 20100628165111.5E17B2C621@corvid.gentoo.org
1 jlec 10/06/28 16:51:11
2
3 Modified: ChangeLog
4 Added: qtoctave-0.9.1-r1.ebuild
5 Removed: qtoctave-0.9.1.ebuild
6 Log:
7 Wrong default path during compilation, thanks Alexander Goomenyuk for reporting
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.11 sci-mathematics/qtoctave/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/qtoctave/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/qtoctave/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/qtoctave/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/qtoctave/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 24 Jun 2010 13:50:00 -0000 1.10
24 +++ ChangeLog 28 Jun 2010 16:51:11 -0000 1.11
25 @@ -1,6 +1,13 @@
26 # ChangeLog for sci-mathematics/qtoctave
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/qtoctave/ChangeLog,v 1.10 2010/06/24 13:50:00 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/qtoctave/ChangeLog,v 1.11 2010/06/28 16:51:11 jlec Exp $
30 +
31 +*qtoctave-0.9.1-r1 (28 Jun 2010)
32 +
33 + 28 Jun 2010; Justin Lecher <jlec@g.o> -qtoctave-0.9.1.ebuild,
34 + +qtoctave-0.9.1-r1.ebuild:
35 + Wrong default path during compilation, thanks Alexander Goomenyuk for
36 + reporting
37
38 24 Jun 2010; Justin Lecher <jlec@g.o> qtoctave-0.8.2.ebuild,
39 +files/qtoctave-0.8.2-rpath.patch:
40
41
42
43 1.1 sci-mathematics/qtoctave/qtoctave-0.9.1-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/qtoctave/qtoctave-0.9.1-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/qtoctave/qtoctave-0.9.1-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: qtoctave-0.9.1-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sci-mathematics/qtoctave/qtoctave-0.9.1-r1.ebuild,v 1.1 2010/06/28 16:51:11 jlec Exp $
53
54 EAPI="2"
55
56 CMAKE_IN_SOURCE_BUILD=1
57 inherit eutils cmake-utils
58
59 PID=1760
60
61 DESCRIPTION="QtOctave is a Qt4 front-end for Octave"
62 HOMEPAGE="http://forja.rediris.es/projects/csl-qtoctave/"
63 SRC_URI="http://forja.rediris.es/frs/download.php/${PID}/${P}.tar.bz2"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 DEPEND=">=x11-libs/qt-gui-4.5
71 >=x11-libs/qt-svg-4.5"
72
73 RDEPEND="${DEPEND}
74 >=sci-mathematics/octave-3.2.0"
75
76 S="${WORKDIR}/${P}"
77 DOCS="readme.txt leeme.txt"
78
79 src_prepare() {
80 epatch "${FILESDIR}"/${PN}-0.9.1-qtinfo.patch
81 epatch "${FILESDIR}"/${PN}-0.9.1-qt-version.patch
82 epatch "${FILESDIR}"/${PN}-0.9.1-doc-path.patch
83 epatch "${FILESDIR}"/${PN}-0.8.1-gcc4.4.patch
84 }
85
86 src_configure() {
87 mycmakeargs=(-DCMAKE_SKIP_RPATH:BOOL=YES )
88 cmake-utils_src_configure
89 }