blob: dc6fcfc1b99bf775b4f3576cff2471dfd42493c2 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/last-exit/last-exit-6-r1.ebuild,v 1.6 2010/11/12 21:58:27 ssuominen Exp $
EAPI=2
GCONF_DEBUG=no
inherit mono gnome2 eutils autotools
DESCRIPTION="Gnome/GTK+ alternative to the last.fm player"
HOMEPAGE="http://www.gentoo.org/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND=">=gnome-base/gconf-2
>=x11-libs/gtk+-2.6:2
>=media-libs/gstreamer-0.10
>=media-libs/gst-plugins-base-0.10
>=media-plugins/gst-plugins-mad-0.10
>=media-plugins/gst-plugins-gconf-0.10
>=media-plugins/gst-plugins-gnomevfs-0.10
>=dev-lang/mono-1.0
>=dev-dotnet/gtk-sharp-2
>=dev-dotnet/glade-sharp-2
>=dev-dotnet/gnome-sharp-2
>=dev-dotnet/gnomevfs-sharp-2
dev-dotnet/notify-sharp
>=dev-dotnet/gconf-sharp-2
>=dev-libs/dbus-glib-0.71
>=dev-dotnet/dbus-sharp-0.6.0
>=dev-dotnet/dbus-glib-sharp-0.4.1
>=x11-libs/libsexy-0.1.7"
DEPEND="${RDEPEND}"
pkg_setup() {
G2CONF="${G2CONF} --disable-schemas-install"
}
src_prepare() {
gnome2_src_prepare
epatch "${FILESDIR}"/${PN}-notify-sharp.patch \
"${FILESDIR}"/${P}-es.patch
eautoreconf
}
src_configure() {
gnome2_src_configure
}
src_compile() {
default
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
}
pkg_postinst() {
gnome2_pkg_postinst
}
|