mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-21 07:52:21 -04:00
64 lines
1.4 KiB
Bash
64 lines
1.4 KiB
Bash
# Copyright 2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="Lightweight C++ Discord bot library"
|
|
HOMEPAGE="https://dpp.dev/ https://github.com/brainboxdotcc/DPP"
|
|
SRC_URI="
|
|
https://github.com/brainboxdotcc/DPP/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
|
|
https://patch-diff.githubusercontent.com/raw/brainboxdotcc/DPP/pull/591.patch -> ${P}-fix-install.patch
|
|
"
|
|
|
|
LICENSE="Apache-2.0"
|
|
# DPP is extremely ABI instable due to frequent changes in the Discord API
|
|
# See https://github.com/brainboxdotcc/DPP/issues/207#issuecomment-1007030157
|
|
SLOT="0/${PV}"
|
|
KEYWORDS="~amd64"
|
|
IUSE="voice"
|
|
|
|
RDEPEND="
|
|
dev-libs/openssl:=
|
|
sys-libs/zlib:=
|
|
|
|
voice? (
|
|
dev-libs/libsodium:=
|
|
media-libs/opus
|
|
)
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
PATCHES=(
|
|
# Backport of the installation fixes, remove after 10.0.21
|
|
"${DISTDIR}/${P}-fix-install.patch"
|
|
)
|
|
|
|
S="${WORKDIR}/DPP-${PV}"
|
|
|
|
DOCS=( "README.md" "SECURITY.md" )
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DBUILD_SHARED_LIBS=true
|
|
-DBUILD_VOICE_SUPPORT=$(usex voice)
|
|
-DRUN_LDCONFIG=false
|
|
# Tests require network access
|
|
-DDPP_BUILD_TEST=false
|
|
-DDPP_NO_VCPKG=true
|
|
)
|
|
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
cmake_src_install
|
|
|
|
# Installation fix, remove after 10.0.21
|
|
mv \
|
|
"${ED}"/usr/$(get_libdir)/cmake/dpp/libdpp-config.cmake \
|
|
"${ED}"/usr/$(get_libdir)/cmake/dpp/dpp-config.cmake \
|
|
|| die "Failed to fix libdpp.cmake file name"
|
|
}
|