dev-libs/zydis: new package, add 4.1.1

Signed-off-by: Pavel Sobolev <contact@paveloom.dev>
This commit is contained in:
Pavel Sobolev
2025-07-09 22:49:31 +03:00
parent ad2ece4a6f
commit a3789ce04c
3 changed files with 52 additions and 0 deletions

1
dev-libs/zydis/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST zydis-4.1.1.tar.gz 811528 BLAKE2B 65593d836604fe7fbd2991b735f77674e02f7e2bd5f6fdc90a688e162b730c9fc7698a3ba46779f23331ff14fcc0cc204a2da808734ec7ea45772ebcd2328371 SHA512 177e84fedb3449e29ffb6c0b02a92066ba1aa8fb624facad5593902b8e08cb8ae0b20ff38c16987989c8e414d7484d09dab7917c00a8fe54aa9bab4bc90e275d

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>contact@paveloom.dev</email>
<name>Pavel Sobolev</name>
</maintainer>
<upstream>
<bugs-to>https://github.com/zyantific/zydis/issues</bugs-to>
<remote-id type="github">zyantific/zydis</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,39 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Fast and lightweight x86/x86-64 disassembler and code generation library"
HOMEPAGE="https://zydis.re"
SRC_URI="https://github.com/zyantific/zydis/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc man test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-libs/zycore-c
"
DEPEND="${RDEPEND}"
BDEPEND="
doc? ( app-text/doxygen )
man? ( app-text/ronn-ng )
"
src_configure() {
local mycmakeargs=(
-DZYAN_SYSTEM_ZYCORE=yes
-DZYDIS_BUILD_EXAMPLES=no
-DZYDIS_BUILD_SHARED_LIB=yes
-DZYDIS_BUILD_DOXYGEN=$(usex doc)
-DZYDIS_BUILD_MAN=$(usex man)
-DZYDIS_BUILD_TESTS=$(usex test)
)
cmake_src_configure
}