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/wmcdplay/
Date: Sat, 28 Jul 2018 10:04:18
Message-Id: 1532772052.86b09f5ca1c4d9e466766e3caf9420cf9fa9dd1d.voyageur@gentoo
1 commit: 86b09f5ca1c4d9e466766e3caf9420cf9fa9dd1d
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sat Jul 21 20:23:06 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=86b09f5c
7
8 x11-plugins/wmcdplay: EAPI7, improve ebuild
9
10 x11-plugins/wmcdplay/wmcdplay-1.1-r1.ebuild | 33 +++++++++++++++++++++++++++++
11 1 file changed, 33 insertions(+)
12
13 diff --git a/x11-plugins/wmcdplay/wmcdplay-1.1-r1.ebuild b/x11-plugins/wmcdplay/wmcdplay-1.1-r1.ebuild
14 new file mode 100644
15 index 00000000000..e9eed5cb7b7
16 --- /dev/null
17 +++ b/x11-plugins/wmcdplay/wmcdplay-1.1-r1.ebuild
18 @@ -0,0 +1,33 @@
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 desktop
24 +
25 +DESCRIPTION="CD player applet for WindowMaker"
26 +HOMEPAGE="https://www.dockapps.net/wmcdplay"
27 +SRC_URI="https://www.dockapps.net/download/${P}.tar.gz"
28 +
29 +LICENSE="GPL-2"
30 +SLOT="0"
31 +KEYWORDS="~amd64 ~ppc ~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 +S="${WORKDIR}/dockapps"
40 +
41 +DOCS=( ARTWORK README )
42 +
43 +src_prepare() {
44 + default
45 + eautoreconf
46 +}
47 +
48 +src_install() {
49 + default
50 + domenu "${FILESDIR}"/${PN}.desktop
51 +}