Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/blackbox/
Date: Tue, 18 May 2021 14:15:22
Message-Id: 1621347310.4f46238f15969b682981f87cc867ce0d36e3f263.bkohler@gentoo
1 commit: 4f46238f15969b682981f87cc867ce0d36e3f263
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 18 14:14:43 2021 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Tue May 18 14:15:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f46238f
7
8 x11-wm/blackbox: drop old
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
12
13 x11-wm/blackbox/blackbox-0.76.ebuild | 52 ------------------------------------
14 1 file changed, 52 deletions(-)
15
16 diff --git a/x11-wm/blackbox/blackbox-0.76.ebuild b/x11-wm/blackbox/blackbox-0.76.ebuild
17 deleted file mode 100644
18 index 14ccc52ea52..00000000000
19 --- a/x11-wm/blackbox/blackbox-0.76.ebuild
20 +++ /dev/null
21 @@ -1,52 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit autotools
28 -
29 -DESCRIPTION="A small, fast, full-featured window manager for X"
30 -HOMEPAGE="https://github.com/bbidulock/blackboxwm"
31 -SRC_URI="https://github.com/bbidulock/blackboxwm/archive/${PV}.tar.gz -> ${P}.tar.gz"
32 -
33 -LICENSE="MIT"
34 -SLOT="0"
35 -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 sparc x86"
36 -IUSE="nls truetype debug"
37 -
38 -RDEPEND="x11-libs/libXft
39 - x11-libs/libXt
40 - nls? ( >=sys-devel/gettext-0.20 )
41 - truetype? ( media-libs/freetype )"
42 -DEPEND="${RDEPEND}
43 - x11-base/xorg-proto"
44 -BDEPEND="virtual/pkgconfig"
45 -
46 -S="${WORKDIR}"/blackboxwm-${PV}
47 -
48 -src_prepare() {
49 - default
50 - eautoreconf
51 -}
52 -
53 -src_configure() {
54 - econf \
55 - --sysconfdir=/etc/X11/${PN} \
56 - $(use_enable debug) \
57 - $(use_enable nls) \
58 - $(use_enable truetype xft)
59 -}
60 -
61 -src_install() {
62 - dodir /etc/X11/Sessions
63 - echo "/usr/bin/blackbox" > "${D}/etc/X11/Sessions/${PN}"
64 - fperms a+x /etc/X11/Sessions/${PN}
65 -
66 - insinto /usr/share/xsessions
67 - doins "${FILESDIR}/${PN}.desktop"
68 -
69 - emake DESTDIR="${D}" install
70 - dodoc AUTHORS ChangeLog* COMPLIANCE README* TODO
71 -
72 - find "${D}" -name '*.la' -delete || die
73 -}