blob: 1ac199b64cdb818a7fc4ab4826c36b5e68e1f6c8 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-plugins/moonlight/moonlight-1.0.1.ebuild,v 1.2 2009/05/22 00:01:31 loki_val Exp $
EAPI=2
inherit mono multilib nsplugins
MY_P=moon-${PV}
DESCRIPTION="Moonlight is an open source implementation of Silverlight"
HOMEPAGE="http://www.mono-project.com/Moonlight"
SRC_URI="ftp://ftp.novell.com/pub/mono/sources/moon/${MY_P}.tar.bz2"
LICENSE="LGPL-2 MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="alsa pulseaudio debug test"
RESTRICT="mirror"
# Needed for Moonlight-2.0 profile:
#LICENSE+="Ms-PL"
# +more
# >=dev-dotnet/rsvg-sharp-2.24.0
# >=dev-dotnet/gtk-sharp-2.12.7
# >=dev-lang/mono-2.2-r3[moonlight]
# >=dev-dotnet/dbus-sharp-0.6.1a
#Moonlight-1.0 is essentially a browser plugin written in pure C.
RDEPEND="
>=x11-libs/gtk+-2.14
>=dev-libs/glib-2.18
>=x11-libs/cairo-1.8.0
>=media-video/ffmpeg-0.4.9_p20090121
>=net-libs/xulrunner-1.9.0.5:1.9
x11-libs/libXrandr
alsa? ( >=media-libs/alsa-lib-1.0.18 )
pulseaudio? ( >=media-sound/pulseaudio-0.9.14 )
>=media-libs/freetype-2.3.7
>=media-gfx/imagemagick-6.2.8
>=media-libs/fontconfig-2.6.0
"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.23"
S="${WORKDIR}/${MY_P}"
src_prepare() {
sed -i \
-e "s:TEST_SUBDIR = test::" \
-e "s:TOOLS_SUBDIR = tools::" \
Makefile.in
}
src_configure() {
econf --enable-shared \
--disable-static \
--with-cairo=system \
--with-ffmpeg=yes \
--with-ff3=yes \
--without-ff2 \
$(use_with alsa) \
$(use_with pulseaudio) \
$(use_with debug) \
|| die "econf failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
inst_plugin /usr/$(get_libdir)/moon/plugin/libmoonloader.so || die "installing libmoonloader failed"
find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed"
}
|