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 5B696139694 for ; Sat, 1 Jul 2017 19:08:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8412CE0D82; Sat, 1 Jul 2017 19:08:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 60731E0D82 for ; Sat, 1 Jul 2017 19:08:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 655E83418F6 for ; Sat, 1 Jul 2017 19:08:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C27797466 for ; Sat, 1 Jul 2017 19:08:28 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1498936096.06dfc67c005ed305d7f572ad940da3a75167c3eb.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/qmpdclient/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/qmpdclient/qmpdclient-1.2.2-r3.ebuild X-VCS-Directories: media-sound/qmpdclient/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 06dfc67c005ed305d7f572ad940da3a75167c3eb X-VCS-Branch: master Date: Sat, 1 Jul 2017 19:08:28 +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: e96723df-93b4-480f-bd0b-dc0e6e084b22 X-Archives-Hash: 229dc21bba111611b4254053a91d1259 commit: 06dfc67c005ed305d7f572ad940da3a75167c3eb Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jul 1 18:47:11 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jul 1 19:08:16 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06dfc67c media-sound/qmpdclient: Fix DEPENDs Gentoo-bug: 620714 Package-Manager: Portage-2.3.6, Repoman-2.3.1 media-sound/qmpdclient/qmpdclient-1.2.2-r3.ebuild | 42 +++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/media-sound/qmpdclient/qmpdclient-1.2.2-r3.ebuild b/media-sound/qmpdclient/qmpdclient-1.2.2-r3.ebuild new file mode 100644 index 00000000000..014cca271ad --- /dev/null +++ b/media-sound/qmpdclient/qmpdclient-1.2.2-r3.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit fdo-mime cmake-utils + +DESCRIPTION="QMPDClient with NBL additions, such as lyrics' display" +HOMEPAGE="http://bitcheese.net/wiki/QMPDClient" +SRC_URI="http://dump.bitcheese.net/files/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ppc x86" +IUSE="debug" + +DEPEND=" + dev-qt/qtdbus:4 + dev-qt/qtgui:4 + dev-qt/qtxmlpatterns:4 + x11-libs/libX11 +" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${PN} + +DOCS=( AUTHORS README THANKSTO ) + +PATCHES=( "${FILESDIR}"/${P}-qt48.patch ) + +src_prepare() { + sed -i -e "/^Categories/s/Network/AudioVideo/" ${PN}.desktop || die + cmake-utils_src_prepare +} + +src_configure() { + local mycmakeargs=( "-DVERSION=${PV}" ) + cmake-utils_src_configure +} + +pkg_postinst() { fdo-mime_desktop_database_update; } +pkg_postrm() { fdo-mime_desktop_database_update; }