diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-06-20 17:26:41 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-06-20 17:26:41 +0000 |
commit | e8cdea8451345e743799e00346d1b2d0a7420ee5 (patch) | |
tree | a2620e8370528d2237512b0cd2691cdb456be44b /dev-ml | |
parent | Prepend our library path instead of overwriting it during src_install. Thanks... (diff) | |
download | gentoo-2-e8cdea8451345e743799e00346d1b2d0a7420ee5.tar.gz gentoo-2-e8cdea8451345e743799e00346d1b2d0a7420ee5.tar.bz2 gentoo-2-e8cdea8451345e743799e00346d1b2d0a7420ee5.zip |
move eapi definition 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/res/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ml/res/res-2.2.5.ebuild | 9 |
2 files changed, 10 insertions, 6 deletions
diff --git a/dev-ml/res/ChangeLog b/dev-ml/res/ChangeLog index af29683cf5b9..380ecb711cc9 100644 --- a/dev-ml/res/ChangeLog +++ b/dev-ml/res/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ml/res -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/res/ChangeLog,v 1.8 2008/04/13 18:16:46 aballier Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/res/ChangeLog,v 1.9 2009/06/20 17:26:41 aballier Exp $ + + 20 Jun 2009; Alexis Ballier <aballier@gentoo.org> res-2.2.5.ebuild: + move eapi definition before inherit and assign rdepend explicitly 13 Apr 2008; Alexis Ballier <aballier@gentoo.org> -res-2.1.1.ebuild: remove old diff --git a/dev-ml/res/res-2.2.5.ebuild b/dev-ml/res/res-2.2.5.ebuild index 858eea6384f7..c23d02f7cea5 100644 --- a/dev-ml/res/res-2.2.5.ebuild +++ b/dev-ml/res/res-2.2.5.ebuild @@ -1,17 +1,18 @@ -# 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/res/res-2.2.5.ebuild,v 1.4 2008/04/12 20:19:35 dertobi123 Exp $ - -inherit findlib eutils +# $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" |