diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-06-21 11:42:13 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-06-21 11:42:13 +0000 |
commit | 3d2974df8039a338bd940cbbd45989d58dc89047 (patch) | |
tree | e14cec6a725e9732d97e717226f5f38b744d1a17 /dev-ml | |
parent | update gentoo.config script to include support for Prefix arches (diff) | |
download | gentoo-2-3d2974df8039a338bd940cbbd45989d58dc89047.tar.gz gentoo-2-3d2974df8039a338bd940cbbd45989d58dc89047.tar.bz2 gentoo-2-3d2974df8039a338bd940cbbd45989d58dc89047.zip |
define eapi before inherit and assign rdepend explicitly
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'dev-ml')
-rw-r--r-- | dev-ml/camomile/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ml/camomile/camomile-0.7.1.ebuild | 11 |
2 files changed, 11 insertions, 7 deletions
diff --git a/dev-ml/camomile/ChangeLog b/dev-ml/camomile/ChangeLog index ea330a33fbf8..fbbf763cd0e1 100644 --- a/dev-ml/camomile/ChangeLog +++ b/dev-ml/camomile/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ml/camomile -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/camomile/ChangeLog,v 1.13 2008/04/20 14:18:26 aballier Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/camomile/ChangeLog,v 1.14 2009/06/21 11:42:13 aballier Exp $ + + 21 Jun 2009; Alexis Ballier <aballier@gentoo.org> camomile-0.7.1.ebuild: + define eapi before inherit and assign rdepend explicitly 20 Apr 2008; Alexis Ballier <aballier@gentoo.org> -camomile-0.5.3-r1.ebuild, -camomile-0.6.0.ebuild: diff --git a/dev-ml/camomile/camomile-0.7.1.ebuild b/dev-ml/camomile/camomile-0.7.1.ebuild index fb81d38cc6e8..f1775c41e3e1 100644 --- a/dev-ml/camomile/camomile-0.7.1.ebuild +++ b/dev-ml/camomile/camomile-0.7.1.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2008 Gentoo Foundation +# 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.4 2008/04/20 14:11:05 maekke Exp $ - -inherit findlib eutils +# $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" @@ -15,7 +15,8 @@ SLOT="0" KEYWORDS="~amd64 ppc x86" IUSE="debug +ocamlopt" -DEPEND=">=dev-lang/ocaml-3.07" +RDEPEND=">=dev-lang/ocaml-3.07" +DEPEND="${RDEPEND}" pkg_setup() { if use ocamlopt && ! built_with_use --missing true dev-lang/ocaml ocamlopt; then |