blob: 3617e83a716769d21587d10ccc1277e42417bcea (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/opera/opera-6.1.ebuild,v 1.3 2002/11/03 06:07:19 agenkin Exp $
#
# By default, the statically compiled version of opera will be
# installed. There are two other variations of the package that this
# ebuild can install. To pick one, set OPERA_VARIANT environment
# variable to one of the following:
#
# 1. static-2.95 # Statically linked libraries, compiled with gcc 2.95.
# # (Default)
# 2. shared-2.95 # Dynamically linked libaries, compiled with gcc 2.95.
# 3. shared-3.2 # Dynamically linked libraries, compiled with gcc 3.2.
#
# Note that the default variant should work for everybody, and is the
# least likely to cause you any grief. Only change the variant if you
# know what you are doing.
#
# Example of compiling a non-default varant:
#
# env OPERA_VARIANT=shared-3.2 emerge opera
#
DESCRIPTION="Opera web browser."
HOMEPAGE="http://www.opera.com/linux/"
LICENSE="OPERA"
DEPEND="virtual/glibc"
RDEPEND="${DEPEND}
virtual/x11
x11-libs/lesstif"
KEYWORDS="~x86 -ppc -sparc -sparc64"
SLOT="0"
case "${OPERA_VARIANT}" in
shared-3.2)
RDEPEND="${RDEPEND} =x11-libs/qt-3*"
OPERA_VERSION="4-shared-qt"
URL_DIR="shared/gcc-3.2/"
;;
shared-2.95)
RDEPEND="${RDEPEND} =x11-libs/qt-3*"
OPERA_VERSION="2-shared-qt"
URL_DIR="shared/gcc-2.95/"
;;
*)
OPERA_VERSION="1-static-qt"
URL_DIR="static/"
;;
esac
NV=6.10-20021029.${OPERA_VERSION}.i386
SRC_URI="http://www.panix.com/opera/files/linux/610/final/en/i386/${URL_DIR}/opera-${NV}.tar.bz2"
S=${WORKDIR}/opera-${NV}
src_unpack() {
unpack ${A}
cd ${S}
sed -e "s:/etc:${D}/etc:g" \
-e "s:config_dir=\"/etc\":config_dir=\"${D}/etc/\":g" \
-e "s:read install_config:install_config=yes:" \
-e "s:/usr/share/applnk:${D}/usr/share/applnk:g" \
-e "s:/usr/share/pixmaps:${D}/usr/share/pixmaps:g" \
-e "s:/usr/share/icons:${D}/usr/share/icons:g" \
-e "s:/etc/X11:${D}/etc/X11:g" \
-e "s:/usr/share/gnome:${D}/usr/share/gnome:g" \
< install.sh >install.sh.hacked || die
mv install.sh.hacked install.sh
chmod +x install.sh
}
src_compile() {
# Nothing to compile.
true
}
src_install() {
dodir /etc
./install.sh --prefix="${D}"/opt/opera || die
rm ${D}/opt/opera/share/doc/opera/help
dosym /opt/share/doc/opera/help /opt/opera/share/opera/help
dosed /opt/opera/bin/opera
dosed /opt/opera/share/opera/java/opera.policy
#install the icons
insinto /usr/share/icons /etc/X11/wmconfig /etc/X11/applnk/Internet \
/usr/share/pixmaps /usr/share/gnome/pixmaps
doins images/opera.xpm
if [ "`use gnome`" ]
then
insinto /usr/share/gnome/pixmaps
doins images/opera.xpm
fi
# Install a symlink /usr/bin/opera
dodir /usr/bin
dosym /opt/opera/bin/opera /usr/bin/opera
}
|