Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/qmpdclient/
Date: Mon, 30 Jan 2017 17:33:39
Message-Id: 1485797606.084870d5158c5b8122653844d3f202321c36455a.johu@gentoo
1 commit: 084870d5158c5b8122653844d3f202321c36455a
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 30 17:32:35 2017 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 30 17:33:26 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=084870d5
7
8 media-sound/qmpdclient: EAPI 6
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 media-sound/qmpdclient/qmpdclient-1.2.2-r2.ebuild | 40 +++++++++++++++++++++++
13 1 file changed, 40 insertions(+)
14
15 diff --git a/media-sound/qmpdclient/qmpdclient-1.2.2-r2.ebuild b/media-sound/qmpdclient/qmpdclient-1.2.2-r2.ebuild
16 new file mode 100644
17 index 00000000..412a266
18 --- /dev/null
19 +++ b/media-sound/qmpdclient/qmpdclient-1.2.2-r2.ebuild
20 @@ -0,0 +1,40 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +inherit fdo-mime cmake-utils
28 +
29 +DESCRIPTION="QMPDClient with NBL additions, such as lyrics' display"
30 +HOMEPAGE="http://bitcheese.net/wiki/QMPDClient"
31 +SRC_URI="http://dump.bitcheese.net/files/${P}.tar.bz2"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~ppc ~x86"
36 +IUSE="debug"
37 +
38 +DEPEND="dev-qt/qtdbus:4
39 + dev-qt/qtgui:4
40 + dev-qt/qtwebkit:4
41 + dev-qt/qtxmlpatterns:4"
42 +RDEPEND="${DEPEND}"
43 +
44 +S=${WORKDIR}/${PN}
45 +
46 +DOCS=( AUTHORS README THANKSTO )
47 +PATCHES=( "${FILESDIR}"/${P}-qt48.patch )
48 +
49 +src_prepare() {
50 + sed -i -e "/^Categories/s/Network/AudioVideo/" ${PN}.desktop || die
51 + cmake-utils_src_prepare
52 +}
53 +
54 +src_configure() {
55 + local mycmakeargs=( "-DVERSION=${PV}" )
56 + cmake-utils_src_configure
57 +}
58 +
59 +pkg_postinst() { fdo-mime_desktop_database_update; }
60 +pkg_postrm() { fdo-mime_desktop_database_update; }