summaryrefslogtreecommitdiff
path: root/dev-ml
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2013-03-10 10:25:49 +0000
committerAlexis Ballier <aballier@gentoo.org>2013-03-10 10:25:49 +0000
commit73b868840d7ada51769184975d5d919d0aac7a4b (patch)
tree02f50b9fe96456fe3bb86326def8e7cc508432bb /dev-ml
parentversion bump (diff)
downloadgentoo-2-73b868840d7ada51769184975d5d919d0aac7a4b.tar.gz
gentoo-2-73b868840d7ada51769184975d5d919d0aac7a4b.tar.bz2
gentoo-2-73b868840d7ada51769184975d5d919d0aac7a4b.zip
remove old
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'dev-ml')
-rw-r--r--dev-ml/res/ChangeLog6
-rw-r--r--dev-ml/res/files/res-3.2.0-noocamlopt.patch13
-rw-r--r--dev-ml/res/res-3.2.0.ebuild56
3 files changed, 5 insertions, 70 deletions
diff --git a/dev-ml/res/ChangeLog b/dev-ml/res/ChangeLog
index 742c186aec4a..fee4ca16877f 100644
--- a/dev-ml/res/ChangeLog
+++ b/dev-ml/res/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-ml/res
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/res/ChangeLog,v 1.18 2013/02/12 16:59:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/res/ChangeLog,v 1.19 2013/03/10 10:25:49 aballier Exp $
+
+ 10 Mar 2013; Alexis Ballier <aballier@gentoo.org>
+ -files/res-3.2.0-noocamlopt.patch, -res-3.2.0.ebuild:
+ remove old
12 Feb 2013; Agostino Sarubbo <ago@gentoo.org> res-4.0.2.ebuild:
Stable for ppc, wrt bug #456562
diff --git a/dev-ml/res/files/res-3.2.0-noocamlopt.patch b/dev-ml/res/files/res-3.2.0-noocamlopt.patch
deleted file mode 100644
index 8d4e38f05ea3..000000000000
--- a/dev-ml/res/files/res-3.2.0-noocamlopt.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: res-3.2.0/lib/Makefile
-===================================================================
---- res-3.2.0.orig/lib/Makefile
-+++ res-3.2.0/lib/Makefile
-@@ -11,7 +11,7 @@ LIBINSTALL_FILES = res.mli strat.mli pre
- strat.cmi pres_intf.cmi nopres_intf.cmi weak_intf.cmi \
- res.cmi res.cma res.cmxa res.a
-
--all: byte-code-library native-code-library
-+all: byte-code-library
-
- install: libinstall
- uninstall: libuninstall
diff --git a/dev-ml/res/res-3.2.0.ebuild b/dev-ml/res/res-3.2.0.ebuild
deleted file mode 100644
index 9b268d546f7e..000000000000
--- a/dev-ml/res/res-3.2.0.ebuild
+++ /dev/null
@@ -1,56 +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/res/res-3.2.0.ebuild,v 1.3 2009/08/14 18:15:11 maekke Exp $
-
-EAPI="2"
-
-inherit findlib eutils
-
-DESCRIPTION="Resizable Array and Buffer modules for O'Caml"
-HOMEPAGE="http://ocaml.info/home/ocaml_sources.html"
-SRC_URI="http://www.ocaml.info/ocaml_sources/${P}.tar.gz"
-LICENSE="LGPL-2.1"
-
-DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]"
-RDEPEND="${DEPEND}"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="doc examples +ocamlopt"
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-noocamlopt.patch"
-}
-
-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
-
- if use doc; then
- emake htdoc || die "failed to build documentation"
- fi
-}
-
-src_install () {
- cd "${S}/lib"
- findlib_src_preinst
- if use ocamlopt; then
- emake DESTDIR="${D}" libinstall || die
- else
- emake DESTDIR="${D}" libinstall-byte-code || die
- fi
-
- cd "${S}"
- # install documentation
- dodoc TODO README.txt Changelog
-
- if use doc; then
- dohtml lib/doc/res/html/*
- fi
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r examples
- fi
-}