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/wmclock/
Date: Sat, 28 Jul 2018 10:04:21
Message-Id: 1532772052.52d862f4f832107bef2d72473376b66c7c0362ec.voyageur@gentoo
1 commit: 52d862f4f832107bef2d72473376b66c7c0362ec
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sat Jul 21 20:28:41 2018 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 28 10:00:52 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52d862f4
7
8 x11-plugins/wmclock: add EAPI7 ebuild
9
10 x11-plugins/wmclock/wmclock-1.0.16-r1.ebuild | 27 +++++++++++++++++++++++++++
11 1 file changed, 27 insertions(+)
12
13 diff --git a/x11-plugins/wmclock/wmclock-1.0.16-r1.ebuild b/x11-plugins/wmclock/wmclock-1.0.16-r1.ebuild
14 new file mode 100644
15 index 00000000000..abf2cecab1b
16 --- /dev/null
17 +++ b/x11-plugins/wmclock/wmclock-1.0.16-r1.ebuild
18 @@ -0,0 +1,27 @@
19 +# Copyright 1999-2018 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +
22 +EAPI=7
23 +inherit autotools
24 +
25 +DESCRIPTION="a dockapp that displays time and date (same style as NEXTSTEP(tm) OS)"
26 +HOMEPAGE="https://www.dockapps.net/wmclock"
27 +SRC_URI="https://www.dockapps.net/download/${P}.tar.gz"
28 +
29 +LICENSE="GPL-2"
30 +SLOT="0"
31 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
32 +
33 +RDEPEND="x11-libs/libX11
34 + x11-libs/libXext
35 + x11-libs/libXpm"
36 +DEPEND="${RDEPEND}
37 + x11-base/xorg-proto"
38 +
39 +# Specific path for this version
40 +S="${WORKDIR}/dockapps-daaf3aa"
41 +
42 +src_prepare() {
43 + default
44 + eautoreconf
45 +}