diff options
author | 2011-07-06 18:36:18 +0000 | |
---|---|---|
committer | 2011-07-06 18:36:18 +0000 | |
commit | 809c65b823d6aa9bdfa6a4c7af577b4dd817ae3c (patch) | |
tree | c16c598ed322425e2203821c824ae37ecbdddce5 /dev-ml/sexplib | |
parent | remove old (diff) | |
download | gentoo-2-809c65b823d6aa9bdfa6a4c7af577b4dd817ae3c.tar.gz gentoo-2-809c65b823d6aa9bdfa6a4c7af577b4dd817ae3c.tar.bz2 gentoo-2-809c65b823d6aa9bdfa6a4c7af577b4dd817ae3c.zip |
remove old
(Portage version: 2.2.0_alpha43/cvs/Linux x86_64)
Diffstat (limited to 'dev-ml/sexplib')
-rw-r--r-- | dev-ml/sexplib/ChangeLog | 6 | ||||
-rw-r--r-- | dev-ml/sexplib/sexplib-4.2.17.ebuild | 38 | ||||
-rw-r--r-- | dev-ml/sexplib/sexplib-5.2.0.ebuild | 54 |
3 files changed, 5 insertions, 93 deletions
diff --git a/dev-ml/sexplib/ChangeLog b/dev-ml/sexplib/ChangeLog index 09107ba7e3d1..9f9a78ab9964 100644 --- a/dev-ml/sexplib/ChangeLog +++ b/dev-ml/sexplib/ChangeLog @@ -1,6 +1,10 @@ # 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.7 2011/06/25 18:56:22 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/ChangeLog,v 1.8 2011/07/06 18:36:17 aballier Exp $ + + 06 Jul 2011; Alexis Ballier <aballier@gentoo.org> -sexplib-4.2.17.ebuild, + -sexplib-5.2.0.ebuild: + remove old *sexplib-5.2.1 (25 Jun 2011) diff --git a/dev-ml/sexplib/sexplib-4.2.17.ebuild b/dev-ml/sexplib/sexplib-4.2.17.ebuild deleted file mode 100644 index ced6f956407f..000000000000 --- a/dev-ml/sexplib/sexplib-4.2.17.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/sexplib-4.2.17.ebuild,v 1.1 2010/01/03 15:09:12 aballier Exp $ - -EAPI="2" - -inherit findlib - -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://ocaml.info/ocaml_sources/${PN}310-${PV}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" -S=${WORKDIR}/${PN}310-${PV}/lib - -DEPEND=">=dev-lang/ocaml-3.10[ocamlopt] - dev-ml/type-conv" -RDEPEND="${DEPEND}" - -src_compile() { - emake -j1 || die -} - -src_test() { - cd "${S}/../lib_test" - emake -j1 || die - ./conv_test || die - ./sexp_test < test.sexp || die -} - -src_install() { - findlib_src_preinst - emake install || die "make install failed" - dodoc ../README.txt ../Changelog -} diff --git a/dev-ml/sexplib/sexplib-5.2.0.ebuild b/dev-ml/sexplib/sexplib-5.2.0.ebuild deleted file mode 100644 index 9ddffb344ffd..000000000000 --- a/dev-ml/sexplib/sexplib-5.2.0.ebuild +++ /dev/null @@ -1,54 +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.0.ebuild,v 1.1 2011/02/24 20:11:52 aballier 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" -IUSE="debug doc +ocamlopt" - -RDEPEND=">=dev-lang/ocaml-3.11[ocamlopt?] - dev-ml/type-conv" -DEPEND="${RDEPEND} - doc? ( virtual/latex-base )" - -S=${WORKDIR}/${PN} - -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 -} |