Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmlife/
Date: Thu, 02 Aug 2018 20:14:57
Message-Id: 1533240773.c6aa63b40e285f14caf3246d77d7d67b326127f9.voyageur@gentoo
1 commit: c6aa63b40e285f14caf3246d77d7d67b326127f9
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sun Jul 22 15:35:55 2018 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 2 20:12:53 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6aa63b4
7
8 x11-plugins/wmlife: EAPI7, improve ebuild
9
10 x11-plugins/wmlife/wmlife-1.0.1-r1.ebuild | 36 +++++++++++++++++++++++++++++++
11 1 file changed, 36 insertions(+)
12
13 diff --git a/x11-plugins/wmlife/wmlife-1.0.1-r1.ebuild b/x11-plugins/wmlife/wmlife-1.0.1-r1.ebuild
14 new file mode 100644
15 index 00000000000..d3e3ba865bc
16 --- /dev/null
17 +++ b/x11-plugins/wmlife/wmlife-1.0.1-r1.ebuild
18 @@ -0,0 +1,36 @@
19 +# Copyright 1999-2018 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +
22 +EAPI=7
23 +
24 +inherit autotools
25 +
26 +DESCRIPTION="dockapp running Conway's Game of Life (and program launcher)"
27 +HOMEPAGE="http://www.improbability.net/#wmlife"
28 +SRC_URI="http://www.improbability.net/${PN}/${P}.tar.gz"
29 +
30 +LICENSE="GPL-2"
31 +SLOT="0"
32 +KEYWORDS="~amd64 ~x86"
33 +
34 +RDEPEND="x11-libs/gtk+:2
35 + x11-libs/libICE
36 + x11-libs/libSM
37 + x11-libs/libX11
38 + x11-libs/libXext"
39 +DEPEND="${RDEPEND}"
40 +BDEPEND="virtual/pkgconfig"
41 +
42 +DOCS=( AUTHORS ChangeLog NEWS README )
43 +
44 +PATCHES=( "${FILESDIR}"/${PN}-1.0.0-stringh.patch
45 + "${FILESDIR}"/${P}-configure.patch )
46 +
47 +src_prepare() {
48 + default
49 + eautoreconf
50 +}
51 +
52 +src_configure() {
53 + econf --enable-session
54 +}