summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIngmar Vanhassel <ingmar@gentoo.org>2008-03-20 17:20:10 +0000
committerIngmar Vanhassel <ingmar@gentoo.org>2008-03-20 17:20:10 +0000
commitf443b6485c72973755fc90bbfd2e6eee15ef481c (patch)
treef58a23f90e37555e337e197c6ef9d64940481118 /kde-base/kalzium
parentChange RDEPEND: Digest-SHA -> Digest-SHA1 (#212461) (diff)
downloadhistorical-f443b6485c72973755fc90bbfd2e6eee15ef481c.tar.gz
historical-f443b6485c72973755fc90bbfd2e6eee15ef481c.tar.bz2
historical-f443b6485c72973755fc90bbfd2e6eee15ef481c.zip
Old.
Package-Manager: portage-2.2_pre5
Diffstat (limited to 'kde-base/kalzium')
-rw-r--r--kde-base/kalzium/ChangeLog5
-rw-r--r--kde-base/kalzium/kalzium-4.0.1.ebuild61
2 files changed, 4 insertions, 62 deletions
diff --git a/kde-base/kalzium/ChangeLog b/kde-base/kalzium/ChangeLog
index c0571beab0f6..2ca52d817aa3 100644
--- a/kde-base/kalzium/ChangeLog
+++ b/kde-base/kalzium/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for kde-base/kalzium
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kalzium/ChangeLog,v 1.88 2008/03/10 23:21:11 philantrop Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kalzium/ChangeLog,v 1.89 2008/03/20 16:21:25 ingmar Exp $
+
+ 20 Mar 2008; Ingmar Vanhassel <ingmar@gentoo.org> -kalzium-4.0.1.ebuild:
+ Old.
*kalzium-4.0.2 (10 Mar 2008)
diff --git a/kde-base/kalzium/kalzium-4.0.1.ebuild b/kde-base/kalzium/kalzium-4.0.1.ebuild
deleted file mode 100644
index 353c355d87b1..000000000000
--- a/kde-base/kalzium/kalzium-4.0.1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# 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-4.0.1.ebuild,v 1.2 2008/03/04 03:34:03 jer Exp $
-
-EAPI="1"
-
-KMNAME=kdeedu
-inherit kde4-meta
-
-DESCRIPTION="KDE: periodic table of the elements."
-KEYWORDS="~amd64 ~hppa ~x86"
-IUSE="cviewer debug htmlhandbook solver test"
-
-COMMONDEPEND=">=kde-base/libkdeedu-${PV}:${SLOT}
- cviewer? ( >=dev-cpp/eigen-1.0.5
- >=sci-chemistry/openbabel-2.1
- virtual/opengl )"
-DEPEND="${DEPEND} ${COMMONDEPEND}
- solver? ( dev-ml/facile )"
-RDEPEND="${RDEPEND} ${COMMONDEPEND}"
-
-KMEXTRACTONLY="libkdeedu/kdeeduui libkdeedu/libscience"
-
-pkg_setup() {
- use cviewer && QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} opengl"
-
- 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
-
- kde4-meta_pkg_setup
-}
-
-src_compile() {
- if use solver ; then
- # Compile the solver on its own as the cmake-based build is
- # currently broken. Fixes bug 206620.
- cd "${S}/${PN}/src/solver"
- emake || die "compiling the ocaml resolver failed"
- mkdir -p "${WORKDIR}/${PN}_build/${PN}/src/"
- cp * "${WORKDIR}/${PN}_build/${PN}/src/"
- fi
-
- mycmakeargs="${mycmakeargs}
- $(cmake-utils_use_with cviewer Eigen)
- $(cmake-utils_use_with cviewer OpenBabel2)
- $(cmake-utils_use_with cviewer OpenGL)
- $(cmake-utils_use_with solver OCaml)
- $(cmake-utils_use_with solver Libfacile)"
-
- kde4-meta_src_compile
-}