diff options
Diffstat (limited to 'dev-ml')
-rw-r--r-- | dev-ml/camomile/ChangeLog | 5 | ||||
-rw-r--r-- | dev-ml/camomile/camomile-0.7.1.ebuild | 41 |
2 files changed, 4 insertions, 42 deletions
diff --git a/dev-ml/camomile/ChangeLog b/dev-ml/camomile/ChangeLog index 94c72ae5d460..a4c28766e1cb 100644 --- a/dev-ml/camomile/ChangeLog +++ b/dev-ml/camomile/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ml/camomile # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/camomile/ChangeLog,v 1.17 2009/09/01 06:49:38 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/camomile/ChangeLog,v 1.18 2009/09/01 08:48:32 aballier Exp $ + + 01 Sep 2009; Alexis Ballier <aballier@gentoo.org> -camomile-0.7.1.ebuild: + remove old 01 Sep 2009; Christian Faulhammer <fauli@gentoo.org> camomile-0.7.2.ebuild: diff --git a/dev-ml/camomile/camomile-0.7.1.ebuild b/dev-ml/camomile/camomile-0.7.1.ebuild deleted file mode 100644 index f1775c41e3e1..000000000000 --- a/dev-ml/camomile/camomile-0.7.1.ebuild +++ /dev/null @@ -1,41 +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/camomile/camomile-0.7.1.ebuild,v 1.5 2009/06/21 11:42:13 aballier Exp $ - -EAPI="1" - -inherit findlib eutils - -DESCRIPTION="Camomile is a comprehensive Unicode library for ocaml." -HOMEPAGE="http://camomile.sourceforge.net/" -SRC_URI="mirror://sourceforge/camomile/${P}.tar.bz2" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~amd64 ppc x86" -IUSE="debug +ocamlopt" - -RDEPEND=">=dev-lang/ocaml-3.07" -DEPEND="${RDEPEND}" - -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() { - econf $(use_enable debug) - emake -j1 byte unidata unimaps charmap_data locale_data || die "failed to build" - if use ocamlopt; then - emake -j1 opt || die "failed to build native code" - fi -} - -src_install() { - dodir /usr/bin - findlib_src_install DATADIR="${D}/usr/share" BINDIR="${D}/usr/bin" -} |