Install this version:
emerge -a =dev-build/bmake-20251111
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-build/bmake-20251111
Or alternatively:
emerge --autounmask-write -a =dev-build/bmake-20251111
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 20251111 | 8 | ~alpha amd64 ~arm ~arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86 | 0 |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MK_VER=20210330
LUA_COMPAT=( lua5-{1..4} luajit )
inherit lua-single
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="~alpha amd64 ~arm ~arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86"
IUSE="test"
RESTRICT="!test? ( test )"
REQUIRED_USE="test? ( ${LUA_REQUIRED_USE} )"
BDEPEND="test? ( ${LUA_DEPS} )"
# Skip failing test (sandbox and csh)
PATCHES=(
"${FILESDIR}"/${PN}-20210206-tests.patch
"${FILESDIR}"/${PN}-20250618-lua-test.patch
)
pkg_setup() {
use test && lua-single_pkg_setup
}
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"
}
Manage flags for this package:
euse -i <flag> -p dev-build/bmake |
euse -E <flag> -p dev-build/bmake |
euse -D <flag> -p dev-build/bmake
test? ( )
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | bmake-20251111.tar.gz | 896003 bytes | http://void.crufty.net/ftp/pub/sjg/bmake-20251111.tar.gz |
| DIST | mk-20210330.tar.gz | 107380 bytes | http://void.crufty.net/ftp/pub/sjg/mk-20210330.tar.gz |