diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-11-21 00:21:11 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-11-21 00:21:11 +0000 |
commit | 498edef6c5b16dd0c70c3007c358aa9017597405 (patch) | |
tree | 248db38edeb0077d71f993d214a19a86b270f84a /app-shells | |
parent | Version bump. Cleanup old. (diff) | |
download | gentoo-2-498edef6c5b16dd0c70c3007c358aa9017597405.tar.gz gentoo-2-498edef6c5b16dd0c70c3007c358aa9017597405.tar.bz2 gentoo-2-498edef6c5b16dd0c70c3007c358aa9017597405.zip |
Bump
(Portage version: 2.2.7/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-48b.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/app-shells/mksh/ChangeLog b/app-shells/mksh/ChangeLog index 67d78c4f9837..103092779f69 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.46 2013/08/15 02:47:30 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/mksh/ChangeLog,v 1.47 2013/11/21 00:21:11 patrick Exp $ + +*mksh-48b (21 Nov 2013) + + 21 Nov 2013; Patrick Lauer <patrick@gentoo.org> +mksh-48b.ebuild: + Bump *mksh-48 (15 Aug 2013) diff --git a/app-shells/mksh/mksh-48b.ebuild b/app-shells/mksh/mksh-48b.ebuild new file mode 100644 index 000000000000..2d7cf6ee7590 --- /dev/null +++ b/app-shells/mksh/mksh-48b.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-48b.ebuild,v 1.1 2013/11/21 00:21:11 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 +} |