blob: 96ff0cfe3d59bd9013402a43b70aafb5d3c09eae (
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
26
27
28
29
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-www/netscape-navigator/netscape-navigator-4.08.ebuild,v 1.4 2002/04/26 06:17:59 seemant Exp $
S=${WORKDIR}/navigator-v408.x86-unknown-linux2.0
DESCRIPTION="Netscape Navigator 4.08"
SRC_URI="ftp://ftp.netscape.com/pub/communicator/4.08/english/unix/unsupported/linux20_glibc2/navigator_standalone/navigator-v408-export.x86-unknown-linux2.0_glibc.tar.gz"
HOMEPAGE="http://developer.netscape.com/support/index.html"
RDEPEND=">=sys-libs/lib-compat-1.0"
src_install() {
cd ${S}
dodir /opt/netscape
dodir /opt/netscape/java/classes
dodir /usr/X11R6/bin
dodoc README.install
cd ${D}/opt/netscape
gzip -dc ${S}/netscape-v408.nif | tar xf -
gzip -dc ${S}/nethelp-v408.nif | tar xf -
# gzip -dc ${S}/spellchk-v408.nif | tar xf -
cp ${S}/*.jar ${D}/opt/netscape/java/classes
cp ${FILESDIR}/netscape ${D}/usr/X11R6/bin/netscape
rm ${D}/opt/netscape/netscape-dynMotif
rm ${D}/opt/netscape/libnullplugin-dynMotif.so
insinto /usr/X11R6/bin
doins ${FILESDIR}/netscape
chmod +x ${D}/usr/X11R6/bin/netscape
}
|