diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-09-20 13:27:31 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-09-20 13:27:31 +0000 |
commit | 068500360ea092aa52a871da31dbdd2e48507668 (patch) | |
tree | 843eb451e34c7e6b7b5930961e26266ca9282756 /dev-ml | |
parent | remove old (diff) | |
download | gentoo-2-068500360ea092aa52a871da31dbdd2e48507668.tar.gz gentoo-2-068500360ea092aa52a871da31dbdd2e48507668.tar.bz2 gentoo-2-068500360ea092aa52a871da31dbdd2e48507668.zip |
remove old
(Portage version: 2.2_rc41/cvs/Linux x86_64)
Diffstat (limited to 'dev-ml')
-rw-r--r-- | dev-ml/camlp5/ChangeLog | 5 | ||||
-rw-r--r-- | dev-ml/camlp5/camlp5-5.11.ebuild | 46 |
2 files changed, 4 insertions, 47 deletions
diff --git a/dev-ml/camlp5/ChangeLog b/dev-ml/camlp5/ChangeLog index 9ce88c9e7352..d97b6e8a292c 100644 --- a/dev-ml/camlp5/ChangeLog +++ b/dev-ml/camlp5/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ml/camlp5 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlp5/ChangeLog,v 1.39 2009/08/09 16:18:08 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlp5/ChangeLog,v 1.40 2009/09/20 13:27:31 aballier Exp $ + + 20 Sep 2009; Alexis Ballier <aballier@gentoo.org> -camlp5-5.11.ebuild: + remove old 09 Aug 2009; nixnut <nixnut@gentoo.org> camlp5-5.12.ebuild: ppc stable #276249 diff --git a/dev-ml/camlp5/camlp5-5.11.ebuild b/dev-ml/camlp5/camlp5-5.11.ebuild deleted file mode 100644 index 1823c321662d..000000000000 --- a/dev-ml/camlp5/camlp5-5.11.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlp5/camlp5-5.11.ebuild,v 1.4 2009/05/14 19:06:32 fmccor Exp $ - -EAPI="2" - -inherit multilib findlib eutils - -DESCRIPTION="A preprocessor-pretty-printer of ocaml" -HOMEPAGE="http://pauillac.inria.fr/~ddr/camlp5/" -SRC_URI="http://pauillac.inria.fr/~ddr/camlp5/distrib/src/${P}.tgz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ppc sparc x86 ~x86-fbsd" -IUSE="doc +ocamlopt" - -DEPEND=">=dev-lang/ocaml-3.10[ocamlopt?]" -RDEPEND="${DEPEND}" - -src_configure() { - ./configure \ - -prefix /usr \ - -bindir /usr/bin \ - -libdir /usr/$(get_libdir)/ocaml \ - -mandir /usr/share/man || die "configure failed" -} - -src_compile(){ - emake -j1 || die "emake failed" - if use ocamlopt; then - emake -j1 opt || die "Compiling native code programs failed" - emake -j1 opt.opt || die "Compiling native code programs failed" - fi -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - # findlib support - insinto "$(ocamlfind printconf destdir)/${PN}" - doins etc/META || die "failed to install META file for findlib support" - - use doc && dohtml -r doc/* - - dodoc CHANGES DEVEL ICHANGES README UPGRADING MODE -} |