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-mathematics/yacas: yacas-1.3.4.ebuild ChangeLog
Date: Mon, 09 Jun 2014 22:09:18
Message-Id: 20140609220914.4C9E52004E@flycatcher.gentoo.org
1 bicatali 14/06/09 22:09:14
2
3 Modified: yacas-1.3.4.ebuild ChangeLog
4 Log:
5 Fixed missing include version file for java option and forced -j1 until proper fix (bug #511856)
6
7 (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
8
9 Revision Changes Path
10 1.2 sci-mathematics/yacas/yacas-1.3.4.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/yacas-1.3.4.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/yacas-1.3.4.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/yacas-1.3.4.ebuild?r1=1.1&r2=1.2
15
16 Index: yacas-1.3.4.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/yacas-1.3.4.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- yacas-1.3.4.ebuild 28 May 2014 17:44:49 -0000 1.1
23 +++ yacas-1.3.4.ebuild 9 Jun 2014 22:09:14 -0000 1.2
24 @@ -1,10 +1,13 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/yacas-1.3.4.ebuild,v 1.1 2014/05/28 17:44:49 bicatali Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/yacas-1.3.4.ebuild,v 1.2 2014/06/09 22:09:14 bicatali Exp $
29
30 EAPI=5
31
32 -inherit autotools-utils java-pkg-opt-2
33 +AUTOTOOLS_AUTORECONF=1
34 +AUTOTOOLS_IN_SOURCE_BUILD=1
35 +
36 +inherit java-pkg-opt-2 autotools-utils
37
38 DESCRIPTION="General purpose computer algebra system"
39 HOMEPAGE="http://yacas.sourceforge.net/"
40 @@ -18,17 +21,21 @@
41 DEPEND="java? ( >=virtual/jdk-1.6 )"
42 RDEPEND="java? ( >=virtual/jre-1.6 )"
43
44 +PATCHES=(
45 + "${FILESDIR}"/${PN}-1.3.4-java-version.patch
46 +)
47 +
48 src_configure() {
49 local myeconfargs=(
50 + --with-html-dir="/usr/share/doc/${PF}/html"
51 $(use_enable doc html-doc)
52 $(use_enable server)
53 - --with-html-dir="/usr/share/doc/${PF}/html"
54 )
55 autotools-utils_src_configure
56 }
57
58 src_compile() {
59 - autotools-utils_src_compile
60 + autotools-utils_src_compile -j1
61 if use java; then
62 cd "${BUILD_DIR}"/JavaYacas || die
63 # -j1 because of file generation dependence
64
65
66
67 1.37 sci-mathematics/yacas/ChangeLog
68
69 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/ChangeLog?rev=1.37&view=markup
70 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/ChangeLog?rev=1.37&content-type=text/plain
71 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/ChangeLog?r1=1.36&r2=1.37
72
73 Index: ChangeLog
74 ===================================================================
75 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/ChangeLog,v
76 retrieving revision 1.36
77 retrieving revision 1.37
78 diff -u -r1.36 -r1.37
79 --- ChangeLog 28 May 2014 17:44:49 -0000 1.36
80 +++ ChangeLog 9 Jun 2014 22:09:14 -0000 1.37
81 @@ -1,6 +1,11 @@
82 # ChangeLog for sci-mathematics/yacas
83 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
84 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/ChangeLog,v 1.36 2014/05/28 17:44:49 bicatali Exp $
85 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/ChangeLog,v 1.37 2014/06/09 22:09:14 bicatali Exp $
86 +
87 + 09 Jun 2014; Sébastien Fabbro <bicatali@g.o>
88 + +files/yacas-1.3.4-java-version.patch, yacas-1.3.4.ebuild:
89 + Fixed missing include version file for java option and forced -j1 until proper
90 + fix (bug #511856)
91
92 *yacas-1.3.4 (28 May 2014)