blob: fd6fef0ddbea2283a3bbccaeaf4434fa85691d9e (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/ario/ario-1.1.ebuild,v 1.4 2008/10/14 16:12:08 flameeyes Exp $
EAPI=1
inherit gnome2-utils
DESCRIPTION="a GTK2 MPD (Music Player Daemon) client inspired by Rythmbox"
HOMEPAGE="http://ario-player.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}-player/${P}.tar.gz"
LICENSE="GPL-1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="avahi dbus debug"
RDEPEND=">=dev-libs/glib-2.14:2
gnome-base/libglade:2.0
net-misc/curl
net-libs/gnutls
>=x11-libs/gtk+-2.12:2
avahi? ( net-dns/avahi )
dbus? ( dev-libs/dbus-glib )"
DEPEND="sys-devel/gettext
dev-util/intltool
dev-util/pkgconfig"
S="${WORKDIR}"
src_compile() {
econf \
$(use_enable avahi) \
$(use_enable dbus) \
$(use_enable debug) \
--disable-audioscrobbler \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dodoc AUTHORS ChangeLog NEWS README TODO
}
pkg_postinst() {
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_icon_cache_update
}
|