Commit graph

180 commits

Author SHA1 Message Date
Joe Marcus Clarke
29747f458a Chase the GNOME X11BASE to LOCALBASE move, and fix the build with the
new freetype2 where needed.

Submitted by:	mezz, ahze, pav, and many others
Approved by:	portmgr (implicit, kris)
2006-10-14 08:54:54 +00:00
Kris Kennaway
7edaf09cfc BROKEN on amd64: Does not build 2006-09-17 01:07:23 +00:00
Michael Johnson
3529fa64bf - Fix typo in IGNORE 2006-07-06 01:39:14 +00:00
Michael Johnson
01e7717707 - Add sparc64 support 2006-07-06 01:30:50 +00:00
Michael Johnson
2bc33a9989 - Add flock
Flock is a social browser, cross platform, open source, and
based on Mozilla technologies. Flock includes such features
as blogging tools, feed handling, and integrated del.icio.us
favorites and Flickr photo sharing.

WWW: http://www.flock.com/

Repocopied from:	www/firefox
Repocopied by:		marcus
2006-06-19 23:42:59 +00:00
Michael Johnson
604f9ea3c0 - Update to 1.5.0.4 2006-06-02 20:46:36 +00:00
Michael Johnson
e6b91aaddd - Update to 1.5.0.3
Security:	http://www.mozilla.org/security/announce/2006/mfsa2006-30.html
2006-05-03 02:18:32 +00:00
Jean-Yves Lefort
305af3d161 Use sane fonts by default. 2006-05-01 22:47:05 +00:00
Michael Johnson
93eac9cab1 - Mark IGNORE on sparc64 2006-04-17 00:29:45 +00:00
Michael Johnson
64ebc39d0f - Mark IGNORE on sparc64 since it core dumps at startup 2006-04-17 00:24:56 +00:00
Michael Johnson
7fe2c39384 - Update to 1.5.0.2
Release notes:	http://www.mozilla.com/firefox/releases/1.5.0.2.html
2006-04-14 12:08:52 +00:00
Michael Johnson
c28115ab28 - Convert all gecko pkg-[de]install scripts into a generic
pkg-[de]install script
- Always use pkg-install to create missing dir's [1]

Requested by:	marcus [1]
2006-03-29 18:29:45 +00:00
Joe Marcus Clarke
55b05955ba Fix a problem where Firefox creates its ~/.mozilla directory using stack
garbage.

PR:		92899
Submitted by:	truckman
2006-02-19 22:23:03 +00:00
Michael Johnson
3e21d24eb2 - Remove forgotten patch 2006-02-02 13:54:04 +00:00
Michael Johnson
003f037e94 - Update to 1.5.0.1 2006-02-02 13:16:54 +00:00
Joe Marcus Clarke
97ae34d3d9 Firefox may hang for some users for a few seconds at a time eating up all
of the CPU.  This is triggered by a bug in Gecko/GTK+ interaction.  This
patch corrects the problem.  See
https://bugzilla.mozilla.org/show_bug.cgi?id=305970 for more details.

PR:		92467
Obtained from:	https://bugzilla.mozilla.org/show_bug.cgi?id=305970
2006-02-01 17:55:04 +00:00
Joe Marcus Clarke
e87e69b622 Only enable SVG support on 6.X and higher since it's still causing GCC
errors with GCC 3.4.2.
2005-12-15 17:11:32 +00:00
Michael Johnson
687fa2a3b4 - Add a patch to fix history DoS vulnerability
Obtained from:	https://bugzilla.mozilla.org/show_bug.cgi?id=319004
2005-12-09 04:52:14 +00:00
Michael Johnson
4835940e84 - Add support for GECKO_PLIST_PRE_FILES and GECKO_PLIST_PRE_DIRS to
add files or directories to plist.
- *Really* remove share/idl if empty in firefox
2005-12-04 22:05:43 +00:00
Michael Johnson
569b7dfb16 - Move .include "${.CURDIR}/../mozilla/Makefile.common" to the bottom so
svg works for some people.

Pointyhat to:	me
2005-12-03 17:54:57 +00:00
Michael Johnson
0483e4de82 - Disable svg support on 5.3 and lower to fix build with a gcc bug.
Reported by:	many
Tested by:	mark@mkproductions.org
2005-12-02 05:44:22 +00:00
Jeremy Messenger
64a923ea98 Fix all those ports to find libnssckbi.so in the correct place to allow those
SSL certificates work again. Somehow, this patch was lost in the big change,
so bring it back. Bump PORTREVISION on all of those ports.

