summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Callen <jcallen@gentoo.org>2009-10-12 21:33:11 +0000
committerJonathan Callen <jcallen@gentoo.org>2009-10-12 21:33:11 +0000
commit4da6014d61b081dfba3b8cf8ba0447b5d9065169 (patch)
tree31ca06d8db40bc2d3def730eba83b3b8381e9f47 /kde-base/kalzium
parentRestore ~keywords that was present in 4.3.1 but missing accidently in 4.3.2 (diff)
downloadhistorical-4da6014d61b081dfba3b8cf8ba0447b5d9065169.tar.gz
historical-4da6014d61b081dfba3b8cf8ba0447b5d9065169.tar.bz2
historical-4da6014d61b081dfba3b8cf8ba0447b5d9065169.zip
KDE 3.5.9 removal
Package-Manager: portage--svn/cvs/Linux i686
Diffstat (limited to 'kde-base/kalzium')
-rw-r--r--kde-base/kalzium/ChangeLog5
-rw-r--r--kde-base/kalzium/kalzium-3.5.9.ebuild51
2 files changed, 4 insertions, 52 deletions
diff --git a/kde-base/kalzium/ChangeLog b/kde-base/kalzium/ChangeLog
index 0135c41c8c09..2e6c8e450832 100644
--- a/kde-base/kalzium/ChangeLog
+++ b/kde-base/kalzium/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for kde-base/kalzium
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kalzium/ChangeLog,v 1.139 2009/10/10 08:44:13 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kalzium/ChangeLog,v 1.140 2009/10/12 20:01:59 abcd Exp $
+
+ 12 Oct 2009; Jonathan Callen <abcd@gentoo.org> -kalzium-3.5.9.ebuild:
+ KDE 3.5.9 removal
10 Oct 2009; Samuli Suominen <ssuominen@gentoo.org> kalzium-4.3.1.ebuild:
amd64 stable wrt #287697
diff --git a/kde-base/kalzium/kalzium-3.5.9.ebuild b/kde-base/kalzium/kalzium-3.5.9.ebuild
deleted file mode 100644
index b6a3ff93eaed..000000000000
--- a/kde-base/kalzium/kalzium-3.5.9.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2009 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.8 2009/02/03 03:11:32 jmbsvicetto 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 )"
-RDEPEND="${DEPEND}"
-
-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
-}