| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999-r10 | 8 | ~amd64 ~x86 | 0 |
# Copyright 2020-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
GITHUB_USER="yshui"
DESCRIPTION="Picom (née Compton) is an X compositor with XRender and OpenGL/ES 3.0 support."
LICENSE="MPL-2.0 MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dbus +man +opengl +pcre"
# This ebuild revision is for 69961987e or later
inherit fcaps github-pkg meson optfeature xdg
if [[ ${PV} != "9999" ]]; then
MY_PV="${PV/_rc/-rc}"
SRC_URI="${GITHUB_HOMEPAGE}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${MY_PV}"
fi
RDEPEND="
dev-libs/libev
>=dev-libs/libconfig-1.7:=
>=x11-libs/libxcb-1.9.2
x11-libs/pixman
x11-libs/libX11
x11-libs/xcb-util
x11-libs/xcb-util-image
x11-libs/xcb-util-renderutil
dbus? ( sys-apps/dbus )
opengl? ( media-libs/libepoxy )
pcre? ( dev-libs/libpcre2:= )"
DEPEND="${RDEPEND}
dev-libs/uthash"
BDEPEND="man? ( dev-ruby/asciidoctor )"
FILECAPS=( -m 755 cap_sys_nice+ep "usr/bin/${PN}" )
src_configure() {
# TODO: support FEATURES=test properly
local emesonargs=(
"$(meson_use dbus)"
"$(meson_use man with_docs)"
"$(meson_use opengl)"
"$(meson_use pcre regex)"
"-Dcompton=false"
)
meson_src_configure
}
src_install() {
dodoc CONTRIBUTORS
docinto examples
dodoc picom.sample.conf
if use dbus; then
dodoc -r dbus-examples/
fi
meson_src_install
}
pkg_postinst() {
xdg_pkg_postinst
fcaps_pkg_postinst
use dbus && ! use filecaps &&
optfeature "restricted realtime capabilities via D-Bus" "sys-auth/rtkit"
}
${RDEPEND}
dev-libs/uthash
man? ( dev-ruby/asciidoctor )