diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-08-15 02:47:30 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-08-15 02:47:30 +0000 |
commit | 5452f0a2bf3f37f24acaa548ba025b239b8a635e (patch) | |
tree | 2315b412d5f4c51809bb321b6ce96375b7ee738f /app-shells | |
parent | Fixing src_unpack / src_prepare (diff) | |
download | gentoo-2-5452f0a2bf3f37f24acaa548ba025b239b8a635e.tar.gz gentoo-2-5452f0a2bf3f37f24acaa548ba025b239b8a635e.tar.bz2 gentoo-2-5452f0a2bf3f37f24acaa548ba025b239b8a635e.zip |
Bump
(Portage version: 2.2.0/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-48.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/app-shells/mksh/ChangeLog b/app-shells/mksh/ChangeLog index 7abffab98242..67d78c4f9837 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.45 2013/08/05 09:16:46 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/mksh/ChangeLog,v 1.46 2013/08/15 02:47:30 patrick Exp $ + +*mksh-48 (15 Aug 2013) + + 15 Aug 2013; Patrick Lauer <patrick@gentoo.org> +mksh-48.ebuild: + Bump *mksh-47 (05 Aug 2013) diff --git a/app-shells/mksh/mksh-48.ebuild b/app-shells/mksh/mksh-48.ebuild new file mode 100644 index 000000000000..10e1d287e872 --- /dev/null +++ b/app-shells/mksh/mksh-48.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-48.ebuild,v 1.1 2013/08/15 02:47:30 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 +} |