mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-22 13:33:32 -04:00
app-editors/imhex: add 1.31.0, drop 1.30.1
Closes: https://bugs.gentoo.org/915471 Closes: https://bugs.gentoo.org/909290 Closes: https://bugs.gentoo.org/909291 Signed-off-by: Henri Gasc <gasc@eurecom.fr>
This commit is contained in:
104
app-editors/imhex/imhex-1.31.0.ebuild
Normal file
104
app-editors/imhex/imhex-1.31.0.ebuild
Normal file
@@ -0,0 +1,104 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
CMAKE_BUILD_TYPE="Release"
|
||||
CMAKE_MAKEFILE_GENERATOR="emake"
|
||||
|
||||
inherit cmake llvm toolchain-funcs desktop
|
||||
|
||||
DESCRIPTION="A hex editor for reverse engineers, programmers, and eyesight"
|
||||
HOMEPAGE="https://github.com/WerWolv/ImHex"
|
||||
SRC_URI="
|
||||
https://github.com/WerWolv/ImHex/releases/download/v${PV}/Full.Sources.tar.gz -> ${P}.tar.gz
|
||||
https://github.com/WerWolv/ImHex-Patterns/archive/refs/tags/ImHex-v${PV}.tar.gz -> ${PN}-patterns-${PV}.tar.gz
|
||||
"
|
||||
S="${WORKDIR}/ImHex"
|
||||
S_PATTERNS="${WORKDIR}/ImHex-Patterns-ImHex-v${PV}"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="+system-llvm"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/llvm-16.patch"
|
||||
)
|
||||
|
||||
DEPEND="
|
||||
app-forensics/yara
|
||||
>=dev-cpp/nlohmann_json-3.10.2
|
||||
dev-libs/capstone
|
||||
dev-libs/nativefiledialog-extended
|
||||
>=dev-libs/libfmt-8.0.0:=
|
||||
media-libs/freetype
|
||||
media-libs/glfw
|
||||
media-libs/glm
|
||||
net-libs/libssh2
|
||||
net-libs/mbedtls
|
||||
net-misc/curl
|
||||
sys-apps/dbus
|
||||
sys-apps/file
|
||||
sys-apps/xdg-desktop-portal
|
||||
virtual/libiconv
|
||||
virtual/libintl
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="
|
||||
system-llvm? ( <sys-devel/llvm-17 )
|
||||
app-admin/chrpath
|
||||
gnome-base/librsvg
|
||||
sys-devel/lld
|
||||
dev-util/ccache
|
||||
"
|
||||
|
||||
pkg_pretend() {
|
||||
if tc-is-gcc && [[ $(gcc-major-version) -lt 12 ]]; then
|
||||
die "${PN} requires GCC 12 or newer"
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-D CMAKE_BUILD_TYPE="Release" \
|
||||
-D CMAKE_C_COMPILER_LAUNCHER=ccache \
|
||||
-D CMAKE_CXX_COMPILER_LAUNCHER=ccache \
|
||||
-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 \
|
||||
-D IMHEX_PLUGINS_IN_SHARE=OFF \
|
||||
-D IMHEX_STRIP_RELEASE=OFF \
|
||||
-D IMHEX_OFFLINE_BUILD=ON \
|
||||
-D IMHEX_IGNORE_BAD_CLONE=ON \
|
||||
-D IMHEX_PATTERNS_PULL_MASTER=OFF \
|
||||
-D IMHEX_IGNORE_BAD_COMPILER=OFF \
|
||||
-D IMHEX_USE_GTK_FILE_PICKER=OFF \
|
||||
-D IMHEX_DISABLE_STACKTRACE=OFF \
|
||||
-D IMHEX_USE_DEFAULT_BUILD_SETTINGS=OFF \
|
||||
-D IMHEX_STRICT_WARNINGS=OFF \
|
||||
-D IMHEX_VERSION="${PV}" \
|
||||
-D PROJECT_VERSION="${PV}" \
|
||||
-D USE_SYSTEM_CAPSTONE=ON \
|
||||
-D USE_SYSTEM_FMT=ON \
|
||||
-D USE_SYSTEM_LLVM=$(use system-llvm) \
|
||||
-D USE_SYSTEM_NFD=ON \
|
||||
-D USE_SYSTEM_NLOHMANN_JSON=ON \
|
||||
-D USE_SYSTEM_YARA=ON
|
||||
)
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake_src_install
|
||||
|
||||
domenu "${S}/dist/${PN}.desktop"
|
||||
|
||||
# Install patterns
|
||||
insinto /usr/share/imhex
|
||||
rm -rf "${S_PATTERNS}/tests"
|
||||
doins -r "${S_PATTERNS}"/*
|
||||
}
|
||||
Reference in New Issue
Block a user