diff options
author | Sven Wegener <swegener@gentoo.org> | 2023-06-21 20:47:51 +0200 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2023-06-21 20:50:07 +0200 |
commit | 78c7a1dfc9324d69ee3ba84100f397b7c4b64796 (patch) | |
tree | f9e2f8cf889df6e893dce26ed4553c4d4f61d794 /sys-kernel/cryptodev/cryptodev-9999.ebuild | |
parent | dev-perl/Mozilla-PublicSuffix: Keyword 1.0.6 ia64, #908902 (diff) | |
download | gentoo-78c7a1dfc9324d69ee3ba84100f397b7c4b64796.tar.gz gentoo-78c7a1dfc9324d69ee3ba84100f397b7c4b64796.tar.bz2 gentoo-78c7a1dfc9324d69ee3ba84100f397b7c4b64796.zip |
sys-kernel/cryptodev: switch to linux-mod-r1.eclass
Closes: https://bugs.gentoo.org/908726
Signed-off-by: Sven Wegener <swegener@gentoo.org>
Diffstat (limited to 'sys-kernel/cryptodev/cryptodev-9999.ebuild')
-rw-r--r-- | sys-kernel/cryptodev/cryptodev-9999.ebuild | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/sys-kernel/cryptodev/cryptodev-9999.ebuild b/sys-kernel/cryptodev/cryptodev-9999.ebuild index ac9bd1eeea15..b5a1a271a0b0 100644 --- a/sys-kernel/cryptodev/cryptodev-9999.ebuild +++ b/sys-kernel/cryptodev/cryptodev-9999.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -inherit linux-info linux-mod +inherit linux-info linux-mod-r1 DESCRIPTION="device that allows access to Linux kernel cryptographic drivers" HOMEPAGE="http://cryptodev-linux.org/" @@ -26,10 +26,6 @@ DEPEND="virtual/linux-sources" #test requires that the module is already loaded RESTRICT="test" -MODULE_NAMES="cryptodev(extra:${S})" -BUILD_PARAMS="KERNEL_DIR=\"\${KV_OUT_DIR}\"" -BUILD_TARGETS="build" - pkg_pretend() { use kernel_linux || die "cryptodev ebuild only support linux" @@ -42,8 +38,15 @@ pkg_pretend() { check_extra_config } +src_compile() { + local modlist=( cryptodev=extra:${S} ) + local modargs=( KERNEL_DIR="${KV_OUT_DIR}" ) + + linux-mod-r1_src_compile +} + src_install() { - linux-mod_src_install + linux-mod-r1_src_install insinto /usr/include/crypto doins crypto/cryptodev.h |