summaryrefslogtreecommitdiff
path: root/x11-wm
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2020-11-29 13:02:26 -0500
committerAaron Bauman <bman@gentoo.org>2020-11-29 13:02:26 -0500
commit0d0abf66e7ba42cf442acb6b9acdef2cbfa9ad47 (patch)
treec24120216c9f263619e222f7adbebf2e704814d8 /x11-wm
parentx11-wm/pekwm: drop old (diff)
downloadgentoo-0d0abf66e7ba42cf442acb6b9acdef2cbfa9ad47.tar.gz
gentoo-0d0abf66e7ba42cf442acb6b9acdef2cbfa9ad47.tar.bz2
gentoo-0d0abf66e7ba42cf442acb6b9acdef2cbfa9ad47.zip
x11-wm/ratpoison: drop old
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'x11-wm')
-rw-r--r--x11-wm/ratpoison/Manifest1
-rw-r--r--x11-wm/ratpoison/ratpoison-1.4.8-r1.ebuild90
2 files changed, 0 insertions, 91 deletions
diff --git a/x11-wm/ratpoison/Manifest b/x11-wm/ratpoison/Manifest
index f92534b8da34..133c72a5c187 100644
--- a/x11-wm/ratpoison/Manifest
+++ b/x11-wm/ratpoison/Manifest
@@ -1,2 +1 @@
-DIST ratpoison-1.4.8.tar.xz 364700 BLAKE2B 0422606cda247cd6c87f7d661b3a09edd51311f8ade6df95ce69be1ffef03fb2837adc4bf9eafa737d14d47e788ad4ff54885f3bb030acf278893a91f099a841 SHA512 10b44489e60d3186ca407a5bd87e23dbd737cdafee22ea7284ac4db8bb4463081af483460d1899161fbae2973f4d25fbd1bfd354e3ffb59735baf69bbd6f94f6
DIST ratpoison-1.4.9.tar.xz 315584 BLAKE2B 18cff2ed835579b606ea99defda04db6ebaedc8bc71d3f7d12cf859caf908d427f50b345089ca3aae52a407ae763818d91a2dd4026c9b32ead95adfb2d065c25 SHA512 97f705efd2092b8e12528496890c59f613e6fcec010aca94a5a59bd641e22dfc50dd500a4b94af7a07553a8a6359f6bec4eee0db1a7ded29d7f051904b09beef
diff --git a/x11-wm/ratpoison/ratpoison-1.4.8-r1.ebuild b/x11-wm/ratpoison/ratpoison-1.4.8-r1.ebuild
deleted file mode 100644
index 96f03c5961ba..000000000000
--- a/x11-wm/ratpoison/ratpoison-1.4.8-r1.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit elisp-common eutils toolchain-funcs
-
-DESCRIPTION="window manager without mouse dependency"
-HOMEPAGE="http://www.nongnu.org/ratpoison/"
-SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~hppa ppc x86 ~amd64-linux ~x86-linux"
-IUSE="debug emacs +history sloppy +xft"
-
-RDEPEND="
- emacs? ( >=app-editors/emacs-23.1:* )
- history? ( sys-libs/readline:= )
- xft? ( x11-libs/libXft )
- virtual/perl-Pod-Parser
- x11-libs/libXinerama
- x11-libs/libXtst
-"
-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
-}