diff options
author | ahze <ahze@FreeBSD.org> | 2004-12-29 11:25:23 +0800 |
---|---|---|
committer | ahze <ahze@FreeBSD.org> | 2004-12-29 11:25:23 +0800 |
commit | 4fd3d8a856e66820e235117edc6868bd05623ed7 (patch) | |
tree | d36e97a83c036a62b105b27a3f47bf58e348fa15 /www/firefox-esr | |
parent | 92c25169e9411c6df13a8f5f94722265aabb7387 (diff) | |
download | freebsd-ports-gnome-4fd3d8a856e66820e235117edc6868bd05623ed7.tar.gz freebsd-ports-gnome-4fd3d8a856e66820e235117edc6868bd05623ed7.tar.zst freebsd-ports-gnome-4fd3d8a856e66820e235117edc6868bd05623ed7.zip |
- Update pkg-descr to better reflect firefox
- Fix expr usage for 4.x since expr on 4.x
is not POSIX compliant. [1]
Submitted by: girgen [1]
Diffstat (limited to 'www/firefox-esr')
-rw-r--r-- | www/firefox-esr/files/patch-browser_app_mozilla.in | 2 | ||||
-rw-r--r-- | www/firefox-esr/pkg-descr | 16 |
2 files changed, 12 insertions, 6 deletions
diff --git a/www/firefox-esr/files/patch-browser_app_mozilla.in b/www/firefox-esr/files/patch-browser_app_mozilla.in index d576c95816b8..9ad04f41976b 100644 --- a/www/firefox-esr/files/patch-browser_app_mozilla.in +++ b/www/firefox-esr/files/patch-browser_app_mozilla.in @@ -13,7 +13,7 @@ done #last arg -if [ `expr "${_optLast}" : '.*:/.*'` -eq 0 -a \( -f "${_optLast}" -o -d "${_optLast}" \) ]; then -+if [ `expr -- "${_optLast}" : '.*:/.*'` -eq 0 -a \( -f "${_optLast}" -o -d "${_optLast}" \) ]; then ++if [ `expr X"${_optLast}" : 'X.*:/.*'` -eq 0 -a \( -f "${_optLast}" -o -d "${_optLast}" \) ]; then # Last argument seems to be a local file/directory # Check, if it is absolutely specified (ie. /home/foo/file vs. ./file) # If it is just "relatively" (./file) specified, make it absolutely diff --git a/www/firefox-esr/pkg-descr b/www/firefox-esr/pkg-descr index b6576089aa3b..99b11c5e72e2 100644 --- a/www/firefox-esr/pkg-descr +++ b/www/firefox-esr/pkg-descr @@ -1,6 +1,12 @@ -Mozilla Firefox is the next-generation browser from the Mozilla project. See -its home page for more details. +Firefox is an award winning, free, open-source web browser for many platforms +and is based on the Mozilla codebase. It is small, fast and easy to use, and +offers many advanced features: + o Popup Blocking + o Tabbed Browsing + o Live Bookmarks (ie. RSS) + o Extensions + o Themes + o FastFind + o Improved Security -WWW: http://www.mozilla.org/products/firefox/ - --- AlanE <alane@freebsd.org> +WWW: http://www.mozilla.org/products/firefox/ |