diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-02-23 20:39:23 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-02-23 20:39:23 +0000 |
commit | 871eb5a78385bb127698af025cc8aa0aae4308c1 (patch) | |
tree | ed28e7673546a13578c15bff42a85bced7cef267 /dev-ml/sexplib | |
parent | remove old (diff) | |
download | gentoo-2-871eb5a78385bb127698af025cc8aa0aae4308c1.tar.gz gentoo-2-871eb5a78385bb127698af025cc8aa0aae4308c1.tar.bz2 gentoo-2-871eb5a78385bb127698af025cc8aa0aae4308c1.zip |
remove old
(Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
Diffstat (limited to 'dev-ml/sexplib')
-rw-r--r-- | dev-ml/sexplib/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ml/sexplib/sexplib-5.2.1.ebuild | 52 |
2 files changed, 5 insertions, 54 deletions
diff --git a/dev-ml/sexplib/ChangeLog b/dev-ml/sexplib/ChangeLog index dd134f952dbe..0bf9bccf41ba 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.13 2011/10/06 20:04:43 aballier Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/ChangeLog,v 1.14 2012/02/23 20:39:23 aballier Exp $ + + 23 Feb 2012; Alexis Ballier <aballier@gentoo.org> -sexplib-5.2.1.ebuild: + remove old 06 Oct 2011; Alexis Ballier <aballier@gentoo.org> -sexplib-7.0.3.ebuild: remove old diff --git a/dev-ml/sexplib/sexplib-5.2.1.ebuild b/dev-ml/sexplib/sexplib-5.2.1.ebuild deleted file mode 100644 index 8f4d4d39c050..000000000000 --- a/dev-ml/sexplib/sexplib-5.2.1.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-5.2.1.ebuild,v 1.2 2011/07/23 15:44:59 tomka Exp $ - -EAPI=3 - -inherit findlib eutils multilib - -DESCRIPTION="Library for automated conversion of OCaml-values to and from S-expressions" -HOMEPAGE="http://www.ocaml.info/home/ocaml_sources.html" -SRC_URI="http://www.janestreet.com/ocaml/${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 Changelog || die - if use doc; then - dodoc doc/README.pdf || die - fi -} |