diff options
author | Patrick Lauer <patrick@gentoo.org> | 2014-09-04 08:31:29 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2014-09-04 08:31:29 +0000 |
commit | 01668cdca285adb6ef12f543de54278f68df5a28 (patch) | |
tree | 5608d4ece8d653a07e81bd13d306d3238f49bee7 /app-shells | |
parent | old (diff) | |
download | gentoo-2-01668cdca285adb6ef12f543de54278f68df5a28.tar.gz gentoo-2-01668cdca285adb6ef12f543de54278f68df5a28.tar.bz2 gentoo-2-01668cdca285adb6ef12f543de54278f68df5a28.zip |
Bump
(Portage version: 2.2.12/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/mksh/ChangeLog | 7 | ||||
-rw-r--r-- | app-shells/mksh/mksh-50b.ebuild | 42 |
2 files changed, 48 insertions, 1 deletions
diff --git a/app-shells/mksh/ChangeLog b/app-shells/mksh/ChangeLog index f15f68261a12..01d20192fc34 100644 --- a/app-shells/mksh/ChangeLog +++ b/app-shells/mksh/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-shells/mksh # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/mksh/ChangeLog,v 1.53 2014/07/01 04:05:41 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/mksh/ChangeLog,v 1.54 2014/09/04 08:31:29 patrick Exp $ + +*mksh-50b (04 Sep 2014) + + 04 Sep 2014; Patrick Lauer <patrick@gentoo.org> +mksh-50b.ebuild: + Bump *mksh-50 (01 Jul 2014) diff --git a/app-shells/mksh/mksh-50b.ebuild b/app-shells/mksh/mksh-50b.ebuild new file mode 100644 index 000000000000..05f478591ce1 --- /dev/null +++ b/app-shells/mksh/mksh-50b.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/mksh/mksh-50b.ebuild,v 1.1 2014/09/04 08:31:29 patrick Exp $ + +EAPI=5 + +inherit eutils toolchain-funcs + +DESCRIPTION="MirBSD KSH Shell" +HOMEPAGE="http://mirbsd.de/mksh" +SRC_URI="http://www.mirbsd.org/MirOS/dist/mir/mksh/${PN}-R${PV}.tgz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="static" +DEPEND="static? ( dev-libs/klibc )" +RDEPEND="" +S="${WORKDIR}/${PN}" + +src_compile() { + tc-export CC + # we want to build static with klibc + if use static ; then + unset CC + export CC="/usr/bin/klcc" + export LDSTATIC="-static" + fi + export CPPFLAGS="${CPPFLAGS} -DMKSH_DEFAULT_PROFILEDIR=\\\"${EPREFIX}/etc\\\"" + # we can't assume lto existing/enabled, so we add a fallback + sh Build.sh -r -c lto || sh Rebuild.sh || die +} + +src_install() { + exeinto /bin + doexe mksh + doman mksh.1 + dodoc dot.mkshrc +} + +src_test() { + ./test.sh || die +} |