blob: 27f9b274149231a488c3b835eab854e25da921ea (
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
33
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/clementine/clementine-0.2.ebuild,v 1.1 2010/03/23 17:22:07 ssuominen Exp $
EAPI=2
inherit cmake-utils gnome2-utils
DESCRIPTION="A modern music player and library organizer based on Amarok 1.4 and Qt4"
HOMEPAGE="http://code.google.com/p/clementine-player/"
SRC_URI="http://clementine-player.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="x11-libs/qt-gui:4
x11-libs/qt-sql:4[sqlite]
x11-libs/qt-opengl:4
media-libs/liblastfm
x11-libs/libnotify
media-libs/xine-lib
media-libs/taglib
dev-libs/glib:2"
DEPEND="${RDEPEND}
>=dev-libs/boost-1.41
dev-util/pkgconfig"
DOCS="Changelog TODO"
pkg_preinst() { gnome2_icon_savelist; }
pkg_postinst() { gnome2_icon_cache_update; }
pkg_postrm() { gnome2_icon_cache_update; }
|