summaryrefslogtreecommitdiff
path: root/x11-wm
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2017-04-12 21:52:57 +0200
committerJeroen Roovers <jer@gentoo.org>2017-04-12 22:14:54 +0200
commit651b2a52bd15250200b98db54b2d3b75e6112d23 (patch)
treef52558f15dd9644565cd354e05a3d08994622cf1 /x11-wm
parentsys-cluster/nova: 15.0.3 bup (diff)
downloadgentoo-651b2a52bd15250200b98db54b2d3b75e6112d23.tar.gz
gentoo-651b2a52bd15250200b98db54b2d3b75e6112d23.tar.bz2
gentoo-651b2a52bd15250200b98db54b2d3b75e6112d23.zip
x11-wm/ratpoison: Old.
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'x11-wm')
-rw-r--r--x11-wm/ratpoison/ratpoison-1.4.8.ebuild91
1 files changed, 0 insertions, 91 deletions
diff --git a/x11-wm/ratpoison/ratpoison-1.4.8.ebuild b/x11-wm/ratpoison/ratpoison-1.4.8.ebuild
deleted file mode 100644
index 51e563da08d2..000000000000
--- a/x11-wm/ratpoison/ratpoison-1.4.8.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit elisp-common eutils toolchain-funcs
-
-DESCRIPTION="an extremely light-weight and barebones wm modelled after screen"
-HOMEPAGE="http://www.nongnu.org/ratpoison/"
-SRC_URI="https://savannah.nongnu.org/download/${PN}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 hppa ppc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE="debug emacs +history sloppy +xft"
-
-RDEPEND="
- emacs? ( virtual/emacs )
- history? ( sys-libs/readline )
- virtual/perl-Pod-Parser
- x11-libs/libXinerama
- x11-libs/libXtst
- xft? ( x11-libs/libXft )
-"
-DEPEND="
- ${RDEPEND}
- app-arch/xz-utils
- virtual/pkgconfig
-"
-
-SITEFILE=50ratpoison-gentoo.el
-DOCS=( AUTHORS ChangeLog NEWS README TODO )
-
-src_prepare() {
- epatch "${FILESDIR}/ratpoison.el-gentoo.patch"
-}
-
-src_configure() {
- econf \
- $(use_enable debug) \
- $(use_enable history) \
- $(use_with xft)
-}
-
-src_compile() {
- emake CFLAGS="${CFLAGS}"
- if use emacs; then
- elisp-compile contrib/ratpoison.el || die "elisp-compile failed"
- 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}
-
- 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
-}