From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 1CD6A1384B4 for ; Mon, 23 Nov 2015 12:00:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 415A821C0B7; Mon, 23 Nov 2015 12:00:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DF2E021C0B7 for ; Mon, 23 Nov 2015 12:00:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CD5F334068A for ; Mon, 23 Nov 2015 12:00:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C2A8A7F for ; Mon, 23 Nov 2015 12:00:18 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1448279890.296d6177a2d8cca1ddfeccb8b0c911315279c596.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/blackbox/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/blackbox/blackbox-0.70.1.ebuild X-VCS-Directories: x11-wm/blackbox/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 296d6177a2d8cca1ddfeccb8b0c911315279c596 X-VCS-Branch: master Date: Mon, 23 Nov 2015 12:00:18 +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: a8a61c94-42ed-4e25-b334-54d32ec9da2f X-Archives-Hash: 17ececbf5383fc09b7c4f7f91bc48bed commit: 296d6177a2d8cca1ddfeccb8b0c911315279c596 Author: Michael Palimaka gentoo org> AuthorDate: Mon Nov 23 11:58:10 2015 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Mon Nov 23 11:58:10 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=296d6177 x11-wm/blackbox: remove old Package-Manager: portage-2.2.25 x11-wm/blackbox/blackbox-0.70.1.ebuild | 57 ---------------------------------- 1 file changed, 57 deletions(-) diff --git a/x11-wm/blackbox/blackbox-0.70.1.ebuild b/x11-wm/blackbox/blackbox-0.70.1.ebuild deleted file mode 100644 index ee0d2f9..0000000 --- a/x11-wm/blackbox/blackbox-0.70.1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -inherit autotools eutils - -DESCRIPTION="A small, fast, full-featured window manager for X" -HOMEPAGE="http://blackboxwm.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}wm/${P}.tar.bz2" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" -IUSE="nls truetype debug" - -RDEPEND="x11-libs/libXft - x11-libs/libXt - nls? ( sys-devel/gettext ) - truetype? ( media-libs/freetype )" -DEPEND="${RDEPEND} - virtual/pkgconfig - >=sys-apps/sed-4 - x11-proto/xextproto" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}/${P}-gcc-4.3.patch" \ - "${FILESDIR}/${P}-asneeded.patch" - if has_version ">=x11-libs/libX11-1.4.0"; then - sed -i -e "s/_XUTIL_H_/_X11&/" lib/Util.hh || die #348556 - fi - sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die - eautoreconf -} - -src_compile() { - econf \ - --sysconfdir=/etc/X11/${PN} \ - $(use_enable debug) \ - $(use_enable nls) \ - $(use_enable truetype xft) - emake || die "emake failed" -} - -src_install() { - dodir /etc/X11/Sessions - echo "/usr/bin/blackbox" > "${D}/etc/X11/Sessions/${PN}" - fperms a+x /etc/X11/Sessions/${PN} - - insinto /usr/share/xsessions - doins "${FILESDIR}/${PN}.desktop" - - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog* COMPLIANCE README* TODO || die -}