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/wmclockmon/
Date: Sat, 28 Jul 2018 10:04:20
Message-Id: 1532772053.4da8e7c1c421da4ee8aafbf73031e42d2043201c.voyageur@gentoo
1 commit: 4da8e7c1c421da4ee8aafbf73031e42d2043201c
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sat Jul 21 20:48:03 2018 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 28 10:00:53 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4da8e7c1
7
8 x11-plugins/wmclockmon: EAPI7, improve ebuild
9
10 x11-plugins/wmclockmon/wmclockmon-0.8.1-r1.ebuild | 32 +++++++++++++++++++++++
11 1 file changed, 32 insertions(+)
12
13 diff --git a/x11-plugins/wmclockmon/wmclockmon-0.8.1-r1.ebuild b/x11-plugins/wmclockmon/wmclockmon-0.8.1-r1.ebuild
14 new file mode 100644
15 index 00000000000..27a55ba45c2
16 --- /dev/null
17 +++ b/x11-plugins/wmclockmon/wmclockmon-0.8.1-r1.ebuild
18 @@ -0,0 +1,32 @@
19 +# Copyright 1999-2018 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +
22 +EAPI=7
23 +
24 +DESCRIPTION="a nice digital clock with 7 different styles either in LCD or LED style"
25 +HOMEPAGE="http://tnemeth.free.fr/projets/dockapps.html"
26 +SRC_URI="mirror://debian/pool/main/w/${PN}/${PN}_${PV}-1.tar.gz"
27 +
28 +LICENSE="GPL-2"
29 +SLOT="0"
30 +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
31 +
32 +RDEPEND="x11-libs/gtk+:2
33 + x11-libs/libXext
34 + x11-libs/libX11
35 + x11-libs/libXpm
36 + x11-libs/libICE"
37 +DEPEND="${RDEPEND}
38 + virtual/pkgconfig
39 + x11-base/xorg-proto
40 + x11-libs/libXt"
41 +
42 +PATCHES=( "${FILESDIR}"/${P}-gtk.patch )
43 +
44 +DOCS=( AUTHORS BUGS ChangeLog NEWS README THANKS TODO \
45 + doc/sample2.wmclockmonrc doc/sample1.wmclockmonrc )
46 +
47 +src_install() {
48 + default
49 + newdoc debian/changelog ChangeLog.debian
50 +}