summaryrefslogtreecommitdiff
path: root/dev-ml
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2009-12-07 08:06:55 +0000
committerAlexis Ballier <aballier@gentoo.org>2009-12-07 08:06:55 +0000
commit56fb6ae641da81d497ad9a6db29f9836149de545 (patch)
treecaa86a52a9d1faec623016a98289886cb7dc70fd /dev-ml
parentremove old (diff)
downloadgentoo-2-56fb6ae641da81d497ad9a6db29f9836149de545.tar.gz
gentoo-2-56fb6ae641da81d497ad9a6db29f9836149de545.tar.bz2
gentoo-2-56fb6ae641da81d497ad9a6db29f9836149de545.zip
remove old
(Portage version: 2.2_rc56/cvs/Linux x86_64)
Diffstat (limited to 'dev-ml')
-rw-r--r--dev-ml/pcre-ocaml/ChangeLog6
-rw-r--r--dev-ml/pcre-ocaml/pcre-ocaml-5.15.0.ebuild49
2 files changed, 5 insertions, 50 deletions
diff --git a/dev-ml/pcre-ocaml/ChangeLog b/dev-ml/pcre-ocaml/ChangeLog
index 40586d454271..ff06a8ec2d67 100644
--- a/dev-ml/pcre-ocaml/ChangeLog
+++ b/dev-ml/pcre-ocaml/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-ml/pcre-ocaml
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/pcre-ocaml/ChangeLog,v 1.29 2009/10/24 12:42:32 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/pcre-ocaml/ChangeLog,v 1.30 2009/12/07 08:06:55 aballier Exp $
+
+ 07 Dec 2009; Alexis Ballier <aballier@gentoo.org>
+ -pcre-ocaml-5.15.0.ebuild:
+ remove old
24 Oct 2009; nixnut <nixnut@gentoo.org> pcre-ocaml-6.0.1.ebuild:
ppc stable #286789
diff --git a/dev-ml/pcre-ocaml/pcre-ocaml-5.15.0.ebuild b/dev-ml/pcre-ocaml/pcre-ocaml-5.15.0.ebuild
deleted file mode 100644
index 916d8c9d3039..000000000000
--- a/dev-ml/pcre-ocaml/pcre-ocaml-5.15.0.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/pcre-ocaml/pcre-ocaml-5.15.0.ebuild,v 1.7 2009/06/21 12:16:14 aballier Exp $
-
-EAPI="1"
-
-inherit findlib eutils
-
-DESCRIPTION="Perl Compatibility Regular Expressions for O'Caml"
-HOMEPAGE="http://www.ocaml.info/home/ocaml_sources.html"
-SRC_URI="http://www.ocaml.info/ocaml_sources/${P}.tar.bz2"
-LICENSE="LGPL-2.1"
-
-RDEPEND=">=dev-lang/ocaml-3.07
- >=dev-libs/libpcre-4.5"
-DEPEND="${RDEPEND}"
-SLOT="0"
-IUSE="examples +ocamlopt"
-KEYWORDS="amd64 ppc x86 ~x86-fbsd"
-
-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 byte-code-library || die "Failed to build byte code library"
- if use ocamlopt; then
- emake native-code-library || die "Failed to build native code library"
- fi
-}
-
-src_install () {
- export OCAMLFIND_INSTFLAGS="-optional"
- findlib_src_install
-
- # install documentation
- dodoc README VERSION Changes
-
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r examples
- fi
-}