summaryrefslogtreecommitdiff
path: root/x11-wm
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2014-11-05 11:26:49 +0000
committerJeroen Roovers <jer@gentoo.org>2014-11-05 11:26:49 +0000
commit9970fef914eb9286656ee7227812d51a02600fa8 (patch)
treeddd26d755b98c002a6449d957789bffd7dc486c6 /x11-wm
parentOld. (diff)
downloadgentoo-2-9970fef914eb9286656ee7227812d51a02600fa8.tar.gz
gentoo-2-9970fef914eb9286656ee7227812d51a02600fa8.tar.bz2
gentoo-2-9970fef914eb9286656ee7227812d51a02600fa8.zip
Old.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'x11-wm')
-rw-r--r--x11-wm/ratpoison/ChangeLog5
-rw-r--r--x11-wm/ratpoison/ratpoison-1.4.7.ebuild92
2 files changed, 4 insertions, 93 deletions
diff --git a/x11-wm/ratpoison/ChangeLog b/x11-wm/ratpoison/ChangeLog
index bc5dfadfc800..189ca6fd53d1 100644
--- a/x11-wm/ratpoison/ChangeLog
+++ b/x11-wm/ratpoison/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for x11-wm/ratpoison
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ChangeLog,v 1.113 2014/11/01 17:48:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ChangeLog,v 1.114 2014/11/05 11:26:49 jer Exp $
+
+ 05 Nov 2014; Jeroen Roovers <jer@gentoo.org> -ratpoison-1.4.7.ebuild:
+ Old.
01 Nov 2014; Agostino Sarubbo <ago@gentoo.org> ratpoison-1.4.8.ebuild:
Stable for ppc, wrt bug #526098
diff --git a/x11-wm/ratpoison/ratpoison-1.4.7.ebuild b/x11-wm/ratpoison/ratpoison-1.4.7.ebuild
deleted file mode 100644
index ab36c69ab4b0..000000000000
--- a/x11-wm/ratpoison/ratpoison-1.4.7.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ratpoison-1.4.7.ebuild,v 1.9 2014/08/01 09:56:40 armin76 Exp $
-
-EAPI=5
-
-inherit elisp-common eutils toolchain-funcs
-
-DESCRIPTION="Ratpoison is an extremely light-weight and barebones wm modelled after screen"
-HOMEPAGE="http://www.nongnu.org/ratpoison/"
-SRC_URI="http://savannah.nongnu.org/download/${PN}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 hppa ppc x86 ~x86-fbsd ~x86-freebsd ~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 history) \
- $(use_with xft) \
- $(usex debug --enable-debug '')
-}
-
-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
-}