summaryrefslogtreecommitdiff
path: root/dev-ml
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2013-03-10 10:50:33 +0000
committerAlexis Ballier <aballier@gentoo.org>2013-03-10 10:50:33 +0000
commitafca3364d504ecc20887627c65effcf4dd36a5d5 (patch)
tree757acbf2ad37890ca34ec4eb782263fe554fe8ed /dev-ml
parentRemove old. (diff)
downloadgentoo-2-afca3364d504ecc20887627c65effcf4dd36a5d5.tar.gz
gentoo-2-afca3364d504ecc20887627c65effcf4dd36a5d5.tar.bz2
gentoo-2-afca3364d504ecc20887627c65effcf4dd36a5d5.zip
eapi5: define subslot, slot dep on ocaml, remove useless || die
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'dev-ml')
-rw-r--r--dev-ml/kaputt/ChangeLog5
-rw-r--r--dev-ml/kaputt/kaputt-1.2.ebuild16
2 files changed, 12 insertions, 9 deletions
diff --git a/dev-ml/kaputt/ChangeLog b/dev-ml/kaputt/ChangeLog
index 808070db0b1f..517e16519aa8 100644
--- a/dev-ml/kaputt/ChangeLog
+++ b/dev-ml/kaputt/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/kaputt
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/kaputt/ChangeLog,v 1.3 2013/03/10 10:48:27 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/kaputt/ChangeLog,v 1.4 2013/03/10 10:50:33 aballier Exp $
+
+ 10 Mar 2013; Alexis Ballier <aballier@gentoo.org> kaputt-1.2.ebuild:
+ eapi5: define subslot, slot dep on ocaml, remove useless || die
10 Mar 2013; Alexis Ballier <aballier@gentoo.org> -kaputt-1.1.ebuild:
remove old
diff --git a/dev-ml/kaputt/kaputt-1.2.ebuild b/dev-ml/kaputt/kaputt-1.2.ebuild
index 2168b7cb73ac..7ea228f608ff 100644
--- a/dev-ml/kaputt/kaputt-1.2.ebuild
+++ b/dev-ml/kaputt/kaputt-1.2.ebuild
@@ -1,8 +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/kaputt/kaputt-1.2.ebuild,v 1.1 2012/09/09 16:03:22 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/kaputt/kaputt-1.2.ebuild,v 1.2 2013/03/10 10:50:33 aballier Exp $
-EAPI=3
+EAPI=5
inherit findlib
@@ -11,11 +11,11 @@ HOMEPAGE="http://kaputt.x9c.fr/"
SRC_URI="http://kaputt.x9c.fr/distrib/${P}.tar.gz"
LICENSE="GPL-3"
-SLOT="0"
+SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
-DEPEND=">=dev-lang/ocaml-3.11[ocamlopt]"
+DEPEND=">=dev-lang/ocaml-3.11:=[ocamlopt]"
RDEPEND="${DEPEND}"
src_configure() {
@@ -24,14 +24,14 @@ src_configure() {
}
src_compile() {
- emake all || die
+ emake all
}
src_test() {
- emake -j1 tests || die
+ emake -j1 tests
}
src_install() {
findlib_src_install
- dodoc README FEATURES CHANGES || die
+ dodoc README FEATURES CHANGES
}