mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-01 11:18:09 -07:00
50 lines
1.2 KiB
Bash
50 lines
1.2 KiB
Bash
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake-multilib git-r3
|
|
|
|
DESCRIPTION="Library to execute a function when a specific event occurs on a file descriptor"
|
|
HOMEPAGE="
|
|
https://libevent.org/
|
|
https://github.com/libevent/libevent/
|
|
"
|
|
EGIT_REPO_URI="https://github.com/libevent/libevent.git"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0/2.2.1-r2"
|
|
KEYWORDS=""
|
|
IUSE="
|
|
+clock-gettime debug malloc-replacement mbedtls +ssl static-libs
|
|
test verbose-debug
|
|
"
|
|
# TODO: hangs
|
|
RESTRICT="test"
|
|
|
|
DEPEND="
|
|
mbedtls? ( net-libs/mbedtls:3=[${MULTILIB_USEDEP}] )
|
|
ssl? ( >=dev-libs/openssl-1.0.1h-r2:=[${MULTILIB_USEDEP}] )
|
|
"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
"
|
|
|
|
DOCS=( README.md ChangeLog{,-2.0,-2.1} whatsnew-2.{0,1}.txt )
|
|
MULTILIB_WRAPPED_HEADERS=(
|
|
/usr/include/event2/event-config.h
|
|
)
|
|
|
|
multilib_src_configure() {
|
|
local mycmakeargs=(
|
|
-DEVENT__DISABLE_CLOCK_GETTIME=$(usex !clock-gettime ON OFF)
|
|
-DEVENT__DISABLE_DEBUG_MODE=$(usex !debug ON OFF)
|
|
-DEVENT__DISABLE_MBEDTLS=$(usex !mbedtls ON OFF)
|
|
-DEVENT__DISABLE_MM_REPLACEMENT=$(usex !malloc-replacement ON OFF)
|
|
-DEVENT__DISABLE_OPENSSL=$(usex !ssl ON OFF)
|
|
-DEVENT__LIBRARY_TYPE=$(usex static-libs BOTH SHARED)
|
|
-DCMAKE_DEBUG_POSTFIX=""
|
|
)
|
|
cmake_src_configure
|
|
}
|