From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CE84F138334 for ; Sat, 28 Jul 2018 10:04:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70CFDE0864; Sat, 28 Jul 2018 10:04:15 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2E523E0864 for ; Sat, 28 Jul 2018 10:04:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1066C335CD6 for ; Sat, 28 Jul 2018 10:04:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2608638C for ; Sat, 28 Jul 2018 10:04:10 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1532772052.86b09f5ca1c4d9e466766e3caf9420cf9fa9dd1d.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmcdplay/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmcdplay/wmcdplay-1.1-r1.ebuild X-VCS-Directories: x11-plugins/wmcdplay/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 86b09f5ca1c4d9e466766e3caf9420cf9fa9dd1d X-VCS-Branch: master Date: Sat, 28 Jul 2018 10:04:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a750f511-ebd0-4d83-96d7-9d36297ed4cf X-Archives-Hash: 0a9991c4ef8e14d3b2b3bbc5b5547ee5 commit: 86b09f5ca1c4d9e466766e3caf9420cf9fa9dd1d Author: Michael Mair-Keimberger gmail com> AuthorDate: Sat Jul 21 20:23:06 2018 +0000 Commit: Bernard Cafarelli gentoo 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 +}