diff options
author | Karl Trygve Kalleberg <karltk@gentoo.org> | 2001-10-23 15:17:04 +0000 |
---|---|---|
committer | Karl Trygve Kalleberg <karltk@gentoo.org> | 2001-10-23 15:17:04 +0000 |
commit | 3aa0c46a38c5a9bf82a70d8c368f20b5b565577a (patch) | |
tree | 1fd2413937bd6a3c67b672bc9810b42561882680 | |
parent | don't build applet, lots of people are using galeon without running gnome-pan... (diff) | |
download | gentoo-2-3aa0c46a38c5a9bf82a70d8c368f20b5b565577a.tar.gz gentoo-2-3aa0c46a38c5a9bf82a70d8c368f20b5b565577a.tar.bz2 gentoo-2-3aa0c46a38c5a9bf82a70d8c368f20b5b565577a.zip |
Now installs relevant symlinks into /usr/lib/mozilla/plugins is USE mozilla is set
-rw-r--r-- | net-www/netscape-flash/files/digest-netscape-flash-5.0.47-r1 | 1 | ||||
-rw-r--r-- | net-www/netscape-flash/netscape-flash-5.0.47-r1.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/net-www/netscape-flash/files/digest-netscape-flash-5.0.47-r1 b/net-www/netscape-flash/files/digest-netscape-flash-5.0.47-r1 new file mode 100644 index 000000000000..e4cea3efcb0c --- /dev/null +++ b/net-www/netscape-flash/files/digest-netscape-flash-5.0.47-r1 @@ -0,0 +1 @@ +MD5 2962638158fb1f83fec4aa617405dd6a flash_linux.tar.gz diff --git a/net-www/netscape-flash/netscape-flash-5.0.47-r1.ebuild b/net-www/netscape-flash/netscape-flash-5.0.47-r1.ebuild new file mode 100644 index 000000000000..e1c323c96d70 --- /dev/null +++ b/net-www/netscape-flash/netscape-flash-5.0.47-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Karl Trygve Kalleberg <karltk@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-www/netscape-flash/netscape-flash-5.0.47-r1.ebuild,v 1.1 2001/10/23 15:17:04 karltk Exp $ + +A=flash_linux.tar.gz +S=${WORKDIR}/Linux +DESCRIPTION="Macromedia Shockwave Flash Player" +SRC_URI="http://download.macromedia.com/pub/shockwave/flash/english/linux/5.0r47/flash_linux.tar.gz" +HOMEPAGE="http://macromedia.com" + +src_install() { + dodir /opt/netscape/plugins + exeinto /opt/netscape/plugins + doexe ShockwaveFlash.class libflashplayer.so + dodoc README.Linux + + if [ "`use mozilla`" ] ; then + dodir /usr/lib/mozilla/plugins + dosym /opt/netscape/plugins/libflashplayer.so /usr/lib/mozilla/plugins/libflashplayer.so + dosym /opt/netscape/plugins/ShockwaveFlash.class /usr/lib/mozilla/plugins/ShockwaveFlash.class + fi +} |