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.8.2.ebuild
Date: Thu, 24 Jun 2010 13:50:05
Message-Id: 20100624135000.BF15D2CF48@corvid.gentoo.org
1 jlec 10/06/24 13:50:00
2
3 Modified: ChangeLog qtoctave-0.8.2.ebuild
4 Log:
5 Added fix for insecure runpaths, #291595, some QA
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.10 sci-mathematics/qtoctave/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/qtoctave/ChangeLog?rev=1.10&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/qtoctave/ChangeLog?rev=1.10&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/qtoctave/ChangeLog?r1=1.9&r2=1.10
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/qtoctave/ChangeLog,v
18 retrieving revision 1.9
19 retrieving revision 1.10
20 diff -u -r1.9 -r1.10
21 --- ChangeLog 16 Jun 2010 15:30:24 -0000 1.9
22 +++ ChangeLog 24 Jun 2010 13:50:00 -0000 1.10
23 @@ -1,6 +1,10 @@
24 # ChangeLog for sci-mathematics/qtoctave
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/qtoctave/ChangeLog,v 1.9 2010/06/16 15:30:24 bicatali Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/qtoctave/ChangeLog,v 1.10 2010/06/24 13:50:00 jlec Exp $
28 +
29 + 24 Jun 2010; Justin Lecher <jlec@g.o> qtoctave-0.8.2.ebuild,
30 + +files/qtoctave-0.8.2-rpath.patch:
31 + Added fix for insecure runpaths, #291595, some QA
32
33 16 Jun 2010; Sébastien Fabbro <bicatali@g.o>
34 qtoctave-0.9.1.ebuild, +files/qtoctave-0.9.1-qtinfo.patch:
35
36
37
38 1.4 sci-mathematics/qtoctave/qtoctave-0.8.2.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/qtoctave/qtoctave-0.8.2.ebuild?rev=1.4&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/qtoctave/qtoctave-0.8.2.ebuild?rev=1.4&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/qtoctave/qtoctave-0.8.2.ebuild?r1=1.3&r2=1.4
43
44 Index: qtoctave-0.8.2.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/qtoctave/qtoctave-0.8.2.ebuild,v
47 retrieving revision 1.3
48 retrieving revision 1.4
49 diff -u -r1.3 -r1.4
50 --- qtoctave-0.8.2.ebuild 4 Dec 2009 04:37:20 -0000 1.3
51 +++ qtoctave-0.8.2.ebuild 24 Jun 2010 13:50:00 -0000 1.4
52 @@ -1,11 +1,12 @@
53 -# Copyright 1999-2009 Gentoo Foundation
54 +# Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/qtoctave/qtoctave-0.8.2.ebuild,v 1.3 2009/12/04 04:37:20 markusle Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/qtoctave/qtoctave-0.8.2.ebuild,v 1.4 2010/06/24 13:50:00 jlec Exp $
58
59 EAPI="2"
60
61 CMAKE_IN_SOURCE_BUILD=1
62 -inherit cmake-utils
63 +
64 +inherit cmake-utils multilib
65
66 DESCRIPTION="QtOctave is a Qt4 front-end for Octave"
67 HOMEPAGE="http://forja.rediris.es/projects/csl-qtoctave/"
68 @@ -24,16 +25,9 @@
69
70 S="${WORKDIR}"/${P}/${PN}
71
72 -src_prepare() {
73 - epatch "${FILESDIR}"/${PN}-0.8.1-gcc4.4.patch
74 -}
75 -
76 -src_compile() {
77 - mycmakeargs="-DCMAKE_SKIP_RPATH:BOOL=YES"
78 - cmake-utils_src_compile
79 -}
80 -
81 -src_install() {
82 - cmake-utils_src_install
83 - dodoc readme.txt news.txt
84 -}
85 +PATCHES=(
86 + "${FILESDIR}"/${PN}-0.8.1-gcc4.4.patch
87 + "${FILESDIR}"/${P}-rpath.patch
88 + )
89 +
90 +DOCS=(readme.txt news.txt)