diff options
author | Patrick McLean <chutzpah@gentoo.org> | 2006-07-06 21:20:16 +0000 |
---|---|---|
committer | Patrick McLean <chutzpah@gentoo.org> | 2006-07-06 21:20:16 +0000 |
commit | 5c7314e690d4d2b0e329e28efe8b0351154ed83c (patch) | |
tree | 28648ef603ced344d2d563586e01a55f87c011be /net-www/mozplugger/mozplugger-1.7.3-r1.ebuild | |
parent | Quick fix to close bug #133138. (diff) | |
download | gentoo-2-5c7314e690d4d2b0e329e28efe8b0351154ed83c.tar.gz gentoo-2-5c7314e690d4d2b0e329e28efe8b0351154ed83c.tar.bz2 gentoo-2-5c7314e690d4d2b0e329e28efe8b0351154ed83c.zip |
Take over maintainership, version bump with deps on firefox and seamonkey rather than mozilla. Clean up old versions.
(Portage version: 2.1.1_pre2-r2)
Diffstat (limited to 'net-www/mozplugger/mozplugger-1.7.3-r1.ebuild')
-rw-r--r-- | net-www/mozplugger/mozplugger-1.7.3-r1.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/net-www/mozplugger/mozplugger-1.7.3-r1.ebuild b/net-www/mozplugger/mozplugger-1.7.3-r1.ebuild new file mode 100644 index 000000000000..d436faba4d45 --- /dev/null +++ b/net-www/mozplugger/mozplugger-1.7.3-r1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/mozplugger/mozplugger-1.7.3-r1.ebuild,v 1.1 2006/07/06 21:20:16 chutzpah Exp $ + +inherit nsplugins + +DESCRIPTION="Streaming media plugin for Mozilla, based on netscape-plugger" +SRC_URI="http://downloads.mozdev.org/mozplugger/${P}.tar.gz" +HOMEPAGE="http://mozplugger.mozdev.org/" + +KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~alpha" +LICENSE="GPL-2" + +SLOT="0" +IUSE="firefox" + +DEPEND="" +RDEPEND="${DEPEND} + !sparc? ( + firefox? ( www-client/mozilla-firefox ) + !firefox? ( www-client/seamonkey ) + ) + sparc? ( www-client/mozilla-firefox )" + +src_compile() +{ + cd ${S} + make linux || die +} + +src_install() +{ + cd ${S} + + PLUGIN=/opt/netscape/$PLUGINS_DIR + dodir $PLUGIN /etc + + insinto /etc + doins mozpluggerrc + + insinto $PLUGIN + doins mozplugger.so + + bunzip2 mozplugger.7.bz2 + doman mozplugger.7 + + insinto /usr/bin + dobin mozplugger-helper + dobin mozplugger-controller + + inst_plugin $PLUGIN/mozplugger.so + + dodoc ChangeLog COPYING README +} |