x11-wm/i3: add 4.25.1

Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
This commit is contained in:
Jakov Smolić
2026-03-22 12:30:06 +01:00
parent 5d69249a00
commit be281e30bc
2 changed files with 105 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST i3-4.24.tar.xz 1358292 BLAKE2B 83565232e38c7a1fe87c0473857508ac1e02b1a9a40f0195ab6e6b55a05d27d79cfaf592176a7ca6ccd0bc82c6aed0666ecb0d82b6219b68c62334af257fea00 SHA512 0fddf0f73025ed784b82d274f147f730abb42a00e70684567943acbe941a3329919c76e9f08888c9ee71cc3aaf55e5be3104682481711a5c6aa112d53e511a23
DIST i3-4.25.1.tar.xz 1357556 BLAKE2B 138c7f543e826ebec59fa0e7c4f1e247b08a5078eeec7553be90cf7bf2ff56534ef7420d21ed745a45a6d18d1936eef277fa2b4ec0c434b3a76275fb2a07d7da SHA512 10d44f7efcfb23089edf5ec9783ddd3b9dca5592f4d5b101ec7158cd75ec73d917e3025250968c1c8e2d44c64d749855000a07b16059c582c1e80b1220ac7c81

104
x11-wm/i3/i3-4.25.1.ebuild Normal file
View File

@@ -0,0 +1,104 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson optfeature virtualx
DESCRIPTION="An improved dynamic tiling window manager"
HOMEPAGE="https://i3wm.org/"
if [[ "${PV}" = *9999 ]]; then
EGIT_REPO_URI="https://github.com/i3/i3"
EGIT_BRANCH="next"
inherit git-r3
else
SRC_URI="https://i3wm.org/downloads/${P}.tar.xz"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
fi
LICENSE="BSD"
SLOT="0"
IUSE="doc test"
RESTRICT="!test? ( test )"
COMMON_DEPEND="
dev-libs/libev
dev-libs/libpcre2
dev-libs/yajl
x11-libs/cairo[X,xcb(+)]
x11-libs/libxcb:=
x11-libs/libxkbcommon[X]
x11-libs/pango[X]
x11-libs/startup-notification
x11-libs/xcb-util
x11-libs/xcb-util-cursor
x11-libs/xcb-util-keysyms
x11-libs/xcb-util-wm
x11-libs/xcb-util-xrm
x11-misc/xkeyboard-config
"
DEPEND="
${COMMON_DEPEND}
test? (
dev-perl/AnyEvent
dev-perl/ExtUtils-PkgConfig
dev-perl/Inline
dev-perl/Inline-C
dev-perl/IPC-Run
dev-perl/local-lib
dev-perl/X11-XCB
virtual/perl-Test-Simple
x11-base/xorg-server[xephyr]
x11-misc/xvfb-run
)
doc? (
app-text/asciidoc
app-text/xmlto
dev-lang/perl
)
"
RDEPEND="
${COMMON_DEPEND}
dev-lang/perl
dev-perl/AnyEvent-I3
dev-perl/JSON-XS
"
BDEPEND="virtual/pkgconfig"
src_prepare() {
default
cat > "${T}"/i3wm <<- EOF || die
#!/bin/sh
exec /usr/bin/i3
EOF
}
src_configure() {
local emesonargs=(
-Ddocdir="${EPREFIX}"/usr/share/doc/${PF}
$(meson_use doc docs)
$(meson_use doc mans)
)
meson_src_configure
}
src_test() {
virtx meson_src_test
}
src_install() {
meson_src_install
exeinto /etc/X11/Sessions
doexe "${T}"/i3wm
}
pkg_postinst() {
optfeature_header "There are several packages that may be useful with i3:"
optfeature "application launcher" x11-misc/dmenu
optfeature "simple screen locker" x11-misc/i3lock
optfeature "status bar generator" x11-misc/i3status
}