diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-09-20 13:33:00 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-09-20 13:33:00 +0000 |
commit | 5c5b0ae7c91318335f92691290145eb10e19e46a (patch) | |
tree | 9cf976943fa242ed49c6db63d7e4c157724757a8 /dev-ml/res | |
parent | Stable on ppc. (diff) | |
download | historical-5c5b0ae7c91318335f92691290145eb10e19e46a.tar.gz historical-5c5b0ae7c91318335f92691290145eb10e19e46a.tar.bz2 historical-5c5b0ae7c91318335f92691290145eb10e19e46a.zip |
remove old
Package-Manager: portage-2.2_rc41/cvs/Linux x86_64
Diffstat (limited to 'dev-ml/res')
-rw-r--r-- | dev-ml/res/ChangeLog | 5 | ||||
-rw-r--r-- | dev-ml/res/res-2.2.5.ebuild | 55 |
2 files changed, 4 insertions, 56 deletions
diff --git a/dev-ml/res/ChangeLog b/dev-ml/res/ChangeLog index 507399655f9d..1f483a99199b 100644 --- a/dev-ml/res/ChangeLog +++ b/dev-ml/res/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ml/res # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/res/ChangeLog,v 1.12 2009/08/14 18:15:11 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/res/ChangeLog,v 1.13 2009/09/20 13:33:00 aballier Exp $ + + 20 Sep 2009; Alexis Ballier <aballier@gentoo.org> -res-2.2.5.ebuild: + remove old 14 Aug 2009; Markus Meier <maekke@gentoo.org> res-3.2.0.ebuild: amd64/x86 stable, bug #280422 diff --git a/dev-ml/res/res-2.2.5.ebuild b/dev-ml/res/res-2.2.5.ebuild deleted file mode 100644 index c23d02f7cea5..000000000000 --- a/dev-ml/res/res-2.2.5.ebuild +++ /dev/null @@ -1,55 +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/res/res-2.2.5.ebuild,v 1.5 2009/06/20 17:26:41 aballier Exp $ - -EAPI="1" - -inherit findlib eutils - -DESCRIPTION="Resizable Array and Buffer modules for O'Caml" -HOMEPAGE="http://ocaml.info/home/ocaml_sources.html" -SRC_URI="http://www.ocaml.info/ocaml_sources/${P}.tar.bz2" -LICENSE="LGPL-2.1" - -DEPEND=">=dev-lang/ocaml-3.07" -RDEPEND="${DEPEND}" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="doc examples +ocamlopt" - -pkg_setup() { - if use ocamlopt && ! built_with_use --missing true dev-lang/ocaml ocamlopt; then - eerror "In order to build ${PN} with native code support from ocaml" - eerror "You first need to have a native code ocaml compiler." - eerror "You need to install dev-lang/ocaml with ocamlopt useflag on." - die "Please install ocaml with ocamlopt useflag" - fi -} - -src_compile() { - cd "${S}/lib" - emake -j1 byte-code-library || die "failed to build byte code library" - if use ocamlopt; then - emake -j1 native-code-library || die "failed to built nativde code library" - fi - - if use doc; then - emake htdoc || die "failed to build documentation" - fi -} - -src_install () { - use ocamlopt || export OCAMLFIND_INSTFLAGS="-optional" - findlib_src_install - - # install documentation - dodoc README TODO VERSION Changes - - if use doc; then - dohtml lib/doc/res/html/* - fi - if use examples; then - insinto /usr/share/doc/${PF} - doins -r examples - fi -} |