Install this version:
emerge -a =x11-wm/ratpoison-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =x11-wm/ratpoison-9999
Or alternatively:
emerge --autounmask-write -a =x11-wm/ratpoison-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools elisp-common git-r3 toolchain-funcs
DESCRIPTION="window manager without mouse dependency"
HOMEPAGE="https://www.nongnu.org/ratpoison/"
EGIT_REPO_URI="https://git.savannah.gnu.org/git/ratpoison.git"
LICENSE="GPL-2+ || ( GPL-2+ FDL-1.2+ )"
SLOT="0"
IUSE="debug emacs +history sloppy +xft +xrandr"
RDEPEND="
emacs? ( >=app-editors/emacs-23.1:* )
history? ( sys-libs/readline:= )
xft? ( x11-libs/libXft )
xrandr? ( x11-libs/libXrandr )
dev-perl/Pod-Parser
x11-libs/libX11
x11-libs/libXtst
"
DEPEND="
${RDEPEND}
x11-base/xorg-proto
"
BDEPEND="virtual/pkgconfig"
SITEFILE=50ratpoison-gentoo.el
DOCS=(
AUTHORS
ChangeLog
NEWS
README
TODO
)
PATCHES=(
"${FILESDIR}"/ratpoison.el-gentoo.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
econf \
$(use_enable debug) \
$(use_enable history) \
$(use_with xft) \
$(use_with xrandr) \
--without-electric-fence
}
src_compile() {
emake CFLAGS="${CFLAGS}"
if use emacs; then
elisp-compile contrib/ratpoison.el
fi
if use sloppy; then
pushd contrib
$(tc-getCC) \
${CFLAGS} \
${LDFLAGS} \
-o sloppy{,.c} \
$( $(tc-getPKG_CONFIG) --libs x11) \
|| die
fi
}
src_install() {
default
exeinto /etc/X11/Sessions
newexe "${FILESDIR}"/ratpoison.xsession ratpoison
insinto /usr/share/xsessions
doins "${FILESDIR}"/${PN}.desktop
use sloppy && dobin contrib/sloppy
docinto example
dodoc contrib/{genrpbindings,split.sh} \
doc/{ipaq.ratpoisonrc,sample.ratpoisonrc}
rm -rf "${ED}/usr/share/"{doc/ratpoison,ratpoison} || die
if use emacs; then
elisp-install ${PN} contrib/ratpoison.*
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
fi
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
Manage flags for this package:
euse -i <flag> -p x11-wm/ratpoison |
euse -E <flag> -p x11-wm/ratpoison |
euse -D <flag> -p x11-wm/ratpoison
emacs? ( >=app-editors/emacs-23.1:* ) history? ( sys-libs/readline:= ) xft? ( x11-libs/libXft ) xrandr? ( x11-libs/libXrandr ) dev-perl/Pod-Parser x11-libs/libX11 x11-libs/libXtst x11-base/xorg-proto
emacs? ( >=app-editors/emacs-23.1:* ) history? ( sys-libs/readline:= ) xft? ( x11-libs/libXft ) xrandr? ( x11-libs/libXrandr ) dev-perl/Pod-Parser x11-libs/libX11 x11-libs/libXtst
virtual/pkgconfig