| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
| |
Mozilla is unmaintained upstream for years, broken and has security
issues. Please consider using www/seamonkey2 or www/firefox instead.
Happy New Year!
Notes:
svn path=/head/; revision=267249
|
|
|
|
|
|
|
|
|
| |
Reported by: pointyhat via miwi
Obtained from: Mozilla Bugzilla (Bug 399589)
With hat: gecko
Notes:
svn path=/head/; revision=241136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
plugins support one of web browsers and can take care of plist (depend on how
you use it) at the same time. I have written a complete document and even show
how it works in the www/firefox/Makefile.webplugins so be sure to read in
there. If there is anything that isn't clear in the document, please feel free
to ask and I will try my best to improvement it.
FYI: GNOME 2.24 depends on this, so it's coming.
BTW: It's based on www/linux-mplayer-plugin/Makefile.npapi with heavy modified.
Approved by: portmgr
Notes:
svn path=/head/; revision=225627
|
|
|
|
|
|
|
| |
Obtained from: delphij's committed on thunderbird.
Notes:
svn path=/head/; revision=211822
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
patch[1] was created by Matthias Clasen <mclasen@redhat.com>. This bug was
started to reproduce with least 2.10.7 version of gtk2.
PR: ports/107689
Reported by: a few users
Bugzilla: https://bugzilla.mozilla.org/show_bug.cgi?id=355248
https://bugzilla.mozilla.org/show_bug.cgi?id=367203 [1]
http://bugzilla.gnome.org/show_bug.cgi?id=394525
Notes:
svn path=/head/; revision=182762
|
|
|
|
|
|
|
|
| |
Obtained from: Fedora local patches and Mozilla LXR
Reported by: pointyhat via kris
Notes:
svn path=/head/; revision=179973
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
amount of work by the FreeBSD GNOME Team and our testers.
On top of the usual GNOME update, we have taken this opportunity to move
GNOME from X11BASE to LOCALBASE. This means roughly 600 ports NOT part of
the GNOME Desktop also need to be changed. The bulk of the move was carried
out by ahze, mezz, and pav, but it would not have been possible without
cooperation from the FreeBSD KDE team who worked with us to make sure
GNOME and KDE can still coexist happily. We would also like to send a
shout out to kris and pointyhat for putting up with multiple test runs
until we got something that was solid.
Back to GNOME 2.16. This release brings a huge amount of new functionality
to FreeBSD. The standard release notes can be read at
http://www.gnome.org/start/2.16/ . But on top of what you will read there,
jylefort and marcus have completed work on a port of HAL to FreeBSD. This
will allow FreeBSD to take advantage of closer hardware interaction such
as auto-mounting CD-ROMs, USB drives, and music players; auto-playing
audio CDs; and managing laptop power consumption.
But where would this all be without our loyal testers and contributors?
Therefore, the FreeBSD GNOME team would like to thank the following users:
Phillip Neumann <pneumann@gmail.com>
tmclaugh
mux
Yuri Pankov <yuri.pankov@gmail.com>
chinsan
Thomas <freebsdlists@bsdunix.ch>
Brian Gruber <knightbg@yahoo.com>
Franz Klammer <klammer@webonaut.com>
Dominique Goncalves <dominique.goncalves@gmail.com>
Pascal Hofstee <caelian@gmail.com>
Yasuda Keisuke <kysd@po.harenet.ne.jp>
backyard <backyard1454-bsd@yahoo.com>
Andris Raugulis <endrju@null.lv> <endrju@null.lv>
Eric L. Chen <d9364104@mail.nchu.edu.tw>
Pawel Worach <pawel.worach@gmail.com>
QuiRK on #freebsd-gnome
Shane Bell <decept0@gmail.com>
luigi
sajd on #freebsd-gnome
sat
Chris Coleman <chrisc@vmunix.com>
kaeru on #freebsd-gnome
crsd_ via irc.freenode.org/#FreeBSD-GNOME
Joel Diaz <joeldiaz@mac.com>
Enjoy!
Approved by: portmgr (implicit, kris)
Notes:
svn path=/head/; revision=175253
|
|
|
|
| |
Notes:
svn path=/head/; revision=167306
|
|
|
|
|
|
|
| |
* Do not run mozilla -register during installation
Notes:
svn path=/head/; revision=160149
|
|
|
|
|
|
|
|
| |
PR: 87728
Submitted by: Mark Andrews <Mark_Andrews@isc.org>
Notes:
svn path=/head/; revision=158227
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
Notes:
svn path=/head/; revision=149945
|
|
|
|
| |
Notes:
svn path=/head/; revision=148270
|
|
|
|
|
|
|
| |
* Disable cairo support as the new cairo API does not work with mozilla
Notes:
svn path=/head/; revision=147319
|
|
|
|
|
|
|
|
|
|
|
| |
http://www.mozilla.org/releases/mozilla1.7.12/README.html#new for a list
of the fixes in this release.
Security: Many important security bugs were fixed. See the URL
above for more details.
Notes:
svn path=/head/; revision=143503
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(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/
Notes:
svn path=/head/; revision=142367
|
|
|
|
|
|
|
|
|
| |
* Fix IDL installation
* Correct a crash that can occur when closing windows with newer versions of
GTK+
Notes:
svn path=/head/; revision=141177
|
|
|
|
|
|
|
|
|
|
|
|
| |
http://www.vuxml.org/freebsd/7d2aac52-9c6b-11d9-99a7-000a95bc6fae.html
for more details)
* Add a better startup script [1]
Submitted by: Jose M Rodriguez <josemi@freebsd.jazztel.es>
Approved by: portmgr (implicit)
Notes:
svn path=/head/; revision=131939
|
|
|
|
| |
Notes:
svn path=/head/; revision=130825
|
|
|
|
|
|
|
|
|
|
|
| |
Note: since 2.1.9 is ABI compatible with 2.1.7, no recompilation is
necessary.
PR: 78385
Submitted by: lesi
Notes:
svn path=/head/; revision=130757
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
libraries. This means Mozilla's GNOME integration (i.e. GConf) should
now work [1]
* Fix i18n support when invoking Mozilla, and add atsdsp support [2]
* Port all fixes to mozilla-devel
PR: 75428 [2]
Reported by: Jose M Rodriguez (freebsd) <josemi@freebsd.jazztel.es> [1]
Submitted by: Jose M Rodriguez (freebsd) <josemi@freebsd.jazztel.es> [2]
Notes:
svn path=/head/; revision=125080
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
contents of epiphany.desktop to generate the translations. I hope none of my
fellow GNOME Translation Project team members object to having their
translations bastardized like this. I don't know whether .desktop entries
can contain comments, so there's nothing attributing their work in there
right now.
I'll let this percolate in here for a bit, and if successful, I'll add it
to moz-devel, firefox, and thunderbird.
Notes:
svn path=/head/; revision=124876
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Add i18n support [1]
* Don't delete lib/browser_plugins if it was installed by another instance
of Mozilla [2]
PR: 73841 [1]
Submitted by: Jose M Rodriguez <josemi@freebsd.jazztel.es> [1]
ahze [2]
Notes:
svn path=/head/; revision=124514
|
|
|
|
|
|
|
| |
Submitted by: lesi
Notes:
svn path=/head/; revision=123890
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This release notes detailing all of the new goodies in GNOME 2.8 can
be found at http://www.gnome.org/start/2.8/notes/, and the list of what
was fixed in GNOME 2.8.1 can be found at
http://lists.gnome.org/archives/gnome-announce-list/2004-October/msg00056.html.
This release, as well as all of our others, would not have been possible
without the great efforts of our FreeBSD GNOME Team. The list of
current members can be found at http://www.freebsd.org/gnome/contact.html
(including our newest member, Michael Johnson <ahze@FreeBSD.org>).
Special thanks also goes out to all of the loyal FreeBSD GNOME users that
put up with crashes and hangs to test and debug GNOME on FreeBSD. We would
especially like to thank those users that provided patches for GNOME 2.7 and
2.8:
Franz Klammer <klammer@webonaut.com>
Piotr Smyrak <piotr.smyrak@heron.pl>
Radek Kozlowski <radek@raadradd.com>
Khairil Yusof <kaeru@pd.jaring.my>
Yasuda Keisuke <kysd@po.harenet.ne.jp>
Tom McLaughlin <tmclaugh@sdf.lonestar.org>
Vladimir Grebenschikov <vova@fbsd.ru>
GNOME 2.8 also features a new, FreeBSD-specific splashscreen that
was designed by jimmac for GNOME 2.8, then daemonized by
Franz Klammer <klammer@webonaut.com> and Radek Kozlowski
<radek@raadradd.com>.
As with GNOME 2.6, you cannot just "portupgrade" to GNOME 2.8. There is
a script provided at http://www.marcuscom.com/downloads/gnome_upgrade28.sh
that will aid in the upgrade process. Full documentation on the GNOME 2.8
upgrade is coming following this commit.
From all of us at FreeBSD GNOME, ENJOY!
Notes:
svn path=/head/; revision=121068
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This is being done instead of the update to 1.7.3 since the update breaks
all dependent ports, and that many changes is not a good thing to do during
a freeze.
This update covers the following Mozilla bugs:
245066
226669
250862
255067
256316
257317
258005
Thanks to nectar for scraping all of these patches together.
Obtained from: Mozilla CVS
Approved by: portmgr (implicit)
Notes:
svn path=/head/; revision=118474
|
|
|
|
|
|
|
|
|
|
|
| |
Mozilla from launching. See http://bugzilla.mozilla.org/show_bug.cgi?id=242123
for more details.
PR: 69937
Sbumitted by: Sean Farley <sean-freebsd@farley.org>
Notes:
svn path=/head/; revision=117959
|
|
|
|
|
|
|
|
|
| |
See http://bugzilla.mozilla.org/show_bug.cgi?id=253080 for more details.
Submitted by: green
Notes:
svn path=/head/; revision=114879
|
|
|
|
| |
Notes:
svn path=/head/; revision=113244
|
|
|
|
|
|
|
| |
Reported by: Randy Sato <rsato@mac.com>
Notes:
svn path=/head/; revision=113225
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Build the chrome and component registries in a pkg-install script so that
the resulting paths are correct [1]
For a list of all the changes in 1.7, see
http://www.mozilla.org/releases/mozilla1.7. This port features support for
the GSSAPI extension as well as optional gnome-vfs support.
PR: 65590 [1]
Submitted by: thierry [1]
Notes:
svn path=/head/; revision=112430
|
|
|
|
| |
Notes:
svn path=/head/; revision=104255
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Allow one to override JPI_LIST
* Fix some potential lock-ups related to esound
* Fix some potential pthread problems
* Fix libiconv support
* Use built-in libical
* Use included libart_lgpl
* Use SIZE
Notes:
svn path=/head/; revision=103608
|
|
|
|
|
|
|
| |
The compiler does not automaticly does that.
Notes:
svn path=/head/; revision=99766
|
|
|
|
|
|
|
| |
are valid on FreeBSD/ia64 unmodified.
Notes:
svn path=/head/; revision=99747
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
HAVE_LONG_LONG, HAVE_ALIGNED_DOUBLES and HAVE_ALIGNED_LONGLONGS
for ia64. The build for ia64 breaks later for xptcall.
While here, remove the duplicate definitions for __sparc__ that
were identical to the definitions for __sparc64__. This was due
to the patch adding __sparc64__ when __sparc__ already existed.
Normalize on __sparc64__ like for devel/nspr.
Notes:
svn path=/head/; revision=99739
|
|
|
|
|
|
|
| |
http://www.mozilla.org/releases/mozilla1.6/
Notes:
svn path=/head/; revision=98369
|
|
|
|
|
|
|
|
|
| |
on Sparc64.
Submitted by: tmm (bless that man)
Notes:
svn path=/head/; revision=94115
|
|
|
|
|
|
|
|
| |
mozilla-devel has not been updated since it would cause INDEX conflicts
with the GTK2 port.
Notes:
svn path=/head/; revision=91618
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Add new CLI options to mozilla startup script [1]
* Make XMLTerm optional [2]
* Don't accidentally include mozilla in the plist twice [3]
PR: 55412 [1]
55330 [2]
56210 [3]
Submitted by: bland [1] [2]
Notes:
svn path=/head/; revision=90864
|
|
|
|
|
|
|
|
|
| |
core dump problem running regchrome.
Submitted by: marcel
Notes:
svn path=/head/; revision=85269
|
|
|
|
| |
Notes:
svn path=/head/; revision=85254
|
|
|
|
|
|
|
|
|
| |
for ia64. Still more to come.
Submitted by: marcel
Notes:
svn path=/head/; revision=85252
|
|
|
|
|
|
|
|
|
| |
They do not yet add FreeBSD support to xpcom.
Submitted by: marcel
Notes:
svn path=/head/; revision=85223
|
|
|
|
|
|
|
| |
* Mark IGNORE on Alpha -STABLE
Notes:
svn path=/head/; revision=83943
|
|
|
|
|
|
|
| |
Reminded (and submitted) by: kris
Notes:
svn path=/head/; revision=82485
|
|
|
|
|
|
|
| |
Submitted by: tmm
Notes:
svn path=/head/; revision=81915
|
|
|
|
|
|
|
|
| |
Submitted by: tmm
kris
Notes:
svn path=/head/; revision=81837
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Fix some 64-bit problems with the nspr and JavaScript code [2]
Special thanks to Bernd Walter <ticso@cicely.de> for [1] who put together
the patch set based on work from gallatin.
Submitted by: Bernd Walter <ticso@cicely.de> [1]
tmm [2]
Notes:
svn path=/head/; revision=81818
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
to crash [1]
* Fix a problem connecting to certain IPv6 sites [2]
* Disable more tests to speed compilation
Submitted by: Alexander N. Kabaev <ak03@gte.com> [1]
Hiroharu Tamaru <tamaru@myn.rcast.u-tokyo.ac.jp> [2]
Obtained from: http://bugzilla.mozilla.org/show_bug.cgi?id=186745 [2]
Notes:
svn path=/head/; revision=78959
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Default to building with -O2 optimizations [1]
* Fix a bug where dead keys could not be used [2]
PR: 49010 [2]
Obtained from: www/phoenix [1]
http://bugzilla.mozilla.org/show_bug.cgi?id=176713 [2]
Notes:
svn path=/head/; revision=78102
|