diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-05-24 15:28:09 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-05-24 15:28:09 +0000 |
commit | 3dccb1f55b819e8c05c650b5c57f38c550aad79f (patch) | |
tree | 93c2ceecefd0e121bead5fdb0f85b50f9d23be05 /app-misc | |
parent | Initial commit, thanks to 0xd34df00d (diff) | |
download | gentoo-2-3dccb1f55b819e8c05c650b5c57f38c550aad79f.tar.gz gentoo-2-3dccb1f55b819e8c05c650b5c57f38c550aad79f.tar.bz2 gentoo-2-3dccb1f55b819e8c05c650b5c57f38c550aad79f.zip |
eapi5 and add slot deps on ocaml and camlp5
(Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/ledit/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/ledit/ledit-2.03.ebuild | 18 |
2 files changed, 14 insertions, 11 deletions
diff --git a/app-misc/ledit/ChangeLog b/app-misc/ledit/ChangeLog index 7e97b455c721..7a2c2d3a30f4 100644 --- a/app-misc/ledit/ChangeLog +++ b/app-misc/ledit/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-misc/ledit -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/ledit/ChangeLog,v 1.40 2012/06/08 15:02:30 aballier Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/ledit/ChangeLog,v 1.41 2013/05/24 15:28:09 aballier Exp $ + + 24 May 2013; Alexis Ballier <aballier@gentoo.org> ledit-2.03.ebuild: + eapi5 and add slot deps on ocaml and camlp5 08 Jun 2012; Alexis Ballier <aballier@gentoo.org> -ledit-2.02.1.ebuild: remove old diff --git a/app-misc/ledit/ledit-2.03.ebuild b/app-misc/ledit/ledit-2.03.ebuild index f8a4b31ee4d9..06d275badb6f 100644 --- a/app-misc/ledit/ledit-2.03.ebuild +++ b/app-misc/ledit/ledit-2.03.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/app-misc/ledit/ledit-2.03.ebuild,v 1.4 2012/06/08 11:50:35 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/ledit/ledit-2.03.ebuild,v 1.5 2013/05/24 15:28:09 aballier Exp $ -EAPI=2 +EAPI=5 inherit eutils RESTRICT="installsources" @@ -12,8 +12,8 @@ DESCRIPTION="A line editor to be used with interactive commands." SRC_URI="http://pauillac.inria.fr/~ddr/ledit/distrib/src/${P}.tgz" HOMEPAGE="http://pauillac.inria.fr/~ddr/ledit/" -DEPEND=">=dev-lang/ocaml-3.09[ocamlopt?] - dev-ml/camlp5" +DEPEND=">=dev-lang/ocaml-3.09:=[ocamlopt?] + dev-ml/camlp5:=" RDEPEND="${DEPEND}" SLOT="0" @@ -21,9 +21,9 @@ LICENSE="BSD" KEYWORDS="amd64 ppc x86 ~x86-fbsd" src_compile() { - emake -j1 all || die "make failed" + emake -j1 all if use ocamlopt; then - emake -j1 ledit.opt || die "make failed" + emake -j1 ledit.opt else # If using bytecode we dont want to strip the binary as it would remove the # bytecode and only leave ocamlrun... @@ -33,9 +33,9 @@ src_compile() { src_install() { if use ocamlopt; then - newbin ledit.opt ledit || die + newbin ledit.opt ledit else - newbin ledit.out ledit || die + newbin ledit.out ledit fi doman ledit.1 dodoc CHANGES README |