diff options
author | 2004-02-28 17:10:54 +0000 | |
---|---|---|
committer | 2004-02-28 17:10:54 +0000 | |
commit | 635bf63309d323dedb3d6bcdb747e35de0366473 (patch) | |
tree | f07241c936a94ce3cc885ccbcc705932fe0255d7 /net-www/mplayerplug-in | |
parent | Marked kde-3.1.5 stable on sparc. (Manifest recommit) (diff) | |
download | gentoo-2-635bf63309d323dedb3d6bcdb747e35de0366473.tar.gz gentoo-2-635bf63309d323dedb3d6bcdb747e35de0366473.tar.bz2 gentoo-2-635bf63309d323dedb3d6bcdb747e35de0366473.zip |
version bump (again!)
Diffstat (limited to 'net-www/mplayerplug-in')
-rw-r--r-- | net-www/mplayerplug-in/ChangeLog | 7 | ||||
-rw-r--r-- | net-www/mplayerplug-in/files/digest-mplayerplug-in-2.40 | 2 | ||||
-rw-r--r-- | net-www/mplayerplug-in/mplayerplug-in-2.40.ebuild | 37 |
3 files changed, 45 insertions, 1 deletions
diff --git a/net-www/mplayerplug-in/ChangeLog b/net-www/mplayerplug-in/ChangeLog index bb74940e240f..55b780a16866 100644 --- a/net-www/mplayerplug-in/ChangeLog +++ b/net-www/mplayerplug-in/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-www/mplayerplug-in # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/mplayerplug-in/ChangeLog,v 1.15 2004/02/28 11:42:15 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/mplayerplug-in/ChangeLog,v 1.16 2004/02/28 17:10:53 brad Exp $ + +*mplayerplug-in-2.40 (28 Feb 2004) + + 28 Feb 2004; Brad Laue <brad@gentoo.org> mplayerplug-in-2.40.ebuild: + Version bump. Closes #43053 *mplayerplug-in-2.11 (28 Feb 2004) diff --git a/net-www/mplayerplug-in/files/digest-mplayerplug-in-2.40 b/net-www/mplayerplug-in/files/digest-mplayerplug-in-2.40 new file mode 100644 index 000000000000..9572a387b9a9 --- /dev/null +++ b/net-www/mplayerplug-in/files/digest-mplayerplug-in-2.40 @@ -0,0 +1,2 @@ +MD5 be793a6f69651a0c7e108c8244121d01 mplayerplug-in-2.40.tar.gz 134273 +MD5 1cfba005ad335c53e1712c83171d30f1 gecko-sdk-i686-pc-linux-gnu-1.6.tar.gz 6301221 diff --git a/net-www/mplayerplug-in/mplayerplug-in-2.40.ebuild b/net-www/mplayerplug-in/mplayerplug-in-2.40.ebuild new file mode 100644 index 000000000000..a0fdc2c40cb2 --- /dev/null +++ b/net-www/mplayerplug-in/mplayerplug-in-2.40.ebuild @@ -0,0 +1,37 @@ +# 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-2.40.ebuild,v 1.1 2004/02/28 17:10:53 brad Exp $ + +inherit nsplugins + +S=${WORKDIR}/${PN} +GECKO_SDK="gecko-sdk-i686-pc-linux-gnu-1.6.tar.gz" + +DESCRIPTION="mplayer plug-in for Mozilla" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz + ftp://ftp.mozilla.org/pub/mozilla.org/mozilla/releases/mozilla1.6/${GECKO_SDK}" +HOMEPAGE="http://mplayerplug-in.sourceforge.net/" +RESTRICT="nomirror" + +KEYWORDS="~x86 ~amd64 ~ia64 ~ppc ~sparc ~alpha ~hppa ~mips" +SLOT="0" +LICENSE="GPL-2" +IUSE="" + +DEPEND=">=media-video/mplayer-0.92" + +src_compile() { + econf --with-gecko-sdk=${WORKDIR}/gecko-sdk || die + emake || die +} + +src_install() { + exeinto /opt/netscape/plugins + doexe mplayerplug-in.so + inst_plugin /opt/netscape/plugins/mplayerplug-in.so + + insinto /etc + doins mplayerplug-in.conf + + dodoc ChangeLog INSTALL LICENSE README +} |