diff options
author | Sascha Schwabbauer <cybersystem@gentoo.org> | 2002-08-20 17:00:25 +0000 |
---|---|---|
committer | Sascha Schwabbauer <cybersystem@gentoo.org> | 2002-08-20 17:00:25 +0000 |
commit | 7a449e652844ad0a80193815bc938ab1d9b05d72 (patch) | |
tree | 1323a09669145d08c620a58bf9983e8a973ec0c2 | |
parent | fixed dep problem for scrollkepper - doc?() (diff) | |
download | gentoo-2-7a449e652844ad0a80193815bc938ab1d9b05d72.tar.gz gentoo-2-7a449e652844ad0a80193815bc938ab1d9b05d72.tar.bz2 gentoo-2-7a449e652844ad0a80193815bc938ab1d9b05d72.zip |
version bump of opera-static
-rw-r--r-- | net-www/opera-static/ChangeLog | 11 | ||||
-rw-r--r-- | net-www/opera-static/files/digest-opera-static-6.03 | 1 | ||||
-rw-r--r-- | net-www/opera-static/opera-static-6.03.ebuild | 60 |
3 files changed, 70 insertions, 2 deletions
diff --git a/net-www/opera-static/ChangeLog b/net-www/opera-static/ChangeLog index d897b55bff36..5f355a2f0e11 100644 --- a/net-www/opera-static/ChangeLog +++ b/net-www/opera-static/ChangeLog @@ -1,8 +1,15 @@ # ChangeLog for net-www/opera-static # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-www/opera-static/ChangeLog,v 1.4 2002/08/19 18:00:38 cybersystem Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/opera-static/ChangeLog,v 1.5 2002/08/20 17:00:25 cybersystem Exp $ -*opera-static-6.02 (19 August 2002) +*opera-static-6.03 (20 August 2002) + + 20 August 2002; Sascha Schwabbauer <cybersystem@gentoo.org> opera-static-6.03.ebuild : + + Bumped to version 6.03. SSL Security bug fixed. + Ebuild by Tobias Eichert <tobias@databoogie.net>. + +*opera-static-6.02 (20 August 2002) 19 August 2002; Sascha Schwabbauer <cybersystem@gentoo.org> ChangeLog, opera-static-6.02.ebuild : diff --git a/net-www/opera-static/files/digest-opera-static-6.03 b/net-www/opera-static/files/digest-opera-static-6.03 new file mode 100644 index 000000000000..3552f2024085 --- /dev/null +++ b/net-www/opera-static/files/digest-opera-static-6.03 @@ -0,0 +1 @@ +MD5 aa8ebc7d5edf4c47f56ed72725f10f80 opera-6.03-20020813.1-static-qt.i386.tar.bz2 4591161 diff --git a/net-www/opera-static/opera-static-6.03.ebuild b/net-www/opera-static/opera-static-6.03.ebuild new file mode 100644 index 000000000000..155fd791d5a0 --- /dev/null +++ b/net-www/opera-static/opera-static-6.03.ebuild @@ -0,0 +1,60 @@ +# 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/opera-static/opera-static-6.03.ebuild,v 1.1 2002/08/20 17:00:25 cybersystem Exp $ + +NV=6.03-20020813.1-static-qt.i386 +S=${WORKDIR}/opera-${NV} +DESCRIPTION="Opera web browser, statically built." +HOMEPAGE="http://www.opera.com/linux/" +SRC_URI="http://www.panix.com/opera/files/linux/603/final/en/qt_static/opera-${NV}.tar.bz2" +SLOT="0" +KEYWORDS="x86 -ppc sparc sparc64" +LICENSE="OPERA" + +DEPEND="virtual/x11" + +src_unpack() { + + unpack ${A} + cd ${S} + sed -e "s:/etc:${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_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 + + #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 + insinto /etc/X11/wmconfig + doins images/opera.xpm + insinto /etc/X11/applnk/Internet + doins images/opera.xpm + insinto /usr/share/pixmaps + doins images/opera.xpm + + if [ "`use gnome`" ] + then + insinto /usr/share/gnome/pixmaps + doins images/opera.xpm + fi + + insinto /etc/env.d + doins ${FILESDIR}/10opera6 +} |