blob: 5a192a91ebe85fcb68d69b5b92e4522bd23cf6be (
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/minitunes/minitunes-9999.ebuild,v 1.1 2011/08/02 14:39:46 hwoarang Exp $
EAPI="4"
inherit qt4-r2 git-2
DESCRIPTION="Qt4 music player."
HOMEPAGE="http://flavio.tordini.org/minitunes"
EGIT_REPO_URI="git://gitorious.org/${PN}/${PN}.git"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE=""
RDEPEND="
x11-libs/qt-gui:4[dbus]
x11-libs/qt-sql:4[sqlite]
|| ( x11-libs/qt-phonon:4 media-libs/phonon )
media-libs/taglib
"
DEPEND="${RDEPEND}"
DOCS="CHANGES TODO"
src_configure() {
eqmake4 ${PN}.pro PREFIX="/usr"
}
|