diff options
author | Patrick Lauer <patrick@gentoo.org> | 2012-12-01 03:12:33 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2012-12-01 03:12:33 +0000 |
commit | 4ece070087d142fce8e0b7cbdb274067fc1fc443 (patch) | |
tree | 569aa8c489ece1abca153b49bf4e19e4db919caf /app-shells | |
parent | marked x86 per bug 444058 (diff) | |
download | gentoo-2-4ece070087d142fce8e0b7cbdb274067fc1fc443.tar.gz gentoo-2-4ece070087d142fce8e0b7cbdb274067fc1fc443.tar.bz2 gentoo-2-4ece070087d142fce8e0b7cbdb274067fc1fc443.zip |
Bump
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/mksh/ChangeLog | 8 | ||||
-rw-r--r-- | app-shells/mksh/mksh-41.ebuild | 37 | ||||
-rw-r--r-- | app-shells/mksh/mksh-9999.ebuild | 4 |
3 files changed, 46 insertions, 3 deletions
diff --git a/app-shells/mksh/ChangeLog b/app-shells/mksh/ChangeLog index 0c3fff97053d..f6862cd265c3 100644 --- a/app-shells/mksh/ChangeLog +++ b/app-shells/mksh/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-shells/mksh # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/mksh/ChangeLog,v 1.34 2012/09/22 20:04:21 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/mksh/ChangeLog,v 1.35 2012/12/01 03:12:33 patrick Exp $ + +*mksh-41 (01 Dec 2012) + + 01 Dec 2012; Patrick Lauer <patrick@gentoo.org> +mksh-41.ebuild, + mksh-9999.ebuild: + Bump 22 Sep 2012; Christoph Junghans <ottxor@gentoo.org> +files/mksh-40f-etc-configurable.patch, -files/mksh-39c-urandom-write.patch, diff --git a/app-shells/mksh/mksh-41.ebuild b/app-shells/mksh/mksh-41.ebuild new file mode 100644 index 000000000000..8656145327ce --- /dev/null +++ b/app-shells/mksh/mksh-41.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/mksh/mksh-41.ebuild,v 1.1 2012/12/01 03:12:33 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 +} diff --git a/app-shells/mksh/mksh-9999.ebuild b/app-shells/mksh/mksh-9999.ebuild index 7f2931834046..c41021a6ec9d 100644 --- a/app-shells/mksh/mksh-9999.ebuild +++ b/app-shells/mksh/mksh-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/mksh/mksh-9999.ebuild,v 1.3 2012/09/22 20:04:21 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/mksh/mksh-9999.ebuild,v 1.4 2012/12/01 03:12:33 patrick Exp $ EAPI=4 @@ -32,7 +32,7 @@ S="${WORKDIR}/${PN}" src_compile() { tc-export CC export CPPFLAGS="${CPPFLAGS} -DMKSH_DEFAULT_PROFILEDIR=\\\"${EPREFIX}/etc\\\"" - sh Build.sh -r || die + sh Build.sh -r -c lto || sh Rebuild.sh || die } src_install() { |