Gentoo Archives: gentoo-commits

From: "Wulf Krueger (philantrop)" <philantrop@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/kalzium: ChangeLog kalzium-4.0.1.ebuild
Date: Thu, 07 Feb 2008 00:12:25
Message-Id: E1JMuNK-0000Er-4T@stork.gentoo.org
1 philantrop 08/02/07 00:12:22
2
3 Modified: ChangeLog
4 Added: kalzium-4.0.1.ebuild
5 Log:
6 Version bump to KDE 4.0.1.
7 (Portage version: 2.1.4.1)
8
9 Revision Changes Path
10 1.84 kde-base/kalzium/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kalzium/ChangeLog?rev=1.84&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kalzium/ChangeLog?rev=1.84&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kalzium/ChangeLog?r1=1.83&r2=1.84
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/kde-base/kalzium/ChangeLog,v
19 retrieving revision 1.83
20 retrieving revision 1.84
21 diff -u -r1.83 -r1.84
22 --- ChangeLog 31 Jan 2008 15:31:56 -0000 1.83
23 +++ ChangeLog 7 Feb 2008 00:12:21 -0000 1.84
24 @@ -1,6 +1,12 @@
25 # ChangeLog for kde-base/kalzium
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kalzium/ChangeLog,v 1.83 2008/01/31 15:31:56 ranger Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kalzium/ChangeLog,v 1.84 2008/02/07 00:12:21 philantrop Exp $
29 +
30 +*kalzium-4.0.1 (06 Feb 2008)
31 +
32 + 06 Feb 2008; Wulf C. Krueger <philantrop@g.o>
33 + +kalzium-4.0.1.ebuild:
34 + Version bump to KDE 4.0.1.
35
36 31 Jan 2008; Brent Baude <ranger@g.o> kalzium-3.5.8.ebuild:
37 Marking kalzium-3.5.8 ppc for bug 207634
38
39
40
41 1.1 kde-base/kalzium/kalzium-4.0.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kalzium/kalzium-4.0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kalzium/kalzium-4.0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: kalzium-4.0.1.ebuild
47 ===================================================================
48 # Copyright 1999-2008 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.0.1.ebuild,v 1.1 2008/02/07 00:12:21 philantrop Exp $
51
52 EAPI="1"
53
54 KMNAME=kdeedu
55 inherit kde4-meta
56
57 DESCRIPTION="KDE: periodic table of the elements."
58 KEYWORDS="~amd64 ~x86"
59 IUSE="cviewer debug htmlhandbook solver test"
60
61 COMMONDEPEND=">=kde-base/libkdeedu-${PV}:${SLOT}
62 cviewer? ( >=dev-cpp/eigen-1.0.5
63 >=sci-chemistry/openbabel-2.1
64 virtual/opengl )"
65 DEPEND="${DEPEND} ${COMMONDEPEND}
66 solver? ( dev-ml/facile )"
67 RDEPEND="${RDEPEND} ${COMMONDEPEND}"
68
69 KMEXTRACTONLY="libkdeedu/kdeeduui libkdeedu/libscience"
70
71 pkg_setup() {
72 use cviewer && QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} opengl"
73
74 if use solver && ! built_with_use --missing true dev-lang/ocaml ocamlopt; then
75 eerror "In order to build the solver for ${PN}, you first need"
76 eerror "to have dev-lang/ocaml built with the ocamlopt useflag"
77 eerror "in order to get a native code ocaml compiler"
78 die "Please install dev-lang/ocaml with ocamlopt support"
79 fi
80 if use solver && ! built_with_use --missing true dev-ml/facile ocamlopt; then
81 eerror "In order to build the solver for ${PN}, you first need"
82 eerror "to have dev-ml/facile built with the ocamlopt useflag"
83 eerror "in order to get the native code library"
84 die "Please install dev-ml/facile with ocamlopt support"
85 fi
86
87 kde4-meta_pkg_setup
88 }
89
90 src_compile() {
91 if use solver ; then
92 # Compile the solver on its own as the cmake-based build is
93 # currently broken. Fixes bug 206620.
94 cd "${S}/${PN}/src/solver"
95 emake || die "compiling the ocaml resolver failed"
96 mkdir -p "${WORKDIR}/${PN}_build/${PN}/src/"
97 cp * "${WORKDIR}/${PN}_build/${PN}/src/"
98 fi
99
100 mycmakeargs="${mycmakeargs}
101 $(cmake-utils_use_with cviewer Eigen)
102 $(cmake-utils_use_with cviewer OpenBabel2)
103 $(cmake-utils_use_with cviewer OpenGL)
104 $(cmake-utils_use_with solver OCaml)
105 $(cmake-utils_use_with solver Libfacile)"
106
107 kde4-meta_src_compile
108 }
109
110
111
112 --
113 gentoo-commits@l.g.o mailing list