diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2019-03-17 11:28:36 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-04-29 15:41:07 +0200 |
commit | fc31e6c74853c2efcd4774381508ea785bc80c1c (patch) | |
tree | 13544fe7277dbc16524a1eff3f343ad96a43249a /app-shells | |
parent | app-shells/mksh: Fix the live ebuild (diff) | |
download | gentoo-fc31e6c74853c2efcd4774381508ea785bc80c1c.tar.gz gentoo-fc31e6c74853c2efcd4774381508ea785bc80c1c.tar.bz2 gentoo-fc31e6c74853c2efcd4774381508ea785bc80c1c.zip |
app-shells/mksh: Bump 57 from the live ebuild instead
Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Closes: https://github.com/gentoo/gentoo/pull/11441
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/mksh/mksh-57-r1.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/app-shells/mksh/mksh-57-r1.ebuild b/app-shells/mksh/mksh-57-r1.ebuild new file mode 100644 index 000000000000..3aa638fe2453 --- /dev/null +++ b/app-shells/mksh/mksh-57-r1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +if [[ $PV = 9999 ]]; then + inherit cvs + ECVS_SERVER="anoncvs.mirbsd.org:/cvs" + ECVS_MODULE="mksh" + ECVS_USER="_anoncvs" + ECVS_AUTH="ext" + KEYWORDS="" +else + SRC_URI="http://www.mirbsd.org/MirOS/dist/mir/mksh/${PN}-R${PV}.tgz" + KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" +fi + +DESCRIPTION="MirBSD Korn Shell" +HOMEPAGE="http://mirbsd.de/mksh" +LICENSE="BSD" +SLOT="0" +IUSE="static test" +RDEPEND="static? ( dev-libs/klibc )" +DEPEND=" + ${RDEPEND} + test? ( + dev-lang/perl + sys-apps/ed + ) +" +S="${WORKDIR}/${PN}" + +src_compile() { + tc-export CC + # we want to build static with klibc + if use static; then export CC="/usr/bin/klcc"; export LDSTATIC="-static"; fi + export CPPFLAGS="${CPPFLAGS} -DMKSH_DEFAULT_PROFILEDIR=\\\"${EPREFIX}/etc\\\"" + sh Build.sh -r || die +} + +src_install() { + into / + dobin mksh + doman mksh.1 + dodoc dot.mkshrc +} + +src_test() { + ./test.sh -v || die +} |