blob: 10bd85f9904dea1aff74edcfa22ccfe3cba2f8dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kalzium/kalzium-3.5.9.ebuild,v 1.2 2008/03/04 03:34:03 jer Exp $
KMNAME=kdeedu
EAPI="1"
inherit flag-o-matic kde-meta eutils
DESCRIPTION="KDE: periodic table of the elements"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="solver"
HOMEPAGE="http://edu.kde.org/kalzium"
DEPEND=">=kde-base/libkdeedu-${PV}:${SLOT}
solver? ( >=dev-ml/facile-1.1 )"
KMEXTRACTONLY="libkdeedu/kdeeduplot
libkdeedu/kdeeduui"
KMCOPYLIB="libkdeeduplot libkdeedu/kdeeduplot
libkdeeduui libkdeedu/kdeeduui"
PATCHES="${FILESDIR}/${PN}-3.5.7-copy_string.patch"
pkg_setup() {
if use solver && ! built_with_use --missing true dev-lang/ocaml ocamlopt; then
eerror "In order to build the solver for ${PN}, you first need"
eerror "to have dev-lang/ocaml built with the ocamlopt useflag"
eerror "in order to get a native code ocaml compiler"
die "Please install dev-lang/ocaml with ocamlopt support"
fi
if use solver && ! built_with_use --missing true dev-ml/facile ocamlopt; then
eerror "In order to build the solver for ${PN}, you first need"
eerror "to have dev-ml/facile built with the ocamlopt useflag"
eerror "in order to get the native code library"
die "Please install dev-ml/facile with ocamlopt support"
fi
kde_pkg_setup
}
src_compile() {
append-ldflags -Wl,-z,noexecstack
local myconf="$(use_enable solver ocamlsolver)"
if use solver ; then
cd "${S}/${PN}/src/solver"
emake || die "compiling the ocaml resolver failed"
fi
kde-meta_src_compile
}
|