app-crypt/intel-ipsec-mb - 9999 (guru)

Search

Install

Install this version:

emerge -a =app-crypt/intel-ipsec-mb-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =app-crypt/intel-ipsec-mb-9999

Or alternatively:

emerge --autounmask-write -a =app-crypt/intel-ipsec-mb-9999

Package Information

Description:
Multi-Buffer Crypto for IPSec from Intel
Homepage:
https://github.com/intel/intel-ipsec-mb
License:
BSD

Ebuild Details

Version EAPI Keywords Slot
9999 8 ~amd64 0
View Raw Ebuild
# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit toolchain-funcs

DESCRIPTION="Multi-Buffer Crypto for IPSec from Intel"
HOMEPAGE="https://github.com/intel/intel-ipsec-mb"

if [[ ${PV} == 9999 ]]; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/intel/intel-ipsec-mb.git"
else
	SRC_URI="https://github.com/intel/intel-ipsec-mb/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
	KEYWORDS="~amd64"
fi

LICENSE="BSD"
SLOT="0"
IUSE="+safe-data +safe-lookup +safe-param test"
RESTRICT="!test? ( test )"

BDEPEND="
	>=dev-lang/nasm-2.13.03
"

src_configure(){
	local mycmakeargs=(
		-DSAFE_DATA=$(usex safe-data)
		-DSAFE_LOOKUP=$(usex safe-lookup)
		-DSAFE_PARAM=$(usex safe-param)
	)
	cmake_src_configure
}

USE Flags

Manage flags for this package: euse -i <flag> -p app-crypt/intel-ipsec-mb | euse -E <flag> -p app-crypt/intel-ipsec-mb | euse -D <flag> -p app-crypt/intel-ipsec-mb

Global/Standard Flags

safe-data
Default: Enabled (+)
safe-lookup
Default: Enabled (+)
safe-param
Default: Enabled (+)

Inherited Eclasses

Dependencies

BDEPEND

	>=dev-lang/nasm-2.13.03