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 48B52138334 for ; Sat, 28 Jul 2018 10:04:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 251A4E0831; Sat, 28 Jul 2018 10:04:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 EFC33E0831 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 A6DB6335CC7 for ; Sat, 28 Jul 2018 10:04:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 12EEA38B 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.a172cce4d6608721561859342f1aeffb71498c3e.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.ebuild X-VCS-Directories: x11-plugins/wmcdplay/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: a172cce4d6608721561859342f1aeffb71498c3e 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: 022b4069-1abd-4c34-a4f0-213e5d59a8d4 X-Archives-Hash: 6bdf9de1f7f3b19cc0e0b77f105cd8cc commit: a172cce4d6608721561859342f1aeffb71498c3e Author: Michael Mair-Keimberger gmail com> AuthorDate: Sat Jul 21 20:23:00 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=a172cce4 x11-plugins/wmcdplay: add missing inherit, use default in src_install x11-plugins/wmcdplay/wmcdplay-1.1.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/x11-plugins/wmcdplay/wmcdplay-1.1.ebuild b/x11-plugins/wmcdplay/wmcdplay-1.1.ebuild index f0a1d39b633..0b223d6fe02 100644 --- a/x11-plugins/wmcdplay/wmcdplay-1.1.ebuild +++ b/x11-plugins/wmcdplay/wmcdplay-1.1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=5 -inherit autotools +inherit autotools desktop DESCRIPTION="CD player applet for WindowMaker" HOMEPAGE="https://www.dockapps.net/wmcdplay" @@ -21,13 +21,13 @@ DEPEND="${RDEPEND} S=${WORKDIR}/dockapps +DOCS=( ARTWORK README ) + src_prepare() { eautoreconf } src_install() { - emake DESTDIR="${D}" install - - dodoc ARTWORK README + default domenu "${FILESDIR}"/${PN}.desktop }