diff options
author | 2019-02-16 09:29:28 +0000 | |
---|---|---|
committer | 2019-02-16 09:29:28 +0000 | |
commit | 4ff445f3edb18c67d30edbd48169069ed8dfff42 (patch) | |
tree | 10969eaabcd8142998a582c8a2a9abc6815bcb04 /sys-apps/toybox/toybox-0.8.0.ebuild | |
parent | dev-vcs/hgsubversion: Drop old (diff) | |
download | gentoo-4ff445f3edb18c67d30edbd48169069ed8dfff42.tar.gz gentoo-4ff445f3edb18c67d30edbd48169069ed8dfff42.tar.bz2 gentoo-4ff445f3edb18c67d30edbd48169069ed8dfff42.zip |
sys-apps/toybox: Bump
Package-Manager: Portage-2.3.60, Repoman-2.3.12
X-Autogenerated-SOB: Yes
Signed-off-by: Patrick Lauer <patrick@gentoo.org>
Diffstat (limited to 'sys-apps/toybox/toybox-0.8.0.ebuild')
-rw-r--r-- | sys-apps/toybox/toybox-0.8.0.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/sys-apps/toybox/toybox-0.8.0.ebuild b/sys-apps/toybox/toybox-0.8.0.ebuild new file mode 100644 index 000000000000..564d2c54b23c --- /dev/null +++ b/sys-apps/toybox/toybox-0.8.0.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit multiprocessing savedconfig toolchain-funcs + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/landley/toybox.git" +else + SRC_URI="https://landley.net/code/toybox/downloads/${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +# makefile is stupid +RESTRICT="test" + +DESCRIPTION="Common linux commands in a multicall binary" +HOMEPAGE="https://landley.net/code/toybox/" + +# The source code does not explicitly say that it's BSD, but the author has repeatedly said it +LICENSE="BSD-2" +SLOT="0" +IUSE="" + +src_prepare() { + default + restore_config .config +} + +src_configure() { + if [ -f .config ]; then + yes "" | emake -j1 oldconfig > /dev/null + return 0 + else + einfo "Could not locate user configfile, so we will save a default one" + emake -j1 defconfig > /dev/null + fi +} + +src_compile() { + tc-export CC STRIP + export HOSTCC=$(tc-getBUILD_CC) + unset CROSS_COMPILE + export CPUS=$(makeopts_jobs) + emake V=1 +} + +src_test() { + emake test +} + +src_install() { + save_config .config + newbin generated/unstripped/toybox toybox +} |