blob: f9928b18db5c6fce6142bf5cc36a67156a3c76ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-www/netscape-flash/netscape-flash-5.0.48.ebuild,v 1.2 2002/07/11 06:30:49 drobbins Exp $
S=${WORKDIR}/flash_linux
DESCRIPTION="Macromedia Shockwave Flash Player"
SRC_URI="http://www.ibiblio.org/gentoo/distfiles/${P}.tar.gz"
HOMEPAGE="http://www.macromedia.com"
src_install() {
cd ${S}
exeinto /opt/netscape/plugins
insinto /opt/netscape/plugins
doexe libflashplayer.so
doins ShockwaveFlash.class
dodoc README ReadMe.htm
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
}
|