commit:     2e33c4afdbc30b34446e6d6f109e66452ca6c50f
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Mar  8 08:54:29 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Mar  8 08:54:29 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e33c4af

sys-devel/bmake: add 20220303

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-devel/bmake/Manifest              |  1 +
 sys-devel/bmake/bmake-20220303.ebuild | 55 +++++++++++++++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/sys-devel/bmake/Manifest b/sys-devel/bmake/Manifest
index ea5f936532f8..0d9a681f16b0 100644
--- a/sys-devel/bmake/Manifest
+++ b/sys-devel/bmake/Manifest
@@ -1,3 +1,4 @@
 DIST bmake-20220116.tar.gz 785312 BLAKE2B 
260ee10b5d295482477a9be92303c946139785f3c2a17cdb8a215322ac8876b708235af83f2c86f21c50da9a4b55b00300f08da40fc0d06ca2eda6caf1aafc50
 SHA512 
27e400f200afdb0ebc978bbd6a7422e570ab0a79ce609cffddbebb281d59ef752d840be14e08e989c83c14f2955f98d9549c8ae452450c75d03c59c61593fb5c
 DIST bmake-20220214.tar.gz 801006 BLAKE2B 
70b86d04cd891d1bc0aa9a7e8aac09edcd486fc0419e5def8696846bf5b7977cdc48a20707b74f5f2a8e69d2ac2aa2f05f6d490efed74770dc80cce0cf21a32a
 SHA512 
c5b17ca1128b0978f832e7c8ecb482d14021eb6c3ffc0c5a535ff7162162f8d5c32c688063f554ad1c37fd3ac26e67df57c66024132d301635e5854ac6c73802
+DIST bmake-20220303.tar.gz 802039 BLAKE2B 
73dd831d463ff361a47eee016b962d8de2f7182083eb68f6f7de544c4af0ea94b4346b7c7c2a71f300930c4d1f0c67407059feeb98bf475df1966ceb1d22ff1b
 SHA512 
c10a8aa4e3a0180904aaa3e6d3110be655eaa04365d75454291c837d79b0645da80a042118e2d9581b7399b73bcc472e13425e7ce768446392a3a3f5e2778c32
 DIST mk-20210330.tar.gz 107380 BLAKE2B 
9ac30a117d9ba31635cf8d8d29fdba76f148611f47628403ca8f807081c32509f10498d3c30fd24985e5420af4710fe59fc6315d71f2d0c1cfed93263a06553a
 SHA512 
6acd3ee911442934082f4f877d795b07c5e23022eaa9c0874799d97e92a2f5a663cb45f94b7f9745c49cbbce6b7e755a29e381ccfb9e68a0be1eedbd22fd5d3b

diff --git a/sys-devel/bmake/bmake-20220303.ebuild 
b/sys-devel/bmake/bmake-20220303.ebuild
new file mode 100644
index 000000000000..7b11aa7cebf4
--- /dev/null
+++ b/sys-devel/bmake/bmake-20220303.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MK_VER=20210330
+
+DESCRIPTION="NetBSD's portable make"
+HOMEPAGE="http://www.crufty.net/help/sjg/bmake.html";
+SRC_URI="
+       http://void.crufty.net/ftp/pub/sjg/${P}.tar.gz
+       http://void.crufty.net/ftp/pub/sjg/mk-${MK_VER}.tar.gz";
+S="${WORKDIR}/${PN}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+# Skip failing test (sandbox and csh)
+PATCHES=( "${FILESDIR}"/${PN}-20210206-tests.patch )
+
+src_prepare() {
+       default
+       cd "${WORKDIR}" || die
+       eapply "${FILESDIR}"/${PN}-20210314-mk-fixes.patch
+}
+
+src_configure() {
+       econf \
+               --with-mksrc=../mk \
+               --with-default-sys-path="${EPREFIX}"/usr/share/mk/${PN} \
+               --with-machine_arch=${ARCH}
+}
+
+src_compile() {
+       sh make-bootstrap.sh || die "bootstrap failed"
+}
+
+src_test() {
+       cd unit-tests || die
+
+       # the 'ternary' test uses ${A} internally, which
+       # conflicts with Gentoo's ${A}, hence unset it for
+       # the tests temporarily.
+       env -u A MAKEFLAGS= \
+               "${S}"/bmake -r -m / TEST_MAKE="${S}"/bmake test || die "tests 
compilation failed"
+}
+
+src_install() {
+       dobin ${PN}
+       doman ${PN}.1
+       FORCE_BSD_MK=1 SYS_MK_DIR=. \
+               sh ../mk/install-mk -v -m 644 "${ED}"/usr/share/mk/${PN} \
+               || die "failed to install mk files"
+}

Reply via email to