diff options
author | Ulrich Müller <ulm@gentoo.org> | 2019-12-13 15:57:46 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2019-12-13 15:57:46 +0100 |
commit | 52f850c9495db2d90aa1c7c0508cf8f343982869 (patch) | |
tree | 77b6f81a08e6394d2edccdd596dc10fb47563e07 /app-misc/ledit | |
parent | media-sound/a2jmidid: x86 stable wrt bug #702658 (diff) | |
download | gentoo-52f850c9495db2d90aa1c7c0508cf8f343982869.tar.gz gentoo-52f850c9495db2d90aa1c7c0508cf8f343982869.tar.bz2 gentoo-52f850c9495db2d90aa1c7c0508cf8f343982869.zip |
app-misc/ledit: Assign RESTRICT only once.
Rearrange variables to be in canonical order.
Closes: https://bugs.gentoo.org/699196
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-misc/ledit')
-rw-r--r-- | app-misc/ledit/ledit-2.03.ebuild | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/app-misc/ledit/ledit-2.03.ebuild b/app-misc/ledit/ledit-2.03.ebuild index ecbb81e13662..0cc52ce565ac 100644 --- a/app-misc/ledit/ledit-2.03.ebuild +++ b/app-misc/ledit/ledit-2.03.ebuild @@ -4,22 +4,20 @@ EAPI=5 inherit eutils -RESTRICT="installsources" -IUSE="+ocamlopt" - 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/" +LICENSE="BSD" +SLOT="0" +KEYWORDS="amd64 ppc x86" +IUSE="+ocamlopt" +RESTRICT="installsources !ocamlopt? ( strip )" + DEPEND=">=dev-lang/ocaml-3.09:=[ocamlopt?] dev-ml/camlp5:=" RDEPEND="${DEPEND}" -SLOT="0" -LICENSE="BSD" -KEYWORDS="amd64 ppc x86" -RESTRICT="!ocamlopt? ( strip )" - src_compile() { emake -j1 all if use ocamlopt; then |