Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/kalzium: ChangeLog kalzium-4.3.5.ebuild
Date: Mon, 25 Jan 2010 14:29:10
Message-Id: E1NZPw0-0001BT-CZ@stork.gentoo.org
1 scarabeus 10/01/25 14:28:56
2
3 Modified: ChangeLog
4 Added: kalzium-4.3.5.ebuild
5 Log:
6 Version bump KDE 4.3.5
7 (Portage version: 2.2_rc61/cvs/Linux x86_64, RepoMan options: --force)
8
9 Revision Changes Path
10 1.156 kde-base/kalzium/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kalzium/ChangeLog?rev=1.156&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kalzium/ChangeLog?rev=1.156&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kalzium/ChangeLog?r1=1.155&r2=1.156
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/kde-base/kalzium/ChangeLog,v
19 retrieving revision 1.155
20 retrieving revision 1.156
21 diff -u -r1.155 -r1.156
22 --- ChangeLog 23 Jan 2010 06:53:13 -0000 1.155
23 +++ ChangeLog 25 Jan 2010 14:28:55 -0000 1.156
24 @@ -1,6 +1,12 @@
25 # ChangeLog for kde-base/kalzium
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kalzium/ChangeLog,v 1.155 2010/01/23 06:53:13 abcd Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kalzium/ChangeLog,v 1.156 2010/01/25 14:28:55 scarabeus Exp $
29 +
30 +*kalzium-4.3.5 (25 Jan 2010)
31 +
32 + 25 Jan 2010; Tomáš Chvátal <scarabeus@g.o>
33 + +kalzium-4.3.5.ebuild:
34 + Version bump
35
36 23 Jan 2010; Jonathan Callen <abcd@g.o> kalzium-4.3.4.ebuild:
37 Keyword ~amd64-linux/~x86-linux
38
39
40
41 1.1 kde-base/kalzium/kalzium-4.3.5.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kalzium/kalzium-4.3.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kalzium/kalzium-4.3.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: kalzium-4.3.5.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/kde-base/kalzium/kalzium-4.3.5.ebuild,v 1.1 2010/01/25 14:28:55 scarabeus Exp $
51
52 EAPI="2"
53
54 KMNAME="kdeedu"
55 CPPUNIT_REQUIRED="optional"
56 OPENGL_REQUIRED="always"
57 inherit flag-o-matic kde4-meta
58
59 DESCRIPTION="KDE: periodic table of the elements."
60 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
61 IUSE="editor debug +handbook +plasma solver"
62
63 RDEPEND="
64 $(add_kdebase_dep libkdeedu)
65 editor? ( >=sci-chemistry/openbabel-2.2 )
66 "
67 DEPEND="${RDEPEND}
68 editor? ( >=dev-cpp/eigen-2.0.3:2 )
69 solver? ( dev-ml/facile[ocamlopt] )
70 "
71
72 KMEXTRACTONLY="
73 libkdeedu/kdeeduui/
74 libkdeedu/libscience/
75 "
76
77 src_configure(){
78 # Fix missing finite()
79 [[ ${CHOST} == *-solaris* ]] && append-cppflags -DHAVE_IEEEFP_H
80
81 mycmakeargs=(
82 $(cmake-utils_use_with editor Eigen2)
83 $(cmake-utils_use_with editor OpenBabel2)
84 $(cmake-utils_use_with editor OpenGL)
85 $(cmake-utils_use_with solver OCaml)
86 $(cmake-utils_use_with solver Libfacile)
87 )
88
89 kde4-meta_src_configure
90 }