diff options
author | Henri Gasc <gasc@eurecom.fr> | 2023-04-24 23:21:54 +0200 |
---|---|---|
committer | Henri Gasc <gasc@eurecom.fr> | 2023-04-24 23:22:49 +0200 |
commit | c858e783d282e2b770996c2569ffaad1f5ca5556 (patch) | |
tree | baa5664b2a3904b5647a3503ccc4ac84fcd6c30f /app-editors | |
parent | gui-libs/xdg-desktop-portal-hyprland: add 0.3.0-r1, update 9999 (diff) | |
download | guru-c858e783d282e2b770996c2569ffaad1f5ca5556.tar.gz guru-c858e783d282e2b770996c2569ffaad1f5ca5556.tar.bz2 guru-c858e783d282e2b770996c2569ffaad1f5ca5556.zip |
app-editors/imhex: use CFLAGS and CXXFLAGS, disable testing
Closes: https://bugs.gentoo.org/904953
Closes: https://bugs.gentoo.org/904954
Signed-off-by: Henri Gasc <gasc@eurecom.fr>
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/imhex/imhex-1.28.0.ebuild | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/app-editors/imhex/imhex-1.28.0.ebuild b/app-editors/imhex/imhex-1.28.0.ebuild index 8f91766d1..be29cd82b 100644 --- a/app-editors/imhex/imhex-1.28.0.ebuild +++ b/app-editors/imhex/imhex-1.28.0.ebuild @@ -55,12 +55,14 @@ pkg_pretend() { src_prepare() { default - # Due to network sandboxing, we can't do network test here. + # We are removing all tests altogether + # The tests need ImHex installed to succeed (see https://bugs.gentoo.org/attachment.cgi?id=860683), so we remove them + # We could use `ln "${BUILD_DIR}/lib/libimhex.so.${PV}" "/lib64/libimhex.so.${PV}"` and circumvent sandboxing sed -i \ - -e 's/StoreAPI$/#StoreAPI/' \ - -e 's/TipsAPI$/#TipsAPI/' \ - -e 's/ContentAPI$/#ContentAPI/' \ - "${S}/tests/helpers/CMakeLists.txt" || die + -e 's/enable_testing/#enable_testing/' \ + -e 's/add_subdirectory(tests/#add_subdirectory(tests/' \ + "${S}/CMakeLists.txt" || die + cmake_src_prepare } @@ -69,8 +71,8 @@ src_configure() { -D CMAKE_BUILD_TYPE="Release" \ -D CMAKE_C_COMPILER_LAUNCHER=ccache \ -D CMAKE_CXX_COMPILER_LAUNCHER=ccache \ - -D CMAKE_C_FLAGS="-fuse-ld=lld" \ - -D CMAKE_CXX_FLAGS="-fuse-ld=lld" \ + -D CMAKE_C_FLAGS="-fuse-ld=lld ${CFLAGS}" \ + -D CMAKE_CXX_FLAGS="-fuse-ld=lld ${CXXFLAGS}" \ -D CMAKE_OBJC_COMPILER_LAUNCHER=ccache \ -D CMAKE_OBJCXX_COMPILER_LAUNCHER=ccache \ -D CMAKE_SKIP_RPATH=ON \ @@ -97,13 +99,6 @@ src_configure() { cmake_src_configure } -src_test() { - pushd "${BUILD_DIR}" || die - emake unit_tests - popd || die - cmake_src_test -} - src_install() { cmake_src_install |