summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorghen <ghen@pkgsrc.org>2006-10-24 22:20:58 +0000
committerghen <ghen@pkgsrc.org>2006-10-24 22:20:58 +0000
commit4d3bb2a14a7c453f5431714b1959676bc700139f (patch)
tree8b4be6dfad9124a0bc6bbe7dbab3a173012afbd1 /www
parentb4e9a816cded63199cf1a3d2937512f413316434 (diff)
downloadpkgsrc-4d3bb2a14a7c453f5431714b1959676bc700139f.tar.gz
Import www/firefox2-bin.
Firefox 2 is the next generation release of the award-winning Firefox web browser from Mozilla. What's New in Firefox 2 * Visual Refresh: Firefox 2's theme and user interface have been updated to improve usability without altering the familiarity of the browsing experience. * Built-in phishing protection: Phishing Protection warns users when they encounter suspected Web forgeries, and offers to return the user to their home page. Phishing Protection is turned on by default, and works by checking sites against either a local or online list of known phishing sites. This list is automatically downloaded and regularly updated when the Phishing Protection feature is enabled. * Enhanced search capabilities: Search term suggestions will now appear as users type in the integrated search box when using the Google, Yahoo! or Answers.com search engines. A new search engine manager makes it easier to add, remove and re-order search engines, and users will be alerted when Firefox encounters a website that offers new search engines that the user may wish to install. * Improved tabbed browsing: By default, Firefox will open links in new tabs instead of new windows, and each tab will now have a close tab button. Power users who open more tabs than can fit in a single window will see arrows on the left and right side of the tab strip that let them scroll back and forth between their tabs. The History menu will keep a list of recently closed tabs, and a shortcut lets users quickly re-open an accidentally closed tab. * Resuming your browsing session: The Session Restore feature restores windows, tabs, text typed in forms, and in-progress downloads from the last user session. It will be activated automatically when installing an application update or extension, and users will be asked if they want to resume their previous session after a system crash. * Previewing and subscribing to Web feeds: Users can decide how to handle Web feeds (like this one), either subscribing to them via a Web service or in a standalone RSS reader, or adding them as Live Bookmarks. My Yahoo!, Bloglines and Google Reader come pre-loaded as Web service options, but users can add any Web service that handles RSS feeds. * Inline spell checking: A new built-in spell checker enables users to quickly check the spelling of text entered into Web forms (like this one) without having to use a separate application. * Live Titles: When a website offers a microsummary (a regularly updated summary of the most important information on a Web page), users can create a bookmark with a "Live Title". Compact enough to fit in the space available to a bookmark label, they provide more useful information about pages than static page titles, and are regularly updated with the latest information. There are several websites that can be bookmarked with Live Titles, and even more add-ons to generate Live Titles for other popular websites. * Improved Add-ons manager: The new Add-ons manager improves the user interface for managing extensions and themes, combining them both in a single tool. * JavaScript 1.7: JavaScript 1.7 is a language update introducing several new features such as generators, iterators, array comprehensions, let expressions, and destructuring assignments. It also includes all the features of JavaScript 1.6. * Extended search plugin format: The Firefox search engine format now supports search engine plugins written in Sherlock and OpenSearch formats and allows search engines to provide search term suggestions. * Updates to the extension system: The extension system has been updated to provide enhanced security and to allow for easier localization of extensions. * Client-side session and persistent storage: New support for storing structured data on the client side, to enable better handling of online transactions and improved performance when dealing with large amounts of data, such as documents and mailboxes. This is based on the WHATWG specification for client-side session and persistent storage. * SVG text: Support for the svg:textpath specification enables SVG text to follow a curve or shape.
Diffstat (limited to 'www')
-rw-r--r--www/firefox2-bin/DESCR11
-rw-r--r--www/firefox2-bin/Makefile19
-rw-r--r--www/firefox2-bin/Makefile.Linux.i3867
-rw-r--r--www/firefox2-bin/Makefile.NetBSD.i38611
-rw-r--r--www/firefox2-bin/PLIST2
-rw-r--r--www/firefox2-bin/distinfo5
6 files changed, 55 insertions, 0 deletions
diff --git a/www/firefox2-bin/DESCR b/www/firefox2-bin/DESCR
new file mode 100644
index 00000000000..d6f21f75bae
--- /dev/null
+++ b/www/firefox2-bin/DESCR
@@ -0,0 +1,11 @@
+Mozilla Firefox is a free, open-source and cross-platform web browser for
+Windows, Linux, MacOS X and many other operating systems. It is small, fast
+and easy to use, and offers many advantages over other web browsers, such
+as tabbed browsing and the ability to block pop-up windows.
+
+Firefox also offers excellent bookmark and history management, and it can
+be extended by developers using industry standards such as XML, CSS,
+JavaScript, C++, etc. Many extensions are available.
+
+Firefox 2 is the next generation release of the award-winning Firefox web
+browser from Mozilla.
diff --git a/www/firefox2-bin/Makefile b/www/firefox2-bin/Makefile
new file mode 100644
index 00000000000..140f3b54f81
--- /dev/null
+++ b/www/firefox2-bin/Makefile
@@ -0,0 +1,19 @@
+# $NetBSD: Makefile,v 1.1.1.1 2006/10/24 22:20:58 ghen Exp $
+
+MOZILLA= firefox
+MOZ_EXTRA= 2
+MOZ_VER= 2.0
+MOZ_DISTVER= ${MOZ_VER}
+
+HOMEPAGE= http://www.mozilla.com/en-US/firefox/2.0/releasenotes/
+COMMENT= Lightweight gecko-based web browser (binary package)
+
+DIST_SUBDIR= ${MOZILLA}/${MOZ_DISTDIR}
+# binary package is built against GTK2
+MOZ_GTK2= YES
+
+ONLY_FOR_PLATFORM+= Linux-*-i386
+
+WRKSRC= ${WRKDIR}/firefox
+
+.include "../../www/seamonkey-bin/Makefile.common"
diff --git a/www/firefox2-bin/Makefile.Linux.i386 b/www/firefox2-bin/Makefile.Linux.i386
new file mode 100644
index 00000000000..e234d06d81d
--- /dev/null
+++ b/www/firefox2-bin/Makefile.Linux.i386
@@ -0,0 +1,7 @@
+# $NetBSD: Makefile.Linux.i386,v 1.1.1.1 2006/10/24 22:20:58 ghen Exp $
+
+DISTNAME= firefox-${MOZ_DISTVER}
+MOZ_DISTDIR= releases/${MOZ_DISTVER}/linux-i686/en-US
+MASTER_SITES= http://ftp.mozilla.org/pub/mozilla.org/firefox/${MOZ_DISTDIR}/
+
+MOZ_PLATFORM= linux
diff --git a/www/firefox2-bin/Makefile.NetBSD.i386 b/www/firefox2-bin/Makefile.NetBSD.i386
new file mode 100644
index 00000000000..7b51897fd73
--- /dev/null
+++ b/www/firefox2-bin/Makefile.NetBSD.i386
@@ -0,0 +1,11 @@
+# $NetBSD: Makefile.NetBSD.i386,v 1.1.1.1 2006/10/24 22:20:58 ghen Exp $
+
+BUILD_DEFS+= MOZILLA_USE_LINUX
+
+.if defined(MOZILLA_USE_LINUX)
+ONLY_FOR_PLATFORM+= NetBSD-*-i386
+. include "Makefile.Linux.i386"
+.else
+PKG_SKIP_REASON+= "No native pre-built NetBSD binary available."
+PKG_SKIP_REASON+= "Set MOZILLA_USE_LINUX if you want to use the Linux binary."
+.endif
diff --git a/www/firefox2-bin/PLIST b/www/firefox2-bin/PLIST
new file mode 100644
index 00000000000..734b03a4cf5
--- /dev/null
+++ b/www/firefox2-bin/PLIST
@@ -0,0 +1,2 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2006/10/24 22:20:58 ghen Exp $
+@comment this PLIST intentionally left blank
diff --git a/www/firefox2-bin/distinfo b/www/firefox2-bin/distinfo
new file mode 100644
index 00000000000..7de88b4e525
--- /dev/null
+++ b/www/firefox2-bin/distinfo
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2006/10/24 22:20:58 ghen Exp $
+
+SHA1 (firefox/releases/2.0/linux-i686/en-US/firefox-2.0.tar.gz) = aa4d692decea8175e404342ac209797daa12972e
+RMD160 (firefox/releases/2.0/linux-i686/en-US/firefox-2.0.tar.gz) = 940a9e08176d2d21b69611757b255a93b90070a4
+Size (firefox/releases/2.0/linux-i686/en-US/firefox-2.0.tar.gz) = 9622508 bytes