PR:		ports/89796
Reported by:	Christoph Moench-Tegeder <cmt@burggraben.net>
2005-12-02 05:30:01 +00:00
Michael Johnson
be9e6fac0f - Bump PORTREVISION
Spotted by:	pav
2005-11-30 20:10:03 +00:00
Michael Johnson
dbcc7fa409 - Reenable svg support, this must've sliped with all the massive changes.
PR:		89764
Submitted by:	Roland Smith <rsmith@xs4all.nl>
2005-11-30 19:47:19 +00:00
Pav Lucistnik
c08cae5337 - Fix desktop entry, there's no FF_SUFX anymore 2005-11-30 15:59:55 +00:00
Michael Johnson
2fb776f04b - Update WWW 2005-11-30 07:02:59 +00:00
Michael Johnson
36353c589f - Update firefox to 1.5
- Add Makefile.common
  o A new build/install system for gecko ports, Makefile.common
    includes many generic routines and common tasks.
  o Fix ld-run-path in all gecko's by using -Wl,-rpath,${moz_libdir}
    thus removing the need to have a startup script for ports that
    depend on gecko. [2]
  o Use system libm, nss, nspr in all gecko ports

- Add bsd.gecko.mk
  o This is the predecessor to WITH_MOZILLA=[mozilla|firefox|...]
    with a more robust way of detecting a gecko a end user wishs to
    use.
  o bsd.gecko.mk abstracts the selection of gecko-based backends. It
    allows users and porters to support any available gecko backend
    without needing to build many conditional tests. ${USE_GECKO} is the
    list of backends that your port can handle, and ${GECKO} is set by
    bsd.gecko.mk to be the chosen backend. Users set ${WITH_GECKO} to the
    list of gecko backends they want on their system.

  Port Makefile example:

  USE_GECKO=firefox mozilla seamonkey thunderbird
  .include <bsd.port.pre.mk>
  .include "${.CURDIR}/../../www/mozilla/bsd.gecko.mk"

  End user example:
  WITH_GECKO=seamonkey firefox

  We highly recommend moving away from using WITH_MOZILLA and switching to
  USE/WITH_GECKO.

PR:		89052 [2]
Submitted by:	vs [2]
Obtained from:	www/firefox
Thanks to:	adamw, marcus, and mezz for ideas, bug squashing, and more
		sajd from irc.freenode.org/#FreeBSD-Gnome for
		 pointing out many bugs
2005-11-29 21:12:28 +00:00
Pav Lucistnik
e05544d7ba - Add SHA256 checksums 2005-11-23 22:41:05 +00:00
Michael Johnson
28125871e3 - Add support for new lib/browser_linux_plugins 2005-11-14 19:11:43 +00:00
Joe Marcus Clarke
235c907ae5 Bump PORTREVISION to chase the glib20 shared library update. 2005-11-05 05:22:06 +00:00
Joe Marcus Clarke
de89e69ea6 Partially revert the previous commit. Firefox can only build with specific
extensions (in particular typeaheadfind breaks Find [go figure]).  It is
safer to use a specific list of extensions with Firefox 1.0.x.  It looks
like they've made this better in 1.5, and set a reasonable default list of
extensions.

Basically, we're back to the previous 1.0.7_1,1 set of extensions with the
addition of negotiateauth.

Reported by:	many
2005-10-10 07:29:35 +00:00
Joe Marcus Clarke
27d7526f55 * Add support of ports-installed Kerberos [1]
* Enable all default extensions [2]

PR:		86961 [2]
Submitted by:	David W. Hankins <David_Hankins@isc.org> [1]
2005-10-09 19:44:02 +00:00
Jeremy Messenger
f0120ed0a2 - Fix the sed for libesd and kill the major version of library
(libesd.so.2 -> libesd.so). [1]
- Update Java plugins by remove old and correct Java 1.5 plugin path. [2]
- Bump the PORTREVISION.

PR:		ports/86430 [1]
Submitted by:	Mark Hobden <markhobden@gmail.com> [1]
		glewis [2]
2005-09-23 20:42:37 +00:00
Joe Marcus Clarke
44036f0330 Update to 1.0.7. See
http://www.mozilla.org/products/firefox/releases/1.0.7.html#new for the list
of fixes in this release.

Security:	Fixes http://vuxml.FreeBSD.org/2e28cefb-2aee-11da-a263-0001020eed82.html among other things
2005-09-21 23:49:19 +00:00
Pav Lucistnik
cfffa5699c - Patch a security vulnerability (DoS, remote execution) in IDN
(internationalized domain names) subsystem, also known as "hyphen domain
  name bug"

Submitted by:	Marcus Grando
Obtained from:	Mozilla Project CVS,
		https://bugzilla.mozilla.org/show_bug.cgi?query_format=specific&order=relevance+desc&bug_status=__open__&id=307259
Security:	CAN-2005-2871
		http://secunia.com/advisories/16764/
2005-09-10 17:24:31 +00:00
Joe Marcus Clarke
fde840579a Add support for CJK font family names. This makes for a better browsing
experience for CJK users.

PR:		84378
Submitted by:	chinsan <chinsan.tw@gmail.com>
2005-09-02 05:00:03 +00:00
Jeremy Messenger
0083ef4403 - Make portlint happier.
- Add Java 5 plugins support. [1]
- Use system's libm (/usr/src/lib/msun), nss, nspr and etc. Also, do
  not extract those. Better explain, use external dependencies. [1]
