diff options
-rw-r--r-- | www/opera/DESCR | 32 | ||||
-rw-r--r-- | www/opera/Makefile | 76 | ||||
-rw-r--r-- | www/opera/Makefile.plain | 48 | ||||
-rw-r--r-- | www/opera/Makefile.rpm | 39 | ||||
-rw-r--r-- | www/opera/PLIST.freebsd-i386 | 247 | ||||
-rw-r--r-- | www/opera/PLIST.solaris-sparc | 87 | ||||
-rw-r--r-- | www/opera/distinfo | 14 | ||||
-rw-r--r-- | www/opera/files/opera.sh | 40 |
8 files changed, 59 insertions, 524 deletions
diff --git a/www/opera/DESCR b/www/opera/DESCR index 871a380d852..1ad54535a82 100644 --- a/www/opera/DESCR +++ b/www/opera/DESCR @@ -1,22 +1,10 @@ -Opera is powerful if you use the web either for work or for entertainment. -Features: -* Supports HTML 3.2, 4.0, 4.01; XHTML 1.0; WML 1.3 & 2.0; XML; CSS 1.0, 2.0, - 2.1, 3.0; EcmaScript ECMA-262 2ed, 3ed (JavaScript 1.3/1.5 Core); DOM 1, 2 -* BiDi support, Small Screen Rendering (TM) -* Browses FTP Sites, support for browsing local files -* Proxy server support -* File transfer, File upload support -* Built-in M2 mail client -* IRC-compatible chat client, Newsreader, and RSS newsfeeds -* Hot list, bookmarks and bookmark bar -* Unique mouse gestures for easier browsing -* Pop-up defense features -* Imports Netscape, Konqueror and IE bookmarks/favorites -* Communication through SSL and TLS -* HTTP Authorization -* Asynchronous DNS with threading -* Customizable toolbar icons -* Keyboard link navigation -* Printing (PostScript) -* Handles cookies -* Fraud Protection +Opera started in 1994 as a research project inside Norway’s largest telecom +company, Telenor. Within a year, it branched out into an independent +development company named Opera Software ASA. + +Today, Opera Software develops the Opera Web browser, a high-quality, +multi-platform product for a wide range of platforms, operating systems and +embedded Internet products – including Mac, PC and Linux computers, mobile +phones and PDAs, game consoles, and other devices like the Nintendo Wii, DS, +Sony Mylo, and more. + diff --git a/www/opera/Makefile b/www/opera/Makefile index 5f56ef55e7f..2d42915d175 100644 --- a/www/opera/Makefile +++ b/www/opera/Makefile @@ -1,46 +1,58 @@ -# $NetBSD: Makefile,v 1.89 2009/08/29 13:15:54 obache Exp $ - -DISTNAME= opera-${OPERA_PKG_VERSION:S/u/pl/} -CATEGORIES= www -MASTER_SITES+= http://ftp.sunet.se/pub/www/clients/Opera/${OPERA_DIR}/ -MASTER_SITES+= ftp://ftp.hu-berlin.de/pub/www/opera/${OPERA_DIR}/ -MASTER_SITES+= ftp://ftp.task.gda.pl/pub/opera/${OPERA_DIR}/ -MASTER_SITES+= ftp://ftp.tuwien.ac.at/infosys/browsers/opera/${OPERA_DIR}/ -MASTER_SITES+= ftp://opera.nsc.no/pub/nsc.no/mirrors/operasoftware/${OPERA_DIR}/ -MASTER_SITES+= ftp://ftp.opera.com/pub/opera/${OPERA_DIR}/ -DISTFILES= opera-${OPERA_DIST_VERSION}${OPERA_ARCH}${EXTRACT_SUFX} - -MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= http://www.opera.com/ -COMMENT= Small, fast and customizable WWW client -LICENSE= opera-850-license - -EMUL_PLATFORMS= freebsd-i386 -EMUL_PLATFORMS+= linux-i386 -EMUL_PLATFORMS+= solaris-sparc +# $NetBSD: Makefile,v 1.90 2011/01/24 21:46:18 ahoka Exp $ +# + +DISTNAME= opera-11.00-1176.i386 +PKGNAME= ${DISTNAME:S/-1176.i386//} +CATEGORIES= www +MASTER_SITES= ftp://ftp.opera.com/pub/opera/linux/1100/ +EXTRACT_SUFX= .rpm + +MAINTAINER= ahoka@NetBSD.org +HOMEPAGE= http://www.opera.com/ +COMMENT= Opera web browser +LICENSE= opera-eula + +ONLY_FOR_PLATFORM= NetBSD-*-i386 NetBSD-*-x86_64 + +EMUL_PLATFORMS+= linux-i386 + +# TODO: add gstreamer +EMUL_MODULES.linux= x11 fontconfig +EMUL_REQD= suse>=10.0 + +EMUL_PKG_FMT= rpm +RPM2PKG_PREFIX= ${DESTDIR}${PREFIX} +RPM2PKG_SUBPREFIX= ${EMULSUBDIR} +RPM2PKG_STAGE= do-install PKG_DESTDIR_SUPPORT= user-destdir -.include "../../mk/bsd.prefs.mk" +#.include "../../mk/bsd.prefs.mk" -USE_LANGUAGES= # empty +WRKSRC= ${WRKDIR} BUILD_DIRS= # empty +USE_LANGUAGES= # none -OPERA_LANG= en -OPERA_VER_DATE= 20090303 -OPERA_PKG_BUILD= 2480 -OPERA_PKG_VERSION= 9.64 -OPERA_PKG_VERSION_DIR= 964 +SUBST_CLASSES+= opera-sh +SUBST_STAGE.opera-sh= post-build +SUBST_FILES.opera-sh= opera.sh +SUBST_VARS.opera-sh= EMULDIR SH INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 PLIST_SUBST+= OPERA_VER_DATE=${OPERA_VER_DATE:Q} PLIST_SUBST+= OPERA_PKG_VERSION=${OPERA_PKG_VERSION:C/u.*//} -.if ${EMUL_PLATFORM} == "linux-i386" -. include "Makefile.rpm" -.else -. include "Makefile.plain" -.endif +post-extract: + ${CP} ${FILESDIR}/opera.sh ${WRKSRC} + +post-install: + ${INSTALL_SCRIPT} ${WRKDIR}/opera.sh ${DESTDIR}${PREFIX}/bin/opera + ${LN} -fs ${EMULDIR}/usr/share/man/man1/opera.1 \ + ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 + ${ECHO} "bin/opera" >> ${RPM2PKG_PLIST} + ${ECHO} "${PKGMANDIR}/man1/opera.1" >> ${RPM2PKG_PLIST} + ${ECHO} "${PREFIX}/lib/netscape/plugins=1" >> \ + ${DESTDIR}${PREFIX}/${EMULSUBDIR}/usr/share/opera/defaults/pluginpath.ini .include "../../mk/bsd.pkg.mk" diff --git a/www/opera/Makefile.plain b/www/opera/Makefile.plain deleted file mode 100644 index 9c21a68950d..00000000000 --- a/www/opera/Makefile.plain +++ /dev/null @@ -1,48 +0,0 @@ -# $NetBSD: Makefile.plain,v 1.4 2009/01/08 12:23:30 obache Exp $ - -.if ${EMUL_PLATFORM} == "freebsd-i386" -ONLY_FOR_PLATFORM+= FreeBSD-*-i386 -EXTRACT_SUFX= .tar.bz2 -OPERA_ARCH= .i386 -OPERA_DIR= unix/freebsd/${OPERA_PKG_VERSION_DIR}/${OPERA_LANG}/intel/static -OPERA_DIST_VERSION= ${OPERA_PKG_VERSION:C/u.*//}-freebsd5-static-qt3 - -WRKSRC= ${WRKDIR}/opera-${OPERA_PKG_VERSION}-${OPERA_PKG_BUILD}.freebsd5-static-qt3${OPERA_ARCH} - -OWN_DIRS= ${PREFIX}/share/opera/plugins - -.elif ${EMUL_PLATFORM} == "solaris-sparc" -ONLY_FOR_PLATFORM+= SunOS-*-sparc* -EXTRACT_SUFX= .tar.bz2 -SOLARIS_VERSION_REQD= 8 -OPERA_ARCH= -OPERA_DIR= unix/solaris/${OPERA_PKG_VERSION_DIR}/final/${OPERA_LANG}/sparc/static -OPERA_DIST_VERSION= ${OPERA_PKG_VERSION:C/u.*//}.gcc295-static-qt3 - -WRKSRC= ${WRKDIR}/opera-${OPERA_PKG_VERSION}-${OPERA_PKG_BUILD}.gcc295-static-qt3 - -BUILD_DEFS+= INSTALL_ETC_OPERARC -INSTALL_ETC_OPERARC?= no -OWN_DIRS= ${PREFIX}/lib/opera/plugins - -. if !empty(INSTALL_ETC_OPERARC:M[yY][eE][sS]) -CONF_FILES+= ${PREFIX}/share/opera/config/opera6rc \ - /etc/opera6rc -CONF_FILES+= ${PREFIX}/share/opera/config/opera6rc.fixed \ - /etc/opera6rc.fixed -. endif -.endif - -SUBST_CLASSES+= opera -SUBST_STAGE.opera= post-build -SUBST_FILES.opera= man/opera.1 -SUBST_SED.opera= -e 's,/usr/,${PREFIX}/,g' - -FULLMANDIR= ${PREFIX}/${PKGMANDIR} -do-install: - (${ECHO} "n"; ${ECHO} "n") > ${WRKSRC}/inst.cmd - cd ${WRKSRC} && ${CAT} ${WRKSRC}/inst.cmd | \ - ./install.sh --prefix=${PREFIX:Q} --mandir=${FULLMANDIR:Q} \ - --DESTDIR=${DESTDIR:Q} - @${ECHO} "=> You can ignore any previous lines about opera6rc" - @${ECHO} diff --git a/www/opera/Makefile.rpm b/www/opera/Makefile.rpm deleted file mode 100644 index 1149d280e37..00000000000 --- a/www/opera/Makefile.rpm +++ /dev/null @@ -1,39 +0,0 @@ -# $NetBSD: Makefile.rpm,v 1.6 2009/08/29 13:15:54 obache Exp $ - -# This package installs from an RPM directly into "/usr" on a Linux -# system, which can't be managed by pkgsrc. -# -NOT_FOR_PLATFORMS= Linux-*-* - -EMUL_MODULES.linux= x11 fontconfig -EMUL_REQD= suse>=7.3 - -EXTRACT_SUFX= .rpm -OPERA_ARCH= .i386 -OPERA_DIR= linux/${OPERA_PKG_VERSION_DIR}/final/${OPERA_LANG}/${OPERA_ARCH:S/.//}/static -OPERA_DIST_VERSION= ${OPERA_PKG_VERSION:C/beta.*//:C/u.*//}.gcc4-static-qt3 - -WRKSRC= ${WRKDIR} -BUILD_DIRS= # empty - -EMUL_PKG_FMT= rpm -RPM2PKG_PREFIX= ${DESTDIR}${PREFIX} -RPM2PKG_SUBPREFIX= ${EMULSUBDIR} -RPM2PKG_STAGE= do-install - -SUBST_CLASSES+= opera-sh -SUBST_STAGE.opera-sh= post-build -SUBST_FILES.opera-sh= opera.sh -SUBST_VARS.opera-sh= CMP EMULDIR MKDIR MV RM SED SH - -post-extract: - ${CP} ${FILESDIR}/opera.sh ${WRKSRC} - -post-install: - ${INSTALL_SCRIPT} ${WRKDIR}/opera.sh ${DESTDIR}${PREFIX}/bin/opera - ${LN} -fs ${EMULDIR}/usr/share/man/man1/opera.1 \ - ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 - ${ECHO} "bin/opera" >> ${RPM2PKG_PLIST} - ${ECHO} "${PKGMANDIR}/man1/opera.1" >> ${RPM2PKG_PLIST} - ${ECHO} "${PREFIX}/lib/netscape/plugins=1" >> \ - ${DESTDIR}${PREFIX}/${EMULSUBDIR}/usr/share/opera/ini/pluginpath.ini diff --git a/www/opera/PLIST.freebsd-i386 b/www/opera/PLIST.freebsd-i386 deleted file mode 100644 index 3dbf0ee81d5..00000000000 --- a/www/opera/PLIST.freebsd-i386 +++ /dev/null @@ -1,247 +0,0 @@ -@comment $NetBSD: PLIST.freebsd-i386,v 1.3 2009/06/14 22:00:29 joerg Exp $ -bin/opera -man/man1/opera.1 -share/doc/opera/LGPL -share/doc/opera/LICENSE -share/opera/bin/missingsyms.so -share/opera/bin/opera -share/opera/bin/operaplugincleaner -share/opera/bin/operapluginwrapper -share/opera/bin/spellcheck.so -share/opera/bin/works -share/opera/encoding.bin -share/opera/html40_entities.dtd -share/opera/ini/dialog.ini -share/opera/ini/fastforward.ini -share/opera/ini/filehandler.ini -share/opera/ini/font.ini -share/opera/ini/mailproviders.xml -share/opera/ini/pluginpath.ini -share/opera/ini/speeddial_default.ini -share/opera/ini/standard_keyboard.ini -share/opera/ini/standard_keyboard_compat.ini -share/opera/ini/standard_menu.ini -share/opera/ini/standard_mouse.ini -share/opera/ini/standard_toolbar.ini -share/opera/ini/unix_keyboard.ini -share/opera/ini/xmlentities.ini -share/opera/java/opera.jar -share/opera/java/opera.policy -share/opera/lngcode.txt -share/opera/locale/be/byelorussian.lng -share/opera/locale/be/license.txt -share/opera/locale/be/opera6.adr -share/opera/locale/be/search.ini -share/opera/locale/bg/bulgarian.lng -share/opera/locale/bg/license.txt -share/opera/locale/bg/opera6.adr -share/opera/locale/bg/search.ini -share/opera/locale/cs/czech.lng -share/opera/locale/cs/license.txt -share/opera/locale/cs/opera6.adr -share/opera/locale/cs/search.ini -share/opera/locale/da/dansk.lng -share/opera/locale/da/license.txt -share/opera/locale/da/opera6.adr -share/opera/locale/da/search.ini -share/opera/locale/de/deutsch.lng -share/opera/locale/de/license.txt -share/opera/locale/de/opera6.adr -share/opera/locale/de/search.ini -share/opera/locale/el/greek.lng -share/opera/locale/el/license.txt -share/opera/locale/el/opera6.adr -share/opera/locale/el/search.ini -share/opera/locale/en-GB/british.lng -share/opera/locale/en-GB/license.txt -share/opera/locale/en-GB/opera6.adr -share/opera/locale/en-GB/search.ini -share/opera/locale/en/license.txt -share/opera/locale/en/opera6.adr -share/opera/locale/en/search.ini -share/opera/locale/english.lng -share/opera/locale/es-ES/espanol-espana.lng -share/opera/locale/es-ES/license.txt -share/opera/locale/es-ES/opera6.adr -share/opera/locale/es-ES/search.ini -share/opera/locale/es-LA/espanol-america_latina.lng -share/opera/locale/es-LA/license.txt -share/opera/locale/es-LA/opera6.adr -share/opera/locale/es-LA/search.ini -share/opera/locale/et/eesti.lng -share/opera/locale/et/license.txt -share/opera/locale/et/opera6.adr -share/opera/locale/et/search.ini -share/opera/locale/fi/license.txt -share/opera/locale/fi/opera6.adr -share/opera/locale/fi/search.ini -share/opera/locale/fi/suomi.lng -share/opera/locale/fr-CA/francais-canadien.lng -share/opera/locale/fr-CA/license.txt -share/opera/locale/fr-CA/opera6.adr -share/opera/locale/fr-CA/search.ini -share/opera/locale/fr/francais.lng -share/opera/locale/fr/license.txt -share/opera/locale/fr/opera6.adr -share/opera/locale/fr/search.ini -share/opera/locale/fy/frisian.lng -share/opera/locale/fy/license.txt -share/opera/locale/fy/opera6.adr -share/opera/locale/fy/search.ini -share/opera/locale/hi/hindi.lng -share/opera/locale/hi/license.txt -share/opera/locale/hi/opera6.adr -share/opera/locale/hi/search.ini -share/opera/locale/hr/croatian.lng -share/opera/locale/hr/license.txt -share/opera/locale/hr/opera6.adr -share/opera/locale/hr/search.ini -share/opera/locale/hu/hungarian.lng -share/opera/locale/hu/license.txt -share/opera/locale/hu/opera6.adr -share/opera/locale/hu/search.ini -share/opera/locale/id/indonesian.lng -share/opera/locale/id/license.txt -share/opera/locale/id/opera6.adr -share/opera/locale/id/search.ini -share/opera/locale/it/italiano.lng -share/opera/locale/it/license.txt -share/opera/locale/it/opera6.adr -share/opera/locale/it/search.ini -share/opera/locale/ja/japanese.lng -share/opera/locale/ja/license.txt -share/opera/locale/ja/opera6.adr -share/opera/locale/ja/search.ini -share/opera/locale/ka/georgian.lng -share/opera/locale/ka/license.txt -share/opera/locale/ka/opera6.adr -share/opera/locale/ka/search.ini -share/opera/locale/ko/korean.lng -share/opera/locale/ko/license.txt -share/opera/locale/ko/opera6.adr -share/opera/locale/ko/search.ini -share/opera/locale/lt/license.txt -share/opera/locale/lt/lithuanian.lng -share/opera/locale/lt/opera6.adr -share/opera/locale/lt/search.ini -share/opera/locale/mk/license.txt -share/opera/locale/mk/macedonian.lng -share/opera/locale/mk/opera6.adr -share/opera/locale/mk/search.ini -share/opera/locale/nb/license.txt -share/opera/locale/nb/norsk.lng -share/opera/locale/nb/opera6.adr -share/opera/locale/nb/search.ini -share/opera/locale/nl/license.txt -share/opera/locale/nl/nederlands.lng -share/opera/locale/nl/opera6.adr -share/opera/locale/nl/search.ini -share/opera/locale/nn/license.txt -share/opera/locale/nn/nynorsk.lng -share/opera/locale/nn/opera6.adr -share/opera/locale/nn/search.ini -share/opera/locale/pl/license.txt -share/opera/locale/pl/opera6.adr -share/opera/locale/pl/polski.lng -share/opera/locale/pl/search.ini -share/opera/locale/pt-BR/brazilportuguese.lng -share/opera/locale/pt-BR/license.txt -share/opera/locale/pt-BR/opera6.adr -share/opera/locale/pt-BR/search.ini -share/opera/locale/pt/license.txt -share/opera/locale/pt/opera6.adr -share/opera/locale/pt/portuguese.lng -share/opera/locale/pt/search.ini -share/opera/locale/ru/license.txt -share/opera/locale/ru/opera6.adr -share/opera/locale/ru/russian.lng -share/opera/locale/ru/search.ini -share/opera/locale/sv/license.txt -share/opera/locale/sv/opera6.adr -share/opera/locale/sv/search.ini -share/opera/locale/sv/svenska.lng -share/opera/locale/ta/license.txt -share/opera/locale/ta/opera6.adr -share/opera/locale/ta/search.ini -share/opera/locale/ta/tamil.lng -share/opera/locale/te/license.txt -share/opera/locale/te/opera6.adr -share/opera/locale/te/search.ini -share/opera/locale/te/telugu.lng -share/opera/locale/tr/license.txt -share/opera/locale/tr/opera6.adr -share/opera/locale/tr/search.ini -share/opera/locale/tr/turkce.lng -share/opera/locale/uk/license.txt -share/opera/locale/uk/opera6.adr -share/opera/locale/uk/search.ini -share/opera/locale/uk/ukrainian.lng -share/opera/locale/zh-cn/chinese_simp.lng -share/opera/locale/zh-cn/license.txt -share/opera/locale/zh-cn/opera6.adr -share/opera/locale/zh-cn/search.ini -share/opera/locale/zh-tw/chinese.lng -share/opera/locale/zh-tw/license.txt -share/opera/locale/zh-tw/opera6.adr -share/opera/locale/zh-tw/search.ini -share/opera/opera6.adr -share/opera/search.ini -share/opera/skin/standard_skin.zip -share/opera/skin/windows_skin.zip -share/opera/styles/about.css -share/opera/styles/cache.css -share/opera/styles/certinfo.css -share/opera/styles/config.css -share/opera/styles/contentblock.css -share/opera/styles/dir.css -share/opera/styles/error.css -share/opera/styles/history.css -share/opera/styles/im.css -share/opera/styles/image.css -share/opera/styles/images/bar.png -share/opera/styles/images/center.png -share/opera/styles/images/customize.gif -share/opera/styles/images/darkBox.png -share/opera/styles/images/defaultFavicon.png -share/opera/styles/images/flag.png -share/opera/styles/images/folder.png -share/opera/styles/images/opera.png -share/opera/styles/images/red_center.png -share/opera/styles/images/red_left.png -share/opera/styles/images/red_right.png -share/opera/styles/images/root.png -share/opera/styles/images/section.png -share/opera/styles/images/smartGroup.png -share/opera/styles/images/top.png -share/opera/styles/info.css -share/opera/styles/mathml.css -share/opera/styles/message.css -share/opera/styles/mime.css -share/opera/styles/plugins.css -share/opera/styles/search.css -share/opera/styles/user/accessibility.css -share/opera/styles/user/altdebugger.css -share/opera/styles/user/classid.css -share/opera/styles/user/contrastbw.css -share/opera/styles/user/contrastwb.css -share/opera/styles/user/disablebreaks.css -share/opera/styles/user/disablefloats.css -share/opera/styles/user/disableforms.css -share/opera/styles/user/disablepositioning.css -share/opera/styles/user/disabletables.css -share/opera/styles/user/outline.css -share/opera/styles/user/structureblock.css -share/opera/styles/user/structureinline.css -share/opera/styles/user/structuretables.css -share/opera/styles/user/tablelayout.css -share/opera/styles/user/toc.css -share/opera/styles/warning.css -share/opera/styles/webfeeds.html -share/opera/styles/wml.css -share/opera/svg-mo.dat -share/opera/svg-mobd.dat -share/opera/svg-sa.dat -share/opera/svg-sabd.dat -share/opera/svg-se.dat -share/opera/svg-sebd.dat -@pkgdir share/opera/plugins diff --git a/www/opera/PLIST.solaris-sparc b/www/opera/PLIST.solaris-sparc deleted file mode 100644 index af0448d81d3..00000000000 --- a/www/opera/PLIST.solaris-sparc +++ /dev/null @@ -1,87 +0,0 @@ -@comment $NetBSD: PLIST.solaris-sparc,v 1.2 2009/06/14 22:00:29 joerg Exp $ -bin/opera -lib/opera/${OPERA_PKG_VERSION}-${OPERA_VER_DATE}.1/missingsyms.so -lib/opera/${OPERA_PKG_VERSION}-${OPERA_VER_DATE}.1/opera -lib/opera/${OPERA_PKG_VERSION}-${OPERA_VER_DATE}.1/spellcheck.so -lib/opera/${OPERA_PKG_VERSION}-${OPERA_VER_DATE}.1/works -lib/opera/plugins/libnpp.so -lib/opera/plugins/operaplugincleaner -lib/opera/plugins/operapluginwrapper -man/man1/opera.1 -share/doc/opera/LICENSE -share/opera/chartables-be.bin -share/opera/config/opera6rc -share/opera/config/opera6rc.fixed -share/opera/html40_entities.dtd -share/opera/images/opera_16x16.png -share/opera/images/opera_22x22.png -share/opera/images/opera_32x32.png -share/opera/images/opera_48x48.png -share/opera/images/opera.xpm -share/opera/ini/dialog.ini -share/opera/ini/fastforward.ini -share/opera/ini/filehandler.ini -share/opera/ini/pluginpath.ini -share/opera/ini/standard_keyboard.ini -share/opera/ini/standard_menu.ini -share/opera/ini/standard_mouse.ini -share/opera/ini/standard_toolbar.ini -share/opera/ini/unix_keyboard.ini -share/opera/ini/xmlentities.ini -share/opera/java/opera.jar -share/opera/java/opera.policy -share/opera/lngcode.txt -share/opera/locale/en/default.adr -share/opera/locale/english.lng -share/opera/locale/en/license.txt -share/opera/locale/en/search.ini -share/opera/opera6.adr -share/opera/search.ini -share/opera/skin/standard_skin.zip -share/opera/skin/windows_skin.zip -share/opera/styles/about.css -share/opera/styles/cache.css -share/opera/styles/certinfo.css -share/opera/styles/config.css -share/opera/styles/contentblock.css -share/opera/styles/dir.css -share/opera/styles/drives.css -share/opera/styles/error.css -share/opera/styles/history.css -share/opera/styles/image.css -share/opera/styles/images/bar.png -share/opera/styles/images/center.png -share/opera/styles/images/opera.png -share/opera/styles/images/red_center.png -share/opera/styles/images/red_left.png -share/opera/styles/images/red_right.png -share/opera/styles/images/root.png -share/opera/styles/images/top.png -share/opera/styles/im.css -share/opera/styles/info.css -share/opera/styles/mime.css -share/opera/styles/plugins.css -share/opera/styles/user/accessibility.css -share/opera/styles/user/altdebugger.css -share/opera/styles/user/classid.css -share/opera/styles/user/contrastbw.css -share/opera/styles/user/contrastwb.css -share/opera/styles/user/disablebreaks.css -share/opera/styles/user/disablefloats.css -share/opera/styles/user/disableforms.css -share/opera/styles/user/disablepositioning.css -share/opera/styles/user/disabletables.css -share/opera/styles/user/outline.css -share/opera/styles/user/structureblock.css -share/opera/styles/user/structureinline.css -share/opera/styles/user/structuretables.css -share/opera/styles/user/tablelayout.css -share/opera/styles/user/toc.css -share/opera/styles/warning.css -share/opera/styles/wml.css -share/opera/svg-mobd.dat -share/opera/svg-mo.dat -share/opera/svg-sabd.dat -share/opera/svg-sa.dat -share/opera/svg-sebd.dat -share/opera/svg-se.dat diff --git a/www/opera/distinfo b/www/opera/distinfo index 39cf3d284c0..e6be2b100b6 100644 --- a/www/opera/distinfo +++ b/www/opera/distinfo @@ -1,11 +1,5 @@ -$NetBSD: distinfo,v 1.33 2009/05/17 13:46:00 obache Exp $ +$NetBSD: distinfo,v 1.34 2011/01/24 21:46:18 ahoka Exp $ -SHA1 (opera-9.64-freebsd5-static-qt3.i386.tar.bz2) = 0fb77ec99b2a36282e2c81a02aa3079ed3b18404 -RMD160 (opera-9.64-freebsd5-static-qt3.i386.tar.bz2) = 3cb21f2706435beebe63d2304bcc6ae70bb6b1bb -Size (opera-9.64-freebsd5-static-qt3.i386.tar.bz2) = 9423112 bytes -SHA1 (opera-9.64.gcc295-static-qt3.tar.bz2) = 61d1a477fcf61f7b2db46f6c93d0255059eec17c -RMD160 (opera-9.64.gcc295-static-qt3.tar.bz2) = a2970c6cc7767e3e06790a27f23f8d8eda021b59 -Size (opera-9.64.gcc295-static-qt3.tar.bz2) = 11682363 bytes -SHA1 (opera-9.64.gcc4-static-qt3.i386.rpm) = 80fa51285be2d7017a4b788ff255e0d2a0e42fc1 -RMD160 (opera-9.64.gcc4-static-qt3.i386.rpm) = 0f3d7cd97b796c86fd7fa879d4c225efea345adf -Size (opera-9.64.gcc4-static-qt3.i386.rpm) = 10980991 bytes +SHA1 (opera-11.00-1176.i386.rpm) = 1afbecae92afcc88ee6df664e34529f4ca16c692 +RMD160 (opera-11.00-1176.i386.rpm) = 5252399ad58741a3444af8bde0dfadea7175eff9 +Size (opera-11.00-1176.i386.rpm) = 13376713 bytes diff --git a/www/opera/files/opera.sh b/www/opera/files/opera.sh index 9fcb6bceaba..08ed7addb30 100644 --- a/www/opera/files/opera.sh +++ b/www/opera/files/opera.sh @@ -1,49 +1,11 @@ #!@SH@ # -# $NetBSD: opera.sh,v 1.4 2007/08/07 21:37:25 jlam Exp $ +# $NetBSD: opera.sh,v 1.5 2011/01/24 21:46:18 ahoka Exp $ # # This script is used with linux-* emulations to ensure that opera is # started with the proper environment. # -# -# fixup_opera_ini -# This corrects opera.ini and opera6.ini files in the user's -# $HOME directory to enable synchronous DNS lookups on older -# versions of NetBSD. -# -fixup_opera_ini() -{ - linux_osrel=`/sbin/sysctl -n emul.linux.kern.osrelease 2>/dev/null` - case "$linux_osrel" in - [01].*|2.0|2.0.[0-9]|2.0.[12][0-9]|2.0.3[0-8]) - # On older NetBSD (linux kernel emulation <= 2.0.38), - # synchronous DNS lookups need to be explicitly enabled. - ;; - *) return 0 ;; - esac - - OPERADIR=$HOME/.opera - @MKDIR@ $OPERADIR || return 1 - for inifile in $OPERADIR/opera6.ini $OPERADIR/opera.ini; do - if [ ! -f $inifile ]; then - echo >$inifile "[Performance]" - echo >>$inifile "Synchronous DNS Lookup=1" - continue - fi - @SED@ "s/^\(Synchronous DNS Lookup\)=0/\1=1/" \ - $inifile > $inifile.patched - if @CMP@ -s $inifile $inifile.patched; then - @RM@ -f $inifile.patched - else - @MV@ -f $inifile.patched $inifile - fi - done - return 0 -} - -fixup_opera_ini || exit 1 - # Fix up LD_LIBRARY_PATH so that /lib is always searched for shared # libraries. # |