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/wmitime/
Date: Thu, 02 Aug 2018 20:14:51
Message-Id: 1533240772.66406829655ee583cc1901f6d23b354ba6cbeab8.voyageur@gentoo
1 commit: 66406829655ee583cc1901f6d23b354ba6cbeab8
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sun Jul 22 14:53:29 2018 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 2 20:12:52 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66406829
7
8 x11-plugins/wmitime: add EAPI7 ebuild
9
10 x11-plugins/wmitime/wmitime-0.5-r1.ebuild | 29 +++++++++++++++++++++++++++++
11 1 file changed, 29 insertions(+)
12
13 diff --git a/x11-plugins/wmitime/wmitime-0.5-r1.ebuild b/x11-plugins/wmitime/wmitime-0.5-r1.ebuild
14 new file mode 100644
15 index 00000000000..99ccad44049
16 --- /dev/null
17 +++ b/x11-plugins/wmitime/wmitime-0.5-r1.ebuild
18 @@ -0,0 +1,29 @@
19 +# Copyright 1999-2018 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +
22 +EAPI=7
23 +inherit toolchain-funcs
24 +
25 +DESCRIPTION="Overglorified clock dockapp w/time, date, and internet time"
26 +HOMEPAGE="https://www.dockapps.net/wmitime"
27 +SRC_URI="https://dev.gentoo.org/~voyageur/distfiles/${P}.tar.gz"
28 +
29 +LICENSE="GPL-2"
30 +SLOT="0"
31 +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
32 +
33 +RDEPEND=">=x11-libs/libdockapp-0.7:=
34 + x11-libs/libX11
35 + x11-libs/libXext
36 + x11-libs/libXpm"
37 +DEPEND="${RDEPEND}"
38 +
39 +src_compile() {
40 + emake CC="$(tc-getCC)" \
41 + CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
42 +}
43 +
44 +src_install() {
45 + emake DESTDIR="${D}" PREFIX=/usr install
46 + einstalldocs
47 +}