- Teach firefox-config and *.pc files for nspr that will making other
  third apps to buildable like epiphany, vlc-devel's mozilla plugins
  and etc. Have been tested with full GNOME 2.11.x build too.
- Add four patches: [1]

	patch-bugzilla243151:
		https://bugzilla.mozilla.org/show_bug.cgi?id=243151

	patch-jsosdep:
		Fix the FreeBSD define

	patch-oji-threads:
		64-bit wide pthread_t

	patch-xptcinvoke_x86_64_linux:
		Setting a possibly uninitialized variable (value).

- Fix a crash that can occur using gtk+-2.7 and possibly 2.6.10 when closing
  windows. https://bugzilla.mozilla.org/show_bug.cgi?id=3002 [2]
- Get rid of FIREFOX and FF_VER, best to use PORTNAME and PORTVERSION
  varibles that are arleady exist and lesser complicate.
- Change all hardcore of 'firefox' to PORTNAME.
- Change a manual loop for patch all.js to find(1), so we can sleep
  on it.

Submitted by:	mi [1], marcus [2]
Reviewed by:	my team, FreeBSD GNOME Team.
Tested by:	many
2005-08-28 07:59:05 +00:00
Joe Marcus Clarke
441b068f5e Install IDL files into ${PREFIX}/share/idl/firefox.
Obtained from:	www/mozilla
2005-07-30 04:36:55 +00:00
Michael Johnson
ee2ed17f35 - Update to 1.0.6 2005-07-20 06:02:17 +00:00
Joe Marcus Clarke
c6a9d2cb37 Use ${PORTVERSION} instead of duplicating its value in the MASTER_SITE_SUBDIR.
Reported by:	Andrzej Tobola <ato@iem.pw.edu.pl>
2005-07-14 04:55:18 +00:00
Joe Marcus Clarke
30ea55f939 Update to 1.0.5. This release addresses numerous security bugs as well as
adds some stability enhancements.

Security:	See http://www.mozilla.org/projects/security/known-vulnerabilities.html#Firefox for a list of fixed vulnerabilities in 1.0.5
2005-07-14 03:19:30 +00:00
Michael Johnson
d3baf5d004 - Update to 1.0.4
This release fixes 3 very critical bugs. [1]

Release notes:	http://www.mozilla.org/products/firefox/releases/1.0.4.html
Security notes:	http://www.mozilla.org/projects/security/known-vulnerabilities.html
2005-05-12 06:58:34 +00:00
Michael Johnson
5baac38237 - Install .desktop file in share/applications instead of
share/gnome/applications so we can remove the gnomehier
  dependency so non-gnome users don't have to install a bunch
  of un-needed gnome directories.
- Remove WITH_MENU option from mozilla[-devel], .desktop file
  will always be installed now.
2005-04-26 19:30:55 +00:00
Michael Johnson
95c3314e76 - Update to 1.0.3
- Re-enable cups support

Release Notes:	http://www.mozilla.org/products/firefox/releases/1.0.3.html
2005-04-16 04:46:48 +00:00
Michael Johnson
d2266928a8 - Remove mng support, it doesn't work 2005-04-14 03:09:30 +00:00
Joe Marcus Clarke
ce7f695e6d * Update to 1.0.2 to fix security issues (see
http://www.vuxml.org/freebsd/7d2aac52-9c6b-11d9-99a7-000a95bc6fae.html and
  http://www.vuxml.org/freebsd/741f8841-9c6b-11d9-9dbe-000a95bc6fae.html for
  more details)
* Fix some minor cosmetic issues with the startup script

Submitted by:	Jose M Rodriguez (freebsd) <josemi@freebsd.jazztel.es>
Approved by:	portmgr (implicit)
2005-03-25 05:55:27 +00:00
Joe Marcus Clarke
b3458f652e Bump PORTREVISION to chase the glib20 shared lib version change. 2005-03-12 10:54:27 +00:00
Joe Marcus Clarke
08545d0dfd Update freetype2 to 2.1.9, and patch Mozilla and friends accordingly.
Note: since 2.1.9 is ABI compatible with 2.1.7, no recompilation is
necessary.

PR:		78385
Submitted by:	lesi
2005-03-10 00:43:23 +00:00
Joe Marcus Clarke
0a4ef7cc05 Fix the startup script so that arguments are passed correctly to the browser
binary.

PR:		78175 (firefox)
		78217 (mozilla-devel)
Submitted by:	Jose M Rodriguez <josemi@freebsd.jazztel.es>
2005-03-02 06:50:13 +00:00
Joe Marcus Clarke
c6e3e04ca1 Re-add support for specifying a profile using the -P option.
Submitted by:	Jeremy Prior <jez@netcraft.com>
2005-02-28 02:28:49 +00:00