From b44bf61e5a5cc6fa213abb54799d184aee08faf6 Mon Sep 17 00:00:00 2001 From: Matthew Smith Date: Mon, 21 Feb 2022 19:05:07 +0000 Subject: [PATCH] dev-libs/boxfort: use 'meson_use' helper Signed-off-by: Matthew Smith --- dev-libs/boxfort/boxfort-0.1.3.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/dev-libs/boxfort/boxfort-0.1.3.ebuild b/dev-libs/boxfort/boxfort-0.1.3.ebuild index 67faa22bc2604..c1d27a92948be 100644 --- a/dev-libs/boxfort/boxfort-0.1.3.ebuild +++ b/dev-libs/boxfort/boxfort-0.1.3.ebuild @@ -10,6 +10,7 @@ inherit meson python-any-r1 DESCRIPTION="Convenient & cross-platform sandboxing C library" HOMEPAGE="https://github.com/Snaipe/BoxFort" SRC_URI="https://github.com/Snaipe/BoxFort/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}"/BoxFort-${PV} LICENSE="MIT" SLOT="0" @@ -22,8 +23,6 @@ DEPEND="test? ( )" BDEPEND="virtual/pkgconfig" -S="${WORKDIR}/BoxFort-${PV}" - python_check_deps() { use test && has_version "dev-util/cram[${PYTHON_USEDEP}]" } @@ -34,8 +33,8 @@ pkg_setup() { src_configure() { local emesonargs=( - -Dsamples=$(usex test true false) - -Dtests=$(usex test true false) + $(meson_use test samples) + $(meson_use test tests) ) meson_src_configure