summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2008-05-12 06:51:42 +0000
committerAlexis Ballier <aballier@gentoo.org>2008-05-12 06:51:42 +0000
commit272449b9a39ca2431af05f3451829268d780e806 (patch)
treed1304f4cf79503e436ac60f70dda2a86d6fae096 /dev-ml/pcre-ocaml
parentMake use of PATCH_LEVEL variable too.. (diff)
downloadgentoo-2-272449b9a39ca2431af05f3451829268d780e806.tar.gz
gentoo-2-272449b9a39ca2431af05f3451829268d780e806.tar.bz2
gentoo-2-272449b9a39ca2431af05f3451829268d780e806.zip
remove old
(Portage version: 2.1.5_rc10)
Diffstat (limited to 'dev-ml/pcre-ocaml')
-rw-r--r--dev-ml/pcre-ocaml/ChangeLog7
-rw-r--r--dev-ml/pcre-ocaml/pcre-ocaml-5.12.1.ebuild31
-rw-r--r--dev-ml/pcre-ocaml/pcre-ocaml-5.12.2.ebuild51
-rw-r--r--dev-ml/pcre-ocaml/pcre-ocaml-5.13.0.ebuild51
4 files changed, 6 insertions, 134 deletions
diff --git a/dev-ml/pcre-ocaml/ChangeLog b/dev-ml/pcre-ocaml/ChangeLog
index b596eba2858f..49ed122ba3fd 100644
--- a/dev-ml/pcre-ocaml/ChangeLog
+++ b/dev-ml/pcre-ocaml/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-ml/pcre-ocaml
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/pcre-ocaml/ChangeLog,v 1.17 2008/04/08 21:34:32 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/pcre-ocaml/ChangeLog,v 1.18 2008/05/12 06:51:42 aballier Exp $
+
+ 12 May 2008; Alexis Ballier <aballier@gentoo.org>
+ -pcre-ocaml-5.12.1.ebuild, -pcre-ocaml-5.12.2.ebuild,
+ -pcre-ocaml-5.13.0.ebuild:
+ remove old
*pcre-ocaml-5.14.0 (08 Apr 2008)
diff --git a/dev-ml/pcre-ocaml/pcre-ocaml-5.12.1.ebuild b/dev-ml/pcre-ocaml/pcre-ocaml-5.12.1.ebuild
deleted file mode 100644
index 914fc02d8863..000000000000
--- a/dev-ml/pcre-ocaml/pcre-ocaml-5.12.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2007 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.12.1.ebuild,v 1.1 2007/08/23 08:50:31 aballier Exp $
-
-inherit findlib
-
-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"
-
-DEPEND=">=dev-lang/ocaml-3.07
- >=dev-libs/libpcre-4.5"
-SLOT="0"
-IUSE="examples"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-src_install () {
- findlib_src_install
-
- # install documentation
- dodoc README VERSION Changes
-
- if use examples; then
- for dir in examples/*
- do
- docinto $dir
- dodoc $dir/*
- done
- fi
-}
diff --git a/dev-ml/pcre-ocaml/pcre-ocaml-5.12.2.ebuild b/dev-ml/pcre-ocaml/pcre-ocaml-5.12.2.ebuild
deleted file mode 100644
index d9391e70400f..000000000000
--- a/dev-ml/pcre-ocaml/pcre-ocaml-5.12.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2008 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.12.2.ebuild,v 1.2 2008/01/03 04:59:40 mr_bones_ Exp $
-
-inherit findlib eutils
-
-EAPI="1"
-
-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"
-
-DEPEND=">=dev-lang/ocaml-3.07
- >=dev-libs/libpcre-4.5"
-SLOT="0"
-IUSE="examples +ocamlopt"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-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
- for dir in examples/*
- do
- docinto $dir
- dodoc $dir/*
- done
- fi
-}
diff --git a/dev-ml/pcre-ocaml/pcre-ocaml-5.13.0.ebuild b/dev-ml/pcre-ocaml/pcre-ocaml-5.13.0.ebuild
deleted file mode 100644
index 603b81b133d2..000000000000
--- a/dev-ml/pcre-ocaml/pcre-ocaml-5.13.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2008 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.13.0.ebuild,v 1.1 2008/02/05 18:06:58 aballier Exp $
-
-inherit findlib eutils
-
-EAPI="1"
-
-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"
-
-DEPEND=">=dev-lang/ocaml-3.07
- >=dev-libs/libpcre-4.5"
-SLOT="0"
-IUSE="examples +ocamlopt"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-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
- for dir in examples/*
- do
- docinto $dir
- dodoc $dir/*
- done
- fi
-}