commit: 86b09f5ca1c4d9e466766e3caf9420cf9fa9dd1d Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com> AuthorDate: Sat Jul 21 20:23:06 2018 +0000 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org> CommitDate: Sat Jul 28 10:00:52 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86b09f5c
x11-plugins/wmcdplay: EAPI7, improve ebuild x11-plugins/wmcdplay/wmcdplay-1.1-r1.ebuild | 33 +++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/x11-plugins/wmcdplay/wmcdplay-1.1-r1.ebuild b/x11-plugins/wmcdplay/wmcdplay-1.1-r1.ebuild new file mode 100644 index 00000000000..e9eed5cb7b7 --- /dev/null +++ b/x11-plugins/wmcdplay/wmcdplay-1.1-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools desktop + +DESCRIPTION="CD player applet for WindowMaker" +HOMEPAGE="https://www.dockapps.net/wmcdplay" +SRC_URI="https://www.dockapps.net/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND="x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm" +DEPEND="${RDEPEND} + x11-base/xorg-proto" + +S="${WORKDIR}/dockapps" + +DOCS=( ARTWORK README ) + +src_prepare() { + default + eautoreconf +} + +src_install() { + default + domenu "${FILESDIR}"/${PN}.desktop +}
