blob: 4223026213778fc67e8a30b833e913018f2be039 (
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
31
32
|
# 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.5 2011/04/30 16:19:42 angelos Exp $
EAPI=4
inherit fdo-mime cmake-utils git-2
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}
src_configure() {
DOCS=( AUTHORS README THANKSTO Changelog )
mycmakeargs=( "-DVERSION=${PV}" )
cmake-utils_src_configure
}
pkg_postinst() { fdo-mime_desktop_database_update; }
pkg_postrm() { fdo-mime_desktop_database_update; }
|