Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/lwm/
Date: Fri, 30 Sep 2022 11:02:26
Message-Id: 1664534895.d087b16d8b67447cbc42adb8b7f9471a93b1ece5.ionen@gentoo
1 commit: d087b16d8b67447cbc42adb8b7f9471a93b1ece5
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 30 10:24:31 2022 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 30 10:48:15 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d087b16d
7
8 x11-wm/lwm: EAPI6->8, use https, fix license
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 x11-wm/lwm/lwm-1.2.4.ebuild | 24 ++++++++++--------------
13 1 file changed, 10 insertions(+), 14 deletions(-)
14
15 diff --git a/x11-wm/lwm/lwm-1.2.4.ebuild b/x11-wm/lwm/lwm-1.2.4.ebuild
16 index c42e35e0988d..0a0a57a1a84e 100644
17 --- a/x11-wm/lwm/lwm-1.2.4.ebuild
18 +++ b/x11-wm/lwm/lwm-1.2.4.ebuild
19 @@ -1,35 +1,31 @@
20 -# Copyright 1999-2021 Gentoo Authors
21 +# Copyright 1999-2022 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=6
25 +EAPI=8
26
27 inherit toolchain-funcs
28
29 DESCRIPTION="The ultimate lightweight window manager"
30 -SRC_URI="http://www.jfc.org.uk/files/lwm/${P}.tar.gz"
31 -HOMEPAGE="http://www.jfc.org.uk/software/lwm.html"
32 +HOMEPAGE="https://www.jfc.org.uk/software/lwm.html"
33 +SRC_URI="https://www.jfc.org.uk/files/lwm/${P}.tar.gz"
34
35 -KEYWORDS="amd64 ppc ~sparc x86"
36 -LICENSE="GPL-2"
37 +LICENSE="GPL-2+"
38 SLOT="0"
39 +KEYWORDS="amd64 ppc ~sparc x86"
40
41 RDEPEND="
42 x11-libs/libICE
43 x11-libs/libSM
44 x11-libs/libX11
45 - x11-libs/libXext
46 -"
47 -
48 + x11-libs/libXext"
49 DEPEND="
50 ${RDEPEND}
51 - x11-base/xorg-proto
52 - >=x11-misc/imake-1.0.8-r1
53 -"
54 -
55 -DOCS=( AUTHORS BUGS ChangeLog )
56 + x11-base/xorg-proto"
57 +BDEPEND=">=x11-misc/imake-1.0.8-r1"
58
59 src_prepare() {
60 default
61 +
62 sed -i -e "s#(SMLIB)#& -lICE#g" Imakefile || die #370127
63 }