Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/windowlab/
Date: Mon, 29 Aug 2022 08:38:39
Message-Id: 1661762181.a23308788910b18797d673c4b019b77db76f1895.asturm@gentoo
1 commit: a23308788910b18797d673c4b019b77db76f1895
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 29 07:59:15 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 29 08:36:21 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2330878
7
8 x11-wm/windowlab: drop 1.40-r1, EAPI-6--
9
10 Closes: https://bugs.gentoo.org/867154
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 x11-wm/windowlab/windowlab-1.40-r1.ebuild | 49 -------------------------------
14 1 file changed, 49 deletions(-)
15
16 diff --git a/x11-wm/windowlab/windowlab-1.40-r1.ebuild b/x11-wm/windowlab/windowlab-1.40-r1.ebuild
17 deleted file mode 100644
18 index b8af8cf8cf79..000000000000
19 --- a/x11-wm/windowlab/windowlab-1.40-r1.ebuild
20 +++ /dev/null
21 @@ -1,49 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit toolchain-funcs
28 -
29 -DESCRIPTION="small and simple window manager of novel design"
30 -HOMEPAGE="http://www.nickgravgaard.com/windowlab/"
31 -SRC_URI="http://www.nickgravgaard.com/${PN}/${P}.tar"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~mips ppc x86"
36 -IUSE="truetype"
37 -
38 -RDEPEND="truetype? ( x11-libs/libXft )
39 - x11-libs/libXext"
40 -DEPEND="${RDEPEND}
41 - virtual/pkgconfig
42 - x11-base/xorg-proto"
43 -
44 -PATCHES=( "${FILESDIR}/${PN}-1.34-fixed-font.patch"
45 - "${FILESDIR}/${P}-gentoo.diff" )
46 -
47 -pkg_setup() {
48 - if use truetype ; then
49 - export DEFINES=-DXFT
50 - export EXTRA_INC=$($(tc-getPKG_CONFIG) --cflags xft)
51 - export EXTRA_LIBS=$($(tc-getPKG_CONFIG) --libs xft)
52 - fi
53 - tc-export CC
54 -}
55 -
56 -src_install() {
57 - default
58 -
59 - exeinto /etc/X11/Sessions
60 - cat <<- EOF > "${T}"/${PN}
61 - #!/bin/sh
62 - exec /usr/bin/${PN}
63 - EOF
64 - doexe "${T}"/${PN}
65 -}
66 -
67 -pkg_postinst() {
68 - elog "${PN}'s menu config file has been changed from"
69 - elog "/etc/X11/${PN}/menurc to /etc/X11/${PN}/${PN}.menurc"
70 -}