blob: b6e8d7f0556fca0f02fa6dd9d57d88b679f6cd2a (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-plugins/gecko-mediaplayer/gecko-mediaplayer-1.0.0.ebuild,v 1.10 2011/04/23 14:24:02 ssuominen Exp $
EAPI=2
GCONF_DEBUG=no
inherit gnome2 multilib nsplugins
DESCRIPTION="A browser plugin that uses GNOME MPlayer"
HOMEPAGE="http://code.google.com/p/gecko-mediaplayer/"
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ppc ppc64 x86"
IUSE="gnome"
RDEPEND=">=dev-libs/glib-2.14:2
net-libs/xulrunner:1.9
dev-libs/nspr
>=dev-libs/dbus-glib-0.88
|| ( >=media-video/gnome-mplayer-1.0.3-r2[dbus] <media-video/gnome-mplayer-1.0.2 )
gnome? ( gnome-base/gconf:2 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
sys-devel/gettext"
pkg_setup() {
G2CONF="--disable-dependency-tracking
$(use_enable gnome schemas-install)
$(use_with gnome gconf)
--with-gio
--with-plugin-dir=/usr/$(get_libdir)/${PLUGINS_DIR}"
DOCS="ChangeLog DOCS/tech/javascript.txt"
}
src_prepare() {
if has_version ">=net-libs/xulrunner-2"; then
sed -i -e '/PKG_CONFIG/s:libxul >= 2.0:libxul >= 2:' configure || die
sed -i -e '/NPP_Initialize/d' src/np_entry.cpp || die
fi
gnome2_src_prepare
}
src_install() {
gnome2_src_install
rm -rf "${D}"/usr/share/doc/${PN}
rmdir -p "${D}"/var/lib
}
|