blob: 267a34dbe6f305f57cc5e1b44a38fb3d191d885b (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/mplayerplug-in/mplayerplug-in-0.91.ebuild,v 1.9 2005/02/19 07:06:04 josejx Exp $
IUSE=""
inherit nsplugins toolchain-funcs
S="${WORKDIR}/${PN}"
HOMEPAGE="http://mplayerplug-in.sourceforge.net/"
DESCRIPTION="mplayer plug-in for Mozilla"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
mirror://sourceforge/${PN}/mini.tar.bz2"
RESTRICT="nomirror"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc"
DEPEND=">=media-video/mplayer-0.91"
src_compile() {
emake CC="$(tc-getCC)" OPTIMIZER="${CFLAGS}" || die
}
src_install() {
exeinto /opt/netscape/plugins
doexe mplayerplug-in.so
inst_plugin /opt/netscape/plugins/mplayerplug-in.so
insinto /usr/share/mplayer/Skin/mini
doins ${WORKDIR}/mini/*
dodir /etc
# For some reason this does not work yet for mplayer options, and
# setting 'vo' cause it for 'mozilla file:///space/movies/foo.avi'
# at least to not work...
cat > ${D}/etc/mplayerplug-in.conf <<END
# Should it handle embedded movies ?
noembed=0
# Set to 'mini' if you want the seek bar
use-gui=no
# Normal mplayer style config options
#vo=x11
fs=no
zoom=yes
# Disable some video formats
#enable-real=0
#enable-qt=0
#enable-wm=0
#enable-mpeg=0
END
dodoc TODO ChangeLog INSTALL README
}
|