mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-19 07:49:00 -04:00
Closes: https://bugs.gentoo.org/937500 Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
65 lines
1.2 KiB
Bash
65 lines
1.2 KiB
Bash
# Copyright 2021-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
MY_P="IXWebSocket-${PV}"
|
|
|
|
DESCRIPTION="C++ websocket client and server library"
|
|
HOMEPAGE="https://github.com/machinezone/IXWebSocket"
|
|
SRC_URI="https://github.com/machinezone/IXWebSocket/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0/11.3.2"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="+ssl test zlib ws"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
DEPEND="
|
|
ssl? (
|
|
dev-libs/openssl:=
|
|
)
|
|
ws? (
|
|
>=dev-libs/spdlog-1.8.0:=
|
|
)
|
|
zlib? (
|
|
sys-libs/zlib:=
|
|
)
|
|
test? (
|
|
>=dev-libs/spdlog-1.8.0:=
|
|
)
|
|
"
|
|
RDEPEND="
|
|
ssl? (
|
|
dev-libs/openssl:=
|
|
)
|
|
zlib? (
|
|
sys-libs/zlib:=
|
|
)
|
|
"
|
|
|
|
PATCHES=(
|
|
# Some tests require network connectivity
|
|
"${FILESDIR}/${P}-remove-network-tests.patch"
|
|
# Upstream uses git submodules
|
|
"${FILESDIR}/${P}-use-system-spdlog.patch"
|
|
# Fix Server empty thread name
|
|
"${FILESDIR}/${P}-fix-server-empty-thread-name.patch"
|
|
# Fix build with GCC 15
|
|
"${FILESDIR}/${P}-fix-gcc15.patch"
|
|
)
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DUSE_TLS="$(usex ssl)"
|
|
-DUSE_ZLIB="$(usex zlib)"
|
|
-DUSE_WS="$(usex ws)"
|
|
-DUSE_TEST="$(usex test)"
|
|
)
|
|
cmake_src_configure
|
|
}
|