blob: d049e78e1a3b8783c73f70121f24e1bb7b384b46 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-www/mplayerplug-in/mplayerplug-in-0.80.ebuild,v 1.2 2003/06/29 12:11:15 brad Exp $
IUSE=""
inherit nsplugins
S="${WORKDIR}/mplayerplug-in"
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"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc"
DEPEND=">=media-video/mplayer-0.90_rc4"
src_compile() {
[ -z "${CC}" ] && CC="gcc"
emake CC="${CC}" 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
END
dodoc TODO ChangeLog INSTALL README
}
|