diff options
Diffstat (limited to 'dev-ml/tyxml')
-rw-r--r-- | dev-ml/tyxml/ChangeLog | 5 | ||||
-rw-r--r-- | dev-ml/tyxml/tyxml-2.1-r1.ebuild | 46 |
2 files changed, 4 insertions, 47 deletions
diff --git a/dev-ml/tyxml/ChangeLog b/dev-ml/tyxml/ChangeLog index 51eeb1f62cff..4223e3ee0950 100644 --- a/dev-ml/tyxml/ChangeLog +++ b/dev-ml/tyxml/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ml/tyxml # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/tyxml/ChangeLog,v 1.6 2013/01/13 19:50:06 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/tyxml/ChangeLog,v 1.7 2013/07/23 16:32:13 aballier Exp $ + + 23 Jul 2013; Alexis Ballier <aballier@gentoo.org> -tyxml-2.1-r1.ebuild: + remove old *tyxml-2.2.0 (13 Jan 2013) diff --git a/dev-ml/tyxml/tyxml-2.1-r1.ebuild b/dev-ml/tyxml/tyxml-2.1-r1.ebuild deleted file mode 100644 index da56e5283c6e..000000000000 --- a/dev-ml/tyxml/tyxml-2.1-r1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/tyxml/tyxml-2.1-r1.ebuild,v 1.2 2012/07/09 21:10:41 ulm Exp $ - -EAPI=4 - -inherit eutils findlib - -DESCRIPTION="A libary to build xml trees typechecked by OCaml" -HOMEPAGE="http://ocsigen.org/tyxml/" -SRC_URI="http://www.ocsigen.org/download/${P}.tar.gz" - -LICENSE="LGPL-2.1-with-linking-exception" -SLOT="0" -KEYWORDS="~amd64" -IUSE="doc ocamlduce +ocamlopt" - -DEPEND=" - >=dev-lang/ocaml-3.12[ocamlopt?] - dev-ml/ocamlnet - ocamlduce? ( dev-ml/ocamlduce )" -RDEPEND="${DEPEND}" - -src_prepare() { - export myopts="OCAMLDUCE=$(usex ocamlduce yes no)" -} - -src_compile() { - if use ocamlopt; then - emake "$myopts" - else - emake "$myopts" byte - fi - use doc && emake doc "$myopts" -} - -src_install() { - findlib_src_preinst - if use ocamlopt; then - emake DESTIR="${D}" "$myopts" install - else - emake DESTIR="${D}" "$myopts" install-byte - fi - dodoc CHANGES README - use doc && dohtml -r doc/api-html -} |