diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-06-21 12:16:14 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-06-21 12:16:14 +0000 |
commit | 861b5f9a184ba6c81b75600a74960e9d1dca4cd1 (patch) | |
tree | a09b201d609dd6c9ac9626df2b248b69d107ff1f /dev-ml | |
parent | version bump (diff) | |
download | gentoo-2-861b5f9a184ba6c81b75600a74960e9d1dca4cd1.tar.gz gentoo-2-861b5f9a184ba6c81b75600a74960e9d1dca4cd1.tar.bz2 gentoo-2-861b5f9a184ba6c81b75600a74960e9d1dca4cd1.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/pcre-ocaml/ChangeLog | 8 | ||||
-rw-r--r-- | dev-ml/pcre-ocaml/pcre-ocaml-5.15.0.ebuild | 11 |
2 files changed, 12 insertions, 7 deletions
diff --git a/dev-ml/pcre-ocaml/ChangeLog b/dev-ml/pcre-ocaml/ChangeLog index 53d34b007168..c2539a3a6bd9 100644 --- a/dev-ml/pcre-ocaml/ChangeLog +++ b/dev-ml/pcre-ocaml/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-ml/pcre-ocaml -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/pcre-ocaml/ChangeLog,v 1.25 2008/09/25 12:13:16 aballier Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/pcre-ocaml/ChangeLog,v 1.26 2009/06/21 12:16:14 aballier Exp $ + + 21 Jun 2009; Alexis Ballier <aballier@gentoo.org> + pcre-ocaml-5.15.0.ebuild: + define eapi before inherit and assign rdepend explicitly 25 Sep 2008; Alexis Ballier <aballier@gentoo.org> pcre-ocaml-5.15.0.ebuild: diff --git a/dev-ml/pcre-ocaml/pcre-ocaml-5.15.0.ebuild b/dev-ml/pcre-ocaml/pcre-ocaml-5.15.0.ebuild index 3a576ced3b02..916d8c9d3039 100644 --- a/dev-ml/pcre-ocaml/pcre-ocaml-5.15.0.ebuild +++ b/dev-ml/pcre-ocaml/pcre-ocaml-5.15.0.ebuild @@ -1,18 +1,19 @@ -# 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/pcre-ocaml/pcre-ocaml-5.15.0.ebuild,v 1.6 2008/09/25 12:13:16 aballier Exp $ - -inherit findlib eutils +# $Header: /var/cvsroot/gentoo-x86/dev-ml/pcre-ocaml/pcre-ocaml-5.15.0.ebuild,v 1.7 2009/06/21 12:16:14 aballier Exp $ EAPI="1" +inherit findlib eutils + DESCRIPTION="Perl Compatibility Regular Expressions for O'Caml" HOMEPAGE="http://www.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=">=dev-lang/ocaml-3.07 >=dev-libs/libpcre-4.5" +DEPEND="${RDEPEND}" SLOT="0" IUSE="examples +ocamlopt" KEYWORDS="amd64 ppc x86 ~x86-fbsd" |