blob: 3455e9a20196d1388832c11371aa72c0b24b4fec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-9999.ebuild,v 1.3 2011/03/14 17:35:45 angelos Exp $
EAPI=3
inherit cmake-utils git
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"
EGIT_REPO_URI="http://github.com/Voker57/${PN}.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="debug"
DEPEND="x11-libs/qt-gui:4[dbus]
x11-libs/qt-webkit:4
x11-libs/qt-xmlpatterns:4"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${PN}
pkg_setup() {
DOCS="AUTHORS README THANKSTO Changelog"
}
pkg_postinst() { fdo-mime_desktop_database_update; }
pkg_postrm() { fdo-mime_desktop_database_update; }
|