mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-19 15:59:00 -04:00
91 lines
1.8 KiB
Bash
91 lines
1.8 KiB
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake xdg
|
|
|
|
DESCRIPTION="Set of libraries for building Wayland based shells"
|
|
HOMEPAGE="https://mir-server.io/"
|
|
SRC_URI="https://github.com/canonical/mir/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="|| ( GPL-2 GPL-3 ) || ( LGPL-2.1 LGPL-3 )"
|
|
SLOT="0/${PV}"
|
|
KEYWORDS="~amd64"
|
|
IUSE="test X"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND="
|
|
dev-cpp/glibmm:2
|
|
dev-cpp/libxmlpp:2.6
|
|
dev-cpp/yaml-cpp:=
|
|
dev-libs/boost:=
|
|
dev-libs/glib:2
|
|
dev-libs/libinput:=
|
|
dev-libs/wayland
|
|
dev-util/lttng-ust:=
|
|
media-libs/freetype
|
|
media-libs/libepoxy
|
|
media-libs/libglvnd
|
|
media-libs/mesa
|
|
sys-apps/util-linux
|
|
x11-libs/libXcursor
|
|
x11-libs/libdrm
|
|
x11-libs/libxcb:=
|
|
x11-libs/libxkbcommon
|
|
virtual/libudev:=
|
|
X? ( x11-libs/libX11 )
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
media-libs/glm
|
|
"
|
|
BDEPEND="
|
|
dev-util/gdbus-codegen
|
|
virtual/pkgconfig
|
|
test? (
|
|
dev-cpp/gtest
|
|
dev-util/umockdev
|
|
x11-base/xwayland
|
|
)
|
|
"
|
|
|
|
PATCHES=(
|
|
# bug 932786
|
|
"${FILESDIR}/${PN}-2.17.0-remove-debug-flags.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
cmake_src_prepare
|
|
cmake_comment_add_subdirectory examples/
|
|
}
|
|
|
|
src_configure() {
|
|
local platforms="gbm-kms;atomic-kms;wayland"
|
|
use X && platforms="${platforms};x11"
|
|
|
|
local mycmakeargs=(
|
|
# wlcs is not packaged
|
|
-DMIR_ENABLE_WLCS_TESTS=OFF
|
|
-DMIR_ENABLE_TESTS="$(usex test)"
|
|
-DMIR_FATAL_COMPILE_WARNINGS=OFF
|
|
-DMIR_PLATFORM="${platforms}"
|
|
)
|
|
use test && mycmakeargs+=(
|
|
# likely will not work in build environment
|
|
-DMIR_BUILD_PERFORMANCE_TESTS=OFF
|
|
-DMIR_BUILD_PLATFORM_TEST_HARNESS=OFF
|
|
-DMIR_BUILD_UNIT_TESTS=OFF
|
|
)
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
cmake_src_install
|
|
|
|
if use test; then
|
|
# remove dummy libraries
|
|
rm -f "${ED}/usr/$(get_libdir)/mir/server-platform/"{graphics-dummy.so,input-stub.so} || die
|
|
fi
|
|
}
|