diff options
author | J Robert Ray <jrray@gentoo.org> | 2003-01-07 20:35:46 +0000 |
---|---|---|
committer | J Robert Ray <jrray@gentoo.org> | 2003-01-07 20:35:46 +0000 |
commit | 52eaa3522ae1234c6b051e57b8060640d9e11e2f (patch) | |
tree | e895d9110eb53e0c423ff4955267cb0a69f5a023 /net-www/netscape-flash | |
parent | depend on perl for docs (diff) | |
download | gentoo-2-52eaa3522ae1234c6b051e57b8060640d9e11e2f.tar.gz gentoo-2-52eaa3522ae1234c6b051e57b8060640d9e11e2f.tar.bz2 gentoo-2-52eaa3522ae1234c6b051e57b8060640d9e11e2f.zip |
don't strip binaries, fixes bug 12672
Diffstat (limited to 'net-www/netscape-flash')
-rw-r--r-- | net-www/netscape-flash/ChangeLog | 8 | ||||
-rw-r--r-- | net-www/netscape-flash/files/digest-netscape-flash-6.0.69-r2 | 2 | ||||
-rw-r--r-- | net-www/netscape-flash/netscape-flash-6.0.69-r2.ebuild | 46 |
3 files changed, 55 insertions, 1 deletions
diff --git a/net-www/netscape-flash/ChangeLog b/net-www/netscape-flash/ChangeLog index 87de625969db..887a3e0662da 100644 --- a/net-www/netscape-flash/ChangeLog +++ b/net-www/netscape-flash/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-www/netscape-flash # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-www/netscape-flash/ChangeLog,v 1.14 2002/12/19 08:18:27 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/netscape-flash/ChangeLog,v 1.15 2003/01/07 20:35:46 jrray Exp $ + +*netscape-flash-6.0.69-r2 (07 Dec 2003) + + 07 Dec 2003; J Robert Ray <jrray@gentoo.org> netscape-flash-6.0.69-r2 : + Changed the ebuild to not strip the binaries, stripping causes the + gflashplayer program to segfault. Fixes bug 12672. *netscape-flash-6.0.68 (18 Dec 2002) diff --git a/net-www/netscape-flash/files/digest-netscape-flash-6.0.69-r2 b/net-www/netscape-flash/files/digest-netscape-flash-6.0.69-r2 new file mode 100644 index 000000000000..1ddb862da791 --- /dev/null +++ b/net-www/netscape-flash/files/digest-netscape-flash-6.0.69-r2 @@ -0,0 +1,2 @@ +MD5 3c94ccbc2d4535ab78ad2c3eb1cd1777 netscape-flash-6.0.69.tar.gz 706066 +MD5 9bf9ef915513a4ec4c7a7de179ea4a37 gflashplayer-6.0.69.tar.gz 700843 diff --git a/net-www/netscape-flash/netscape-flash-6.0.69-r2.ebuild b/net-www/netscape-flash/netscape-flash-6.0.69-r2.ebuild new file mode 100644 index 000000000000..3afd7a9074f7 --- /dev/null +++ b/net-www/netscape-flash/netscape-flash-6.0.69-r2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/netscape-flash/netscape-flash-6.0.69-r2.ebuild,v 1.1 2003/01/07 20:35:46 jrray Exp $ + +inherit nsplugins + +IUSE="gtk" + +S=${WORKDIR}/install_flash_player_6_linux +DESCRIPTION="Macromedia Shockwave Flash Player" +SRC_URI="mirror://macromedia/${P}.tar.gz + gtk? mirror://macromedia/gflashplayer-${PV}.tar.gz" +HOMEPAGE="http://www.macromedia.com/" + +SLOT="0" +KEYWORDS="x86 -ppc -sparc" +LICENSE="Macromedia" + +DEPEND=">=sys-libs/lib-compat-1.1 + gtk? ( =x11-libs/gtk+-1.2* )" + +RESTRICT=nostrip + +src_install() { + exeinto /opt/netscape/plugins + doexe libflashplayer.so + + insinto /opt/netscape/plugins + doins flashplayer.xpt + + inst_plugin /opt/netscape/plugins/libflashplayer.so + inst_plugin /opt/netscape/plugins/flashplayer.xpt + + dodoc readme.txt + dohtml ReadMe.htm + + # Optionally install the standalone GTK flash player + if use gtk + then + cd ${S}_sa + docinto gflashplayer + dodoc readme.txt + dohtml ReadMe.htm + dobin gflashplayer flashplayer-installer + fi +} |