blob: 8b15b2d5db0ce2c618ff456ef866f73aaa3f2f4c (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/xnoise/xnoise-9999.ebuild,v 1.3 2011/05/26 16:06:50 angelos Exp $
EAPI=4
inherit fdo-mime gnome2-utils mercurial
DESCRIPTION="A media player for Gtk+ with a slick GUI, great speed and lots of
features"
HOMEPAGE="http://www.xnoise-media-player.com/"
EHG_REPO_URI="https://xnoise.googlecode.com/hg/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="+cover libnotify +lyrics"
RDEPEND="dev-db/sqlite:3
>=dev-libs/glib-2.26:2
dev-libs/libunique:1
dev-libs/libxml2:2
media-libs/gst-plugins-base:0.10
media-libs/gstreamer:0.10
media-libs/taglib
x11-libs/cairo
x11-libs/gdk-pixbuf:2
x11-libs/gtk+:2
cover? ( net-libs/libsoup:2.4 )
libnotify? ( x11-libs/libnotify )
lyrics? ( net-libs/libsoup:2.4 )"
DEPEND="${RDEPEND}
dev-lang/vala:0.12
dev-util/intltool
dev-util/pkgconfig
gnome-base/gnome-common:3
>=sys-devel/autoconf-2.67:2.5
sys-devel/gettext"
DOCS=( AUTHORS NEWS README )
src_prepare() {
NOCONFIGURE=yes ./autogen.sh || die
}
src_configure() {
VALAC=$(type -p valac-0.12) \
econf \
--disable-soundmenu \
--enable-soundmenu2 \
$(use_enable cover lastfm-covers) \
$(use_enable libnotify notifications) \
$(use_enable lyrics leoslyrics) \
$(use_enable lyrics lyricsfly) \
$(use_enable lyrics lyricwiki) \
$(use_enable lyrics chartlyrics)
}
src_install() {
default
find "${ED}" -type f -name "*.la" -exec rm -rf {} + || die
rm -rf "${ED}"/usr/share/${PN}/license || die
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
fdo-mime_desktop_database_update
gnome2_icon_cache_update
}
pkg_postrm() {
fdo-mime_desktop_database_update
gnome2_icon_cache_update
}
|