Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/larswm/
Date: Sun, 30 Sep 2018 11:52:19
Message-Id: 1538308322.e0dcb076974be636827fd2ecb817ba9cfc7f0ee5.mgorny@gentoo
1 commit: e0dcb076974be636827fd2ecb817ba9cfc7f0ee5
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sun Sep 23 16:50:06 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 30 11:52:02 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0dcb076
7
8 x11-wm/larswm: EAPI7 revbump, fix HOMEPAGE, SRC_URI
9
10 Closes: https://bugs.gentoo.org/666886
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
13 Closes: https://github.com/gentoo/gentoo/pull/9956
14
15 x11-wm/larswm/larswm-7.5.3-r2.ebuild | 52 ++++++++++++++++++++++++++++++++++++
16 1 file changed, 52 insertions(+)
17
18 diff --git a/x11-wm/larswm/larswm-7.5.3-r2.ebuild b/x11-wm/larswm/larswm-7.5.3-r2.ebuild
19 new file mode 100644
20 index 00000000000..84b61cef262
21 --- /dev/null
22 +++ b/x11-wm/larswm/larswm-7.5.3-r2.ebuild
23 @@ -0,0 +1,52 @@
24 +# Copyright 1999-2018 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +
29 +inherit toolchain-funcs
30 +
31 +DESCRIPTION="Tiling window manager for X11, based on 9wm by David Hogan"
32 +HOMEPAGE="http://www.fnurt.net/larswm/"
33 +SRC_URI="http://www.fnurt.net/larswm/${P}.tar.gz"
34 +LICENSE="9wm"
35 +
36 +SLOT="0"
37 +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
38 +
39 +RDEPEND="x11-libs/libX11
40 + x11-libs/libXmu
41 + x11-libs/libXt
42 + x11-libs/libXext"
43 +DEPEND="${RDEPEND}
44 + x11-base/xorg-proto
45 + x11-misc/imake
46 + x11-misc/gccmakedep
47 + app-text/rman"
48 +
49 +src_configure() {
50 + xmkmf -a || die
51 +}
52 +
53 +src_compile() {
54 + emake \
55 + CC=$(tc-getCC) \
56 + CCOPTIONS="${CFLAGS}" \
57 + EXTRA_LDOPTIONS="${LDFLAGS}"
58 +}
59 +
60 +src_install() {
61 + dobin larsclock larsmenu larsremote larswm
62 + newbin sample.xsession larswm-session
63 + local x
64 + for x in *.man; do
65 + newman ${x} ${x/man/1}
66 + done
67 + dodoc ChangeLog README* sample.*
68 +
69 + insinto /etc/X11
70 + newins sample.larswmrc larswmrc
71 + exeinto /etc/X11/Sessions
72 + newexe sample.xsession larswm
73 + insinto /usr/share/xsessions
74 + doins "${FILESDIR}"/larswm.desktop
75 +}