You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-devel/bmake/bmake-20170812.ebuild

51 lines
1.1 KiB

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils
MK_VER=20170505
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"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
S="${WORKDIR}/${PN}"
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
LC_ALL=C env -u A ${S}/bmake -r -m . > test.out 2>&1 \
|| die "tests compilation failed"
sed -i \
-e "s:${S}/::g" \
-e "s:bmake\\[.\\]:make:g" \
-e "s:unit-tests/::g" \
test.out || die "Fixing values failed"
diff -u test.exp test.out
[[ $(diff -u test.exp test.out |wc -l) -gt 0 ]] && die "tests differ"
}
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"
}