diff options
author | 2003-02-21 11:29:09 +0000 | |
---|---|---|
committer | 2003-02-21 11:29:09 +0000 | |
commit | 88f83983387d9feb29c1576e4cbd3eb0cb28535f (patch) | |
tree | 227da8b0ed5d676aaf28acd762b7fd0408e055f6 /net-www/opera | |
parent | initial import #15392 (diff) | |
download | historical-88f83983387d9feb29c1576e4cbd3eb0cb28535f.tar.gz historical-88f83983387d9feb29c1576e4cbd3eb0cb28535f.tar.bz2 historical-88f83983387d9feb29c1576e4cbd3eb0cb28535f.zip |
updated OPERA_VARIANT shtuff
Diffstat (limited to 'net-www/opera')
-rw-r--r-- | net-www/opera/ChangeLog | 7 | ||||
-rw-r--r-- | net-www/opera/opera-6.11-r1.ebuild | 19 |
2 files changed, 12 insertions, 14 deletions
diff --git a/net-www/opera/ChangeLog b/net-www/opera/ChangeLog index d2145f0c1d7b..4213456ab037 100644 --- a/net-www/opera/ChangeLog +++ b/net-www/opera/ChangeLog @@ -1,8 +1,13 @@ # ChangeLog for net-www/opera # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/opera/ChangeLog,v 1.16 2003/02/12 08:52:07 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/opera/ChangeLog,v 1.17 2003/02/21 11:29:09 raker Exp $ *opera-6.11-r1 (02 Jan 2003) + + 21 Feb 2003; Nick Hadaway <raker@gentoo.org> opera-6.11-r1.ebuild : + Modifed the OPERA_VARIANT section so the correct file version + is actually downloaded. + 02 Jan 2003; Arcady Genkin <agenkin@gentoo.org> : Improved installation of KDE and Gnome icons. Marked stable on x86. diff --git a/net-www/opera/opera-6.11-r1.ebuild b/net-www/opera/opera-6.11-r1.ebuild index 91d9baa9fb51..326b8830bfae 100644 --- a/net-www/opera/opera-6.11-r1.ebuild +++ b/net-www/opera/opera-6.11-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/opera/opera-6.11-r1.ebuild,v 1.2 2003/02/13 15:40:50 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/opera/opera-6.11-r1.ebuild,v 1.3 2003/02/21 11:29:09 raker Exp $ # # By default, the statically linked version of opera will be # installed. There are two other variations of the package that this @@ -18,7 +18,7 @@ # # Example of compiling a non-default variant: # -# env OPERA_VARIANT=shared-3.2 emerge opera +# OPERA_VARIANT=shared-3.2 emerge opera # DESCRIPTION="Opera web browser." @@ -32,22 +32,18 @@ RDEPEND="virtual/x11" KEYWORDS="x86" SLOT="0" -case "${OPERA_VARIANT}" in - shared-3.2) +if [ "$OPERA_VARIANT" = "shared-3.2" ]; then RDEPEND="${RDEPEND} =x11-libs/qt-3*" OPERA_VERSION="4-shared-qt" URL_DIR="shared/gcc-3.2/" - ;; - shared-2.95) +elif [ "$OPERA_VARIANT" = "shared-2.95" ]; then RDEPEND="${RDEPEND} =x11-libs/qt-3*" OPERA_VERSION="2-shared-qt" URL_DIR="shared/gcc-2.95/" - ;; - *) +else OPERA_VERSION="1-static-qt" URL_DIR="static/" - ;; -esac +fi NV=6.11-20021129.${OPERA_VERSION}.i386 SRC_URI="http://www.panix.com/opera/files/linux/611/final/en/i386/${URL_DIR}/opera-${NV}.tar.gz" @@ -55,7 +51,6 @@ S=${WORKDIR}/opera-${NV} src_unpack() { - unpack ${A} cd ${S} sed -e "s:/etc:${D}/etc:g" \ @@ -85,7 +80,6 @@ src_compile() { src_install() { - # Prepare installation directories for Opera's installer script. dodir /etc if [ "`use kde`" ] @@ -121,5 +115,4 @@ src_install() { # Install a symlink /usr/bin/opera dodir /usr/bin dosym /opt/opera/bin/opera /usr/bin/opera - } |