mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-15 01:23:35 +02:00
dwl main branch now uses wlroots-9999 Signed-off-by: Leonardo Hernández Hernández <leohdz172@proton.me> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
76 lines
1.4 KiB
Bash
76 lines
1.4 KiB
Bash
# Copyright 2022-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit savedconfig toolchain-funcs
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
EGIT_REPO_URI="https://codeberg.org/dwl/dwl.git"
|
|
inherit git-r3
|
|
else
|
|
MY_PV="${PV/_rc/-rc}"
|
|
MY_P="${PN}-v${MY_PV}"
|
|
SRC_URI="https://codeberg.org/${PN}/${PN}/releases/download/v${MY_PV}/${MY_P}.tar.gz"
|
|
S="${WORKDIR}/${MY_P}"
|
|
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
|
|
fi
|
|
|
|
DESCRIPTION="dwm for Wayland"
|
|
HOMEPAGE="https://codeberg.org/dwl/dwl"
|
|
|
|
LICENSE="CC0-1.0 GPL-3+ MIT"
|
|
SLOT="0"
|
|
IUSE="X"
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
COMMON_DEPEND="~gui-libs/wlroots-9999:=[libinput,session,X?]"
|
|
else
|
|
COMMON_DEPEND="
|
|
>=gui-libs/wlroots-0.19:=[libinput,session,X?]
|
|
<gui-libs/wlroots-0.20:="
|
|
fi
|
|
|
|
COMMON_DEPEND+="
|
|
dev-libs/libinput:=
|
|
dev-libs/wayland
|
|
x11-libs/libxkbcommon
|
|
X? (
|
|
x11-libs/libxcb:=
|
|
x11-libs/xcb-util-wm
|
|
)
|
|
"
|
|
RDEPEND="
|
|
${COMMON_DEPEND}
|
|
X? (
|
|
x11-base/xwayland
|
|
)
|
|
"
|
|
# uses <linux/input-event-codes.h>
|
|
DEPEND="
|
|
${COMMON_DEPEND}
|
|
sys-kernel/linux-headers
|
|
"
|
|
BDEPEND="
|
|
>=dev-libs/wayland-protocols-1.32
|
|
>=dev-util/wayland-scanner-1.23
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
src_prepare() {
|
|
restore_config config.h
|
|
|
|
default
|
|
}
|
|
|
|
src_compile() {
|
|
emake PKG_CONFIG="$(tc-getPKG_CONFIG)" CC="$(tc-getCC)" \
|
|
XWAYLAND="$(usev X -DXWAYLAND)" XLIBS="$(usev X "xcb xcb-icccm")" dwl
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
|
|
dodoc CHANGELOG.md README.md
|
|
|
|
save_config config.h
|
|
}
|