summaryrefslogtreecommitdiff
path: root/dev-ml
diff options
context:
space:
mode:
authorPetteri Räty <betelgeuse@gentoo.org>2009-09-28 16:24:07 +0000
committerPetteri Räty <betelgeuse@gentoo.org>2009-09-28 16:24:07 +0000
commitd4142a735ede851147c7c4340a6aa44090d8c88a (patch)
tree1bd774ebf823d9b540c169fa2cc2a5a3d9d2d267 /dev-ml
parentwhitespace (diff)
downloadhistorical-d4142a735ede851147c7c4340a6aa44090d8c88a.tar.gz
historical-d4142a735ede851147c7c4340a6aa44090d8c88a.tar.bz2
historical-d4142a735ede851147c7c4340a6aa44090d8c88a.zip
Remove old version using built_with_use.
Package-Manager: portage-2.2_rc40/cvs/Linux i686
Diffstat (limited to 'dev-ml')
-rw-r--r--dev-ml/pomap/ChangeLog5
-rw-r--r--dev-ml/pomap/pomap-2.9.8.ebuild49
2 files changed, 4 insertions, 50 deletions
diff --git a/dev-ml/pomap/ChangeLog b/dev-ml/pomap/ChangeLog
index 1a9708385222..746ecda7db88 100644
--- a/dev-ml/pomap/ChangeLog
+++ b/dev-ml/pomap/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/pomap
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/pomap/ChangeLog,v 1.20 2009/08/14 17:54:32 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/pomap/ChangeLog,v 1.21 2009/09/28 16:24:07 betelgeuse Exp $
+
+ 28 Sep 2009; Petteri Räty <betelgeuse@gentoo.org> -pomap-2.9.8.ebuild:
+ Remove old version using built_with_use.
14 Aug 2009; Markus Meier <maekke@gentoo.org> pomap-2.9.9.ebuild:
amd64/x86 stable, bug #280417
diff --git a/dev-ml/pomap/pomap-2.9.8.ebuild b/dev-ml/pomap/pomap-2.9.8.ebuild
deleted file mode 100644
index 8c32f70fbf4a..000000000000
--- a/dev-ml/pomap/pomap-2.9.8.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/pomap/pomap-2.9.8.ebuild,v 1.4 2009/06/21 12:51:47 aballier Exp $
-
-EAPI="1"
-
-inherit findlib eutils
-
-DESCRIPTION="Partially Ordered Map ADT for O'Caml"
-HOMEPAGE="http://www.ocaml.info/home/ocaml_sources.html"
-LICENSE="LGPL-2.1"
-RDEPEND=">=dev-lang/ocaml-3.06"
-DEPEND="${RDEPEND}"
-SRC_URI="http://www.ocaml.info/ocaml_sources/${P}.tar.bz2"
-
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="examples +ocamlopt"
-
-pkg_setup() {
- if use ocamlopt && ! built_with_use --missing true dev-lang/ocaml ocamlopt; then
- eerror "In order to build ${PN} with native code support from ocaml"
- eerror "You first need to have a native code ocaml compiler."
- eerror "You need to install dev-lang/ocaml with ocamlopt useflag on."
- die "Please install ocaml with ocamlopt useflag"
- fi
-}
-
-src_compile() {
- cd "${S}/lib"
- emake -j1 byte-code-library || die "failed to build byte code library"
- if use ocamlopt; then
- emake -j1 native-code-library || die "failed to built nativde code library"
- fi
-}
-
-src_install () {
- use ocamlopt || export OCAMLFIND_INSTFLAGS="-optional"
- findlib_src_install
-
- # install documentation
- dodoc README VERSION Changes
-
- #install examples
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r examples
- fi
-}