diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-08-05 09:16:46 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-08-05 09:16:46 +0000 |
commit | 9ccc5c5d506ee555c9e9ee01ddd124470bd1e102 (patch) | |
tree | 7483b3793449c6962300e911d932abec65c6e38f /app-shells | |
parent | Version bump (diff) | |
download | gentoo-2-9ccc5c5d506ee555c9e9ee01ddd124470bd1e102.tar.gz gentoo-2-9ccc5c5d506ee555c9e9ee01ddd124470bd1e102.tar.bz2 gentoo-2-9ccc5c5d506ee555c9e9ee01ddd124470bd1e102.zip |
Bump
(Portage version: 2.2.0_alpha194/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-47.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/app-shells/mksh/ChangeLog b/app-shells/mksh/ChangeLog index 8e15167b569d..7abffab98242 100644 --- a/app-shells/mksh/ChangeLog +++ b/app-shells/mksh/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-shells/mksh # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/mksh/ChangeLog,v 1.44 2013/05/04 08:23:39 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/mksh/ChangeLog,v 1.45 2013/08/05 09:16:46 patrick Exp $ + +*mksh-47 (05 Aug 2013) + + 05 Aug 2013; Patrick Lauer <patrick@gentoo.org> +mksh-47.ebuild: + Bump *mksh-46 (04 May 2013) diff --git a/app-shells/mksh/mksh-47.ebuild b/app-shells/mksh/mksh-47.ebuild new file mode 100644 index 000000000000..f8a15068093a --- /dev/null +++ b/app-shells/mksh/mksh-47.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/mksh/mksh-47.ebuild,v 1.1 2013/08/05 09:16:46 patrick Exp $ + +EAPI=4 + +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 +} |