From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3D5BB139694 for ; Wed, 12 Apr 2017 20:15:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 938B2E0C26; Wed, 12 Apr 2017 20:15:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 74A4DE0C26 for ; Wed, 12 Apr 2017 20:15:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6A99134106E for ; Wed, 12 Apr 2017 20:15:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A0B1A73EF for ; Wed, 12 Apr 2017 20:15:00 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1492028094.651b2a52bd15250200b98db54b2d3b75e6112d23.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/ratpoison/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/ratpoison/ratpoison-1.4.8.ebuild X-VCS-Directories: x11-wm/ratpoison/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 651b2a52bd15250200b98db54b2d3b75e6112d23 X-VCS-Branch: master Date: Wed, 12 Apr 2017 20:15:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9cc59ed8-428d-4d6f-b4a0-0e0b44b7f54d X-Archives-Hash: ce8c0fe2feb5f256915772336bcd3dd5 commit: 651b2a52bd15250200b98db54b2d3b75e6112d23 Author: Jeroen Roovers gentoo org> AuthorDate: Wed Apr 12 19:52:57 2017 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Wed Apr 12 20:14:54 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=651b2a52 x11-wm/ratpoison: Old. Package-Manager: Portage-2.3.5, Repoman-2.3.2 x11-wm/ratpoison/ratpoison-1.4.8.ebuild | 91 --------------------------------- 1 file changed, 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 51e563da08d..00000000000 --- 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 -}