diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-03-03 14:57:49 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-03-03 14:57:49 +0000 |
commit | 298b01956a07b8ee0ce30990004b04bd736fea82 (patch) | |
tree | 2769acb91589733398c08e82e1c73293141c91bf /dev-ml/xstr | |
parent | EAPI bump (diff) | |
download | gentoo-2-298b01956a07b8ee0ce30990004b04bd736fea82.tar.gz gentoo-2-298b01956a07b8ee0ce30990004b04bd736fea82.tar.bz2 gentoo-2-298b01956a07b8ee0ce30990004b04bd736fea82.zip |
eapi5: define subslot and use slot deps.
(Portage version: 2.2.0_alpha164/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'dev-ml/xstr')
-rw-r--r-- | dev-ml/xstr/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ml/xstr/xstr-0.2.1.ebuild | 12 |
2 files changed, 12 insertions, 7 deletions
diff --git a/dev-ml/xstr/ChangeLog b/dev-ml/xstr/ChangeLog index f5a81ead57fa..6f2cfd6ff721 100644 --- a/dev-ml/xstr/ChangeLog +++ b/dev-ml/xstr/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ml/xstr -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/xstr/ChangeLog,v 1.4 2012/12/14 11:17:18 ulm Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/xstr/ChangeLog,v 1.5 2013/03/03 14:57:49 aballier Exp $ + + 03 Mar 2013; Alexis Ballier <aballier@gentoo.org> xstr-0.2.1.ebuild: + eapi5: define subslot and use slot deps. 14 Dec 2012; Ulrich Müller <ulm@gentoo.org> xstr-0.2.1.ebuild: Fix LICENSE, MIT (Expat) according to LICENSE file, bug 445046. Do not diff --git a/dev-ml/xstr/xstr-0.2.1.ebuild b/dev-ml/xstr/xstr-0.2.1.ebuild index c300b35c0c6a..6b39feebe105 100644 --- a/dev-ml/xstr/xstr-0.2.1.ebuild +++ b/dev-ml/xstr/xstr-0.2.1.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/xstr/xstr-0.2.1.ebuild,v 1.4 2012/12/14 11:17:18 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/xstr/xstr-0.2.1.ebuild,v 1.5 2013/03/03 14:57:49 aballier Exp $ + +EAPI=5 inherit findlib @@ -9,12 +11,12 @@ HOMEPAGE="http://www.ocaml-programming.de/packages/" SRC_URI="http://www.ocaml-programming.de/packages/${P}.tar.gz" LICENSE="MIT" -SLOT="0" +SLOT="0/${PV}" KEYWORDS="~amd64 ppc x86" IUSE="" -DEPEND="" -RDEPEND="$DEPEND" +DEPEND=">=dev-lang/ocaml-3.10:=[ocamlopt]" +RDEPEND="${DEPEND}" S="${WORKDIR}/${PN}" |