diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-03-06 03:55:18 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-03-06 03:55:18 +0000 |
commit | f3c0f57e2c52e800a09585449f590284ced6710a (patch) | |
tree | fbfae84009f5a853712a6bf0f8a08ee265163660 /app-shells | |
parent | Remove older unstable kernels (diff) | |
download | gentoo-2-f3c0f57e2c52e800a09585449f590284ced6710a.tar.gz gentoo-2-f3c0f57e2c52e800a09585449f590284ced6710a.tar.bz2 gentoo-2-f3c0f57e2c52e800a09585449f590284ced6710a.zip |
Bump
(Portage version: 2.2.0_alpha166/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-44.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/app-shells/mksh/ChangeLog b/app-shells/mksh/ChangeLog index 951a654f116f..560a48f3db91 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.37 2013/02/22 08:42:22 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/mksh/ChangeLog,v 1.38 2013/03/06 03:55:18 patrick Exp $ + +*mksh-44 (06 Mar 2013) + + 06 Mar 2013; Patrick Lauer <patrick@gentoo.org> +mksh-44.ebuild: + Bump *mksh-43 (22 Feb 2013) *mksh-41c (22 Feb 2013) diff --git a/app-shells/mksh/mksh-44.ebuild b/app-shells/mksh/mksh-44.ebuild new file mode 100644 index 000000000000..cfc28466ac32 --- /dev/null +++ b/app-shells/mksh/mksh-44.ebuild @@ -0,0 +1,37 @@ +# 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-44.ebuild,v 1.1 2013/03/06 03:55:18 patrick Exp $ + +EAPI=4 + +inherit eutils toolchain-funcs unpacker + +DESCRIPTION="MirBSD KSH Shell" +HOMEPAGE="http://mirbsd.de/mksh" +ARC4_VERSION="1.14" +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="" +DEPEND="app-arch/cpio" +RDEPEND="" +S="${WORKDIR}/${PN}" + +src_compile() { + tc-export CC + 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 +} |