gjdwebserver-overlay/x11-wm/phoc/phoc-0.8.0.ebuild

91 lines
1.8 KiB
Bash
Raw Normal View History

2021-07-24 03:49:41 +02:00
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit meson vala xdg
MY_PV="v${PV}"
MY_P="${PN}-${MY_PV}"
2021-08-22 00:11:27 +02:00
# 0.13.0 does not work atm
2021-08-22 00:23:13 +02:00
WL_PV="0.12.0"
2021-08-22 00:11:27 +02:00
WL_P="wlroots-${WL_PV}"
2021-07-24 03:49:41 +02:00
DESCRIPTION="Wlroots based Phone compositor"
2021-08-21 17:38:58 +02:00
HOMEPAGE="https://gitlab.gnome.org/World/Phosh/phoc"
2021-07-24 03:49:41 +02:00
# we don't use the version on gentoo because it breaks
# the phoc installation. we follow method used in archlinuxarm
SRC_URI="
2021-08-22 00:11:27 +02:00
https://source.puri.sm/Librem5/phoc/-/archive/${MY_PV}/${MY_P}.tar.gz
https://github.com/swaywm/wlroots/releases/download/${WL_PV}/${WL_P}.tar.gz
2021-07-24 03:49:41 +02:00
"
2021-08-22 00:11:27 +02:00
2021-07-24 03:49:41 +02:00
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
IUSE="+introspection +systemd test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-libs/glib
dev-libs/gobject-introspection
dev-libs/libinput
dev-libs/wayland
dev-libs/wayland-protocols
gnome-base/gnome-desktop
systemd? (
!sys-apps/openrc
sys-apps/systemd
)
x11-libs/libdrm
x11-libs/pixman
x11-libs/xcb-util
x11-libs/xcb-util-wm
x11-wm/mutter
2021-08-20 21:58:13 +02:00
gnome-base/gsettings-desktop-schemas
2021-07-24 03:49:41 +02:00
"
BDEPEND="
dev-util/ctags
dev-util/meson
virtual/pkgconfig
x11-base/xorg-server
"
2021-08-22 00:11:27 +02:00
PATCHES=(
"${FILESDIR}/0001-seat-Don-t-notify-on-key-release.patch"
"${FILESDIR}/0002-seat-inhibit-touch-events-when-in-power-save-mode-or.patch"
)
2021-07-24 03:49:41 +02:00
S="${WORKDIR}/${MY_P}"
src_prepare() {
default
rm -r "${S}"/subprojects/wlroots || die "Failed to remove bundled wlroots"
2021-08-22 00:11:27 +02:00
cp -r "${WORKDIR}/${WL_P}" "${S}"/subprojects/wlroots || die "Failed to copy right version of wlroots"
2021-07-24 03:49:41 +02:00
}
src_configure() {
local emesonargs=(
-Ddefault_library=shared
-Dtests=false
2021-08-22 00:11:27 +02:00
-Dwlroots:logind-provider=systemd
-Dwlroots:libseat=disabled
2021-07-24 03:49:41 +02:00
)
meson_src_configure
}
src_install() {
DESTDIR="${D}" meson_src_install
# dobin "${S}"/helpers/scale-to-fit
}
pkg_postinst() {
xdg_pkg_postinst
}
pkg_postrm() {
xdg_pkg_postrm
}