summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2011-10-06 20:04:43 +0000
committerAlexis Ballier <aballier@gentoo.org>2011-10-06 20:04:43 +0000
commita6e332cd89c392ef7d0e8b32fdd2f7d9525073ac (patch)
tree46a3a092007577dabae00f2e87d304c196054c3a /dev-ml/sexplib
parentversion bump (diff)
downloadgentoo-2-a6e332cd89c392ef7d0e8b32fdd2f7d9525073ac.tar.gz
gentoo-2-a6e332cd89c392ef7d0e8b32fdd2f7d9525073ac.tar.bz2
gentoo-2-a6e332cd89c392ef7d0e8b32fdd2f7d9525073ac.zip
remove ol
(Portage version: 2.2.0_alpha62/cvs/Linux x86_64)
Diffstat (limited to 'dev-ml/sexplib')
-rw-r--r--dev-ml/sexplib/ChangeLog5
-rw-r--r--dev-ml/sexplib/sexplib-7.0.3.ebuild52
2 files changed, 4 insertions, 53 deletions
diff --git a/dev-ml/sexplib/ChangeLog b/dev-ml/sexplib/ChangeLog
index 1323048fb4ce..dd134f952dbe 100644
--- a/dev-ml/sexplib/ChangeLog
+++ b/dev-ml/sexplib/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/sexplib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/ChangeLog,v 1.12 2011/10/06 20:03:02 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/ChangeLog,v 1.13 2011/10/06 20:04:43 aballier Exp $
+
+ 06 Oct 2011; Alexis Ballier <aballier@gentoo.org> -sexplib-7.0.3.ebuild:
+ remove old
*sexplib-7.0.4 (06 Oct 2011)
diff --git a/dev-ml/sexplib/sexplib-7.0.3.ebuild b/dev-ml/sexplib/sexplib-7.0.3.ebuild
deleted file mode 100644
index 636ec3151d7b..000000000000
--- a/dev-ml/sexplib/sexplib-7.0.3.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/sexplib-7.0.3.ebuild,v 1.1 2011/09/07 15:22:10 aballier Exp $
-
-EAPI=3
-
-inherit findlib eutils multilib
-
-DESCRIPTION="Library for automated conversion of OCaml-values to and from S-expressions"
-HOMEPAGE="http://forge.ocamlcore.org/projects/sexplib/"
-SRC_URI="http://forge.ocamlcore.org/frs/download.php/694/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug doc +ocamlopt"
-
-RDEPEND=">=dev-lang/ocaml-3.12[ocamlopt?]
- >=dev-ml/type-conv-2.3.0"
-DEPEND="${RDEPEND}
- doc? ( virtual/latex-base dev-texlive/texlive-latexextra )"
-
-oasis_use_enable() {
- echo "--override $2 `use $1 && echo \"true\" || echo \"false\"`"
-}
-
-src_configure() {
- ./configure --prefix usr \
- --libdir /usr/$(get_libdir) \
- --destdir "${D}" \
- $(oasis_use_enable debug debug) \
- $(oasis_use_enable ocamlopt is_native) \
- || die
-}
-
-src_compile() {
- emake || die
- if use doc ; then
- cd "${S}/doc"
- pdflatex README || die
- pdflatex README || die
- fi
-}
-
-src_install() {
- findlib_src_install
-
- dodoc README.txt Changelog || die
- if use doc; then
- dodoc doc/README.pdf || die
- fi
-}