diff options
Diffstat (limited to 'net-www/mplayerplug-in/mplayerplug-in-1.1.ebuild')
-rw-r--r-- | net-www/mplayerplug-in/mplayerplug-in-1.1.ebuild | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/net-www/mplayerplug-in/mplayerplug-in-1.1.ebuild b/net-www/mplayerplug-in/mplayerplug-in-1.1.ebuild deleted file mode 100644 index bba231b9f279..000000000000 --- a/net-www/mplayerplug-in/mplayerplug-in-1.1.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/mplayerplug-in/mplayerplug-in-1.1.ebuild,v 1.3 2004/02/25 20:47:23 mr_bones_ Exp $ - -IUSE="" - -inherit nsplugins - -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 ~amd64 ~ia64 ~ppc ~alpha" - -DEPEND=">=media-video/mplayer-1.0_pre2" - -RESTRICT="nomirror" - -src_compile() { - - econf || die - - [ -z "${CC}" ] && CC="gcc" - emake || 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 -} |