notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

FInally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combinatio for a given watch list. This is what FreshPorts will look for.

non port: www/gtkhtml3/Makefile

Number of commits found: 84

Tuesday, 6 Apr 2021
20:53 Rene Ladan (rene) search for other commits by this committer
Remove expired ports:

2021-03-31 www/gtkhtml3: Obsolete by upstream, doesn't build with recent
versions of pango
2021-03-31 deskutils/tomboy: Unmaintained and dead upstream, depends on
deprecated libraries  such as www/gtkhtml3. Upstream project is now called
tomboy-ng.
deskutils/tomboy-plugin-reminder: part of deskutils/tomboy
2021-03-31 devel/monodevelop: outdated, depends on deprecated library
www/gtkhtml3
2021-03-31 sysutils/syslog-ng327: Not officially supported by upstream
2021-03-31 sysutils/logstash5: End of life since release of 7.3.0
2021-03-31 www/decss: Abandonware
2021-03-31 textproc/elasticsearch5: End of life since release of 7.3.0
2021-03-31 textproc/elasticsearch5-search-guard: textproc/elasticsearch5 is
scheduled for removal
2021-03-31 multimedia/gnome-subtitles: outdated, depends on deprecated library
www/gtkhtml3
2021-03-31 net/libproxy-mozjs: Uses EOL Python 2.7 via lang/spidermonkey52
2020-12-31 lang/spidermonkey52: Uses Python 2.7 which is EOLed upstream
commit hash: 25996ce5b64cbc5e3c7297b7f80c133c614265c4 commit hash: 25996ce5b64cbc5e3c7297b7f80c133c614265c4 commit hash: 25996ce5b64cbc5e3c7297b7f80c133c614265c4 commit hash: 25996ce5b64cbc5e3c7297b7f80c133c614265c4 25996ce
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Thursday, 21 Jan 2021
19:12 tcberner search for other commits by this committer
www/gtkhtml3: markd deprecated

From https://wiki.gnome.org/RoadMap/GtkHtml  (2012-09-19):
	* GtkHtml is being phased out in favor of WebKit/GTK+.
	* Using GtkHtml in newly-written code is strongly discouraged.
	* GtkHtml 4.6.x will likely be the final release series.

Upstream called this one dead 8 years ago. Time make it so.

PR:		252618
Submitted by:	daniel.engberg.lists@pyret.net
Original commitRevision:562229 
Thursday, 7 Nov 2019
17:20 zeising search for other commits by this committer
Add USES=xorg USES=gl, ports categories w

Add USES=xorg and USES=gl to ports in categories starting with 'w'
While here, try to sprinkle other USES (mostly gnome and sdl) as needed.
Original commitRevision:516991 
Thursday, 8 Dec 2016
19:52 tijl search for other commits by this committer
Remove libintl.so.9 compatibility link that was added in r374303 to
prevent massive PORTREVISION bumps.  Bump dependent ports that have not
been bumped since.
Original commitRevision:428152 
Friday, 1 Apr 2016
14:33 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories v, w, x, y, and z.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412351 
13:18 mat search for other commits by this committer
Fixup some whitespace at the beginning of lines problems.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412342 
Thursday, 14 May 2015
10:15 mat search for other commits by this committer
MASTER_SITES cleanup.

- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
  of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
  no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.

While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.

Also, replace some EXTRACT_SUFX occurences with USES=tar:*.

Checked by:	make fetch-urlall-list
With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:386312 
Sunday, 29 Mar 2015
14:56 kwm search for other commits by this committer
Add portscout macro to igore these ports in the version checker, these
ports hold older version.
Original commitRevision:382601 
Tuesday, 2 Sep 2014
12:32 tijl search for other commits by this committer
- Delete call to g_thread_init.  It isn't needed with glib 2.32 and up
  and the port doesn't link with libgthread-2.0.
- Remove .la files while here.

Reported by:	antoine
Original commitRevision:366994 
Wednesday, 23 Jul 2014
10:28 tijl search for other commits by this committer
Remove two libtool fixes from Mk/Uses/libtool.mk.  They don't always work
when an older version of a package is installed.  This is the case when an
executable links with installed libraries and with uninstalled libraries
that link with other uninstalled libraries.  For each of the directly
linked libraries the executable will have an rpath (/usr/local/lib for the
installed libraries and a path under WRKDIR for each of the uninstalled
libraries), but not for the indirect libraries.  Both ld(1) and rtld(1)
search the rpath of the executable first before any rpath of libraries, so
the indirectly linked libraries will be found in /usr/local/lib if they are
installed instead of in WRKDIR.

With this commit executables will overlink with uninstalled indirect
libraries again so their location is added to the rpath of the executable.

This partially reverts r358784.

PR:		191611
Approved by:	portmgr (bapt)
Original commitRevision:362656 
Sunday, 22 Jun 2014
10:44 tijl search for other commits by this committer
Add 4 new sed commands to USES=libtool.  The first two apply some of the
changes that Debian made to their libtool.  The first command applies to
libtool versions 1.4 and up.  The second command is somewhat more elaborate
but essentially it uses the sed hold space to move an "elif...fi" block
down.  It applies to 2.x.  Together these reduce overlinking to unpatched
.la files (from ports that don't have USES=libtool yet but also .la files
in the work directory).

The third and fourth command fix relinking.  During staging libtool may
relink libA when it links to another library in the work directory libB.
The reason is that libA created during build phase has its runpath set to
the location of libB in the work directory.  This allows running an
executable that links to libA from within the work directory.  The relink
removes this extra runpath.

When libtool relinks libA it replaces "libB.la" on the linker command line
with "-L${STAGEDIR}${PREFIX}/lib -lB" with the intention to link to libB in
the stage directory but this -L flag isn't necessarily the first so another
libB may be linked instead.  The two sed commands make relink the same as a
normal link.  This means libtool will relink with libraries from the work
directory using a path similar to "../srcB/.libs/libB.so" without -L flags.
This applies to libtool 1.4 and up.  Earlier versions don't seem to relink
libraries.
(This fixes ports like devel/apr1 so they link with freshly built libraries
instead of installed libraries.)

Fix all ports with missing libraries.

Additionally:
archivers/rpm4: USES=patchfix.
databases/gdbm: INSTALL_TARGET=install-strip.
devel/gnome-vfs: remove patch that doesn't change anything.
devel/ois: INSTALL_TARGET=install-strip and use standard USE_AUTOTOOLS.
devel/zziplib: INSTALL_TARGET=install-strip, MAKE_CMD.
multimedia/mjpegtools: remove USE_AUTOTOOLS, use modern compiler on i386
   instead of disabling optimisations.
net/libnetdude: disable static plugins.

PR:		190941
Exp-run:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:358784 
Saturday, 26 Apr 2014
00:31 bapt search for other commits by this committer
Support stage
Use USES=libtoo
Strip binaries
Original commitRevision:352198 
Saturday, 15 Mar 2014
08:12 miwi search for other commits by this committer
- Covert USE_GMAKE, USE_BZIP2, USE_XZ to USES
Original commitRevision:348295 
Friday, 20 Sep 2013
23:36 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
www)
Original commitRevision:327776 
Monday, 2 Sep 2013
22:03 bapt search for other commits by this committer
Add an explicit dependency on pkgconf
Original commitRevision:326103 
Monday, 6 May 2013
11:13 kwm search for other commits by this committer
Make these ports build with glib 2.36
Original commitRevision:317508 
Wednesday, 24 Apr 2013
18:10 ak search for other commits by this committer
- Convert USE_GETTEXT to USES (part 3)

Approved by:	portmgr (bapt)
Original commitRevision:316464 
Monday, 21 Jan 2013
18:14 kwm search for other commits by this committer
Fix the build with new glib.
While here trim Makefile header, remove shlib version in LIB_DEPENDS
and register conflict in nautilus.

Obtained from:	gnome staging area.
Original commitRevision:310778 
Friday, 1 Jun 2012
05:26 dinoex search for other commits by this committer
- update png to 1.5.10
Original commit
Friday, 23 Sep 2011
22:26 amdmi3 search for other commits by this committer
- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:             157936
Submitted by:   myself
Exp-runs by:    pav
Approved by:    pav
Original commit
Saturday, 30 Jul 2011
09:39 kwm search for other commits by this committer
Build fixes with glib 2.28. gtk 2.24, gtkmm 2.24 and vala 0.12.
Original commit
Saturday, 4 Dec 2010
07:34 ade search for other commits by this committer
Sync to new bsd.autotools.mk
Original commit
Saturday, 20 Nov 2010
15:37 kwm search for other commits by this committer
Presenting GNOME 2.32.1 for FreeBSD. The offical release notes for this
release can be found at http://library.gnome.org/misc/release-notes/2.32/

This will be the last release of the GNOME 2.x series, mainly a bugfix and
bridge release to the first release of the GNOME 3.x series.

This release features commits by avl, marcus, mezz and myself.

The FreeBSD GNOME Team would like to thank the following contributors and
testers for there help with this release:

Zane C.B. <vvelox@vvelox.net>
romain@
Olaf Seibert <O.Seibert@cs.ru.nl>
DomiX
Bapt <baptiste.daroussin@gmail.com>
jsa@
miwi@
Sergio de Almeida Lenzi <lenzi.sergio@gmail.com>
Maxim Samsonov <xors@mne.ru>
Kris Moore

And pav@ for 2 exp-runs

PR:             ports/152255
                ports/143260
                ports/141033
                ports/149629
                ports/150350
                ports/151523
With hat:       gnome@
Original commit
Sunday, 15 Aug 2010
05:55 marcus search for other commits by this committer
Update to 3.30.3.
Original commit
Sunday, 25 Jul 2010
19:35 kwm search for other commits by this committer
Presenting GNOME 2.30.2. for FreeBSD.
Original commit
Monday, 31 May 2010
02:01 ade search for other commits by this committer
Bounce PORTREVISION for gettext-related ports.  Have fun, ya'll.
Original commit
Monday, 10 May 2010
21:19 kwm search for other commits by this committer
Presenting GNOME 2.30.1 for FreeBSD. The offical release notes for this
release can be found at http://library.gnome.org/misc/release-notes/2.30/ .

This release brings initial PackageKit support, Upower (replaces power
management part of hal), cuse4bsd integration with HAL and cheese, and a
faster Evolution.

Sadly GNOME 2.30.x will be the last release with FreeBSD 6.X support. This
will also be the last of the 2.x releases. The next release will be the
highly-anticipated GNOME 3.0 which will bring with it a new UI experience.

Currently, there are a few bugs with GNOME 2.30 that may be of note for our
users. Be sure to consult the UPGRADING note or the 2.30 upgrade FAQ at
http://www.freebsd.org/gnome/docs/faq230.html for specific upgrading
instructions, and the up-to-date list of known issues.

This release features commits by avl, ahze, bland, marcus, mezz, and myself.

The FreeBSD GNOME Team would like to thank Anders F Bjorklund for doing the
initual packagekit porting.

And the following contributors & testers for there help with this release:
Eric L. Chen
Vladimir Grebenschikov
Sergio de Almeida Lenzi
DomiX
walder
crsd
Kevin Oberman
Michal Varga
Pavel Plesov
Bapt
kevin

and ITetcu for two exp-run

PR:     ports/143852
        ports/145347
        ports/144980
        ports/145830
        ports/145511
Original commit
Sunday, 28 Mar 2010
06:47 dinoex search for other commits by this committer
- update to 1.4.1
Reviewed by:    exp8 run on pointyhat
Supported by:   miwi
Original commit
Friday, 5 Feb 2010
11:46 dinoex search for other commits by this committer
- update to jpeg-8
Original commit
Friday, 18 Dec 2009
05:53 marcus search for other commits by this committer
Update to 3.28.2.
Original commit
Saturday, 28 Nov 2009
20:06 marcus search for other commits by this committer
Presenting GNOME 2.28.1 for FreeBSD.  The official release notes for this
release can be found at http://library.gnome.org/misc/release-notes/2.28/ .
Officially, this is mostly a polishing release in preparation for GNOME 3.0
due in about a year.

On the FreeBSD front, though, a lot went into this release.  Major thanks
goes to kwm and avl who did a lot of the porting work for this release.
In particular, kwm brought in Evolution MAPI support for better Microsoft
Exchange integration.  Avl made sure that the new gobject introspection
repository ports were nicely compartmentalized so that large dependencies
aren't brought in wholesale.

But, every GNOME team member (ahze, avl, bland, kwm, mezz, and myself)
contributed to this release.

Other major improvements include an updated HAL with better volume
probing code, ufsid integration, and support for volume names containing
spaces (big thanks to J.R. Oldroyd); a new WebKit; updated AbiWord;
an updated Gimp; and a preview of the new GNOME Shell project (thanks to
Pawel Worach).

The FreeBSD GNOME Team would like to that the following additional
contributors to this release whose patches and testing really helped
make it a success:

Andrius Morkunas
Dominique Goncalves
Eric L. Chen
J.R. Oldroyd
Joseph S. Atkinson
Li
Pawel Worach
Romain Tartière
Thomas Vogt
Yasuda Keisuke
Rui Paulo
Martin Wilke
(and an extra shout out to miwi and pav for pointyhat runs)

We would like to send this release out to Alexander Loginov (avl) in
hopes that he feels better soon.

PR:             136676
                136967
                138872 (obsolete with new epiphany-webkit)
                139160
                134737
                139941
                140097
                140838
                140929
Original commit
Sunday, 2 Aug 2009
19:36 mezz search for other commits by this committer
-Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.
-Update libtool and libltdl to 2.2.6a.
-Remove devel/libtool15 and devel/libltdl15.
-Fix ports build with libtool22/libltdl22.
-Bump ports that depend on libltdl22 due to shared library version change.
-Explain what to do update in the UPDATING.

It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop
and applications in the runtime.

With help:      marcus and kwm
Pointyhat-exp:  a few times by pav
Tested by:      pgollucci, "Romain Tartière" <romain@blogreen.org>, and
                a few MarcusCom CVS users. Also, I might have missed a few.
Repocopy by:    marcus
Approved by:    portmgr
Original commit
Friday, 31 Jul 2009
13:57 dinoex search for other commits by this committer
- bump all port that indirectly depends on libjpeg and have not yet been bumped
or updated
Requested by:   edwin
Original commit
Friday, 3 Jul 2009
12:59 kwm search for other commits by this committer
Update to 3.26.3.
Original commit
Monday, 18 May 2009
17:25 marcus search for other commits by this committer
Update to 3.26.2.
Original commit
Friday, 24 Apr 2009
06:38 kwm search for other commits by this committer
Presenting GNOME 2.26.1 for FreeBSD.

Approved by:    portmgr (marcus)
Original commit
Friday, 10 Apr 2009
05:56 marcus search for other commits by this committer
Presenting GNOME 2.26 for FreeBSD.  See
http://library.gnome.org/misc/release-notes/2.26/ for a list of what's new.
On the FreeBSD front, we introduced a port of libxul 1.9 as an alternative
for Firefox 2.0 as a Gecko provider.  Almost all of the Gecko consumers
can make use of this provider by setting:

WITH_GECKO=libxul

The GNOME 2.26 port was done by ahze, kwm, marcus, and mezz with
contributions by Joseph S. Atkinson, Peter Wemm, Eric L. Chen,
Martin Matuska, Craig Butler, and Pawel Worach.
Original commit
Saturday, 28 Feb 2009
19:51 marcus search for other commits by this committer
Update to 3.24.5.
Original commit
Tuesday, 3 Feb 2009
18:41 marcus search for other commits by this committer
Update to 3.24.4.
Original commit
Monday, 2 Feb 2009
01:36 araujo search for other commits by this committer
- Use GNOME macro instead of ${MASTER_SITE_GNOME}, remove
  MASTER_SITE_SUBDIR when possible.

PR:             ports/125243
Submitted by:   pgollucci
Reworked by:    myself
Tested on:      pointyhat exp-run (pav)
Original commit
Tuesday, 13 Jan 2009
03:30 marcus search for other commits by this committer
Update to 2.24.3.
Original commit
Saturday, 10 Jan 2009
05:22 marcus search for other commits by this committer
Presenting GNOME 2.24 for FreeBSD.

See http://library.gnome.org/misc/release-notes/2.24/ for the general
release notes.  On the FreeBSD front, this release introduces Fuse support
in HAL, adds multi-CPU support to libgtop, WebKit updates, and fixes some
long-standing seahorse and gnome-keyring bugs.  The documentation updates
to the website are forthcoming.

This release features commits by adamw, ahze, kwm, mezz, and myself.  It would
not have been possible without are contributors and testers:

Alexander Loginov
Craig Butler [1]
Dmitry Marakasov [6]
Eric L. Chen
Joseph S. Atkinson
Kris Moore
Lapo Luchini [7]
Nikos Ntarmos
Pawel Worach
Romain Tartiere
TAOKA Fumiyoshi [3]
Yasuda Keisuke
Zyl
aZ [4]
bf [2] [5]
Florent Thoumie
Peter Wemm
pluknet

PR:             125857 [1]
                126993 [2]
                130031 [3]
                127399 [4]
                127661 [5]
                124302 [6]
                129570 [7]
                129936
                123790
Original commit
Tuesday, 1 Jul 2008
02:44 marcus search for other commits by this committer
Update to 3.18.3.
Original commit
Friday, 6 Jun 2008
14:07 edwin search for other commits by this committer
Bump portrevision due to upgrade of devel/gettext.

The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).

PR:             ports/124340
Submitted by:   edwin@
Approved by:    portmgr (pav)
Original commit
Monday, 26 May 2008
19:45 mezz search for other commits by this committer
Update to 3.18.2.
Original commit
Monday, 7 Apr 2008
15:22 ahze search for other commits by this committer
Update to 3.18.1
Original commit
Monday, 24 Mar 2008
03:50 marcus search for other commits by this committer
The FreeBSD GNOME team is proud to annunce the release of GNOME 2.22.0 for
FreeBSD.  The official GNOME 2.22 release notes can be found at
http://library.gnome.org/misc/release-notes/2.22/ .  On the FreeBSD front,
this release features an updated hal port with support for video4linux
devices, DRM (Direct Rendering), and better support of removable media.  Work
is also underway to tie webkit more closely into GNOME.  As part of the
GNOME 2.22 upgrade, GStreamer received a rather large upgrade as well.
Be sure to consult UPDATING on the proper steps to upgrade all of your
GNOME ports.

This release would not have been possible without the contributions and
testing efforts of the following people:

Pawel Worach
kan
edwin
Peter Ulrich Kruppa
J. W. Ballantine
Yasuda Keisuke
Andriy Gapon
Original commit
Monday, 7 Jan 2008
21:49 mezz search for other commits by this committer
Update to 3.16.3.
Original commit
Wednesday, 12 Dec 2007
04:44 marcus search for other commits by this committer
Update to 3.16.2.
Original commit
Wednesday, 24 Oct 2007
23:37 marcus search for other commits by this committer
Presenting GNOME 2.20.1 and all related works for FreeBSD.  The official
GNOME 2.20 release notes can be found at
http://www.gnome.org/start/2.20/notes/en/ .  Beyond that, this update
includes the new GIMP 2.4 (courtesy of ahze).

The GNOME 2.20 update also includes a huge change in the FreeBSD GNOME
hierarchy.  We are now using the more standard DATADIR of ${PREFIX}/share
rather than ${PREFIX}/share/gnome. The result is that fewer patches and
hacks are needed to port GNOME components to FreeBSD.  This will mean some
user changes may be required, so be sure to read /usr/ports/UPDATING for
more details.

This release and the things we accomplished in it would not have been
possible without mezz's crazy idea to collapse DATADIR, and his persistence
to make it happen successfully.  Ahze and pav also deserve thanks for
their work on porting modules and testing the whole ball of wax on
pointyhat (respectively).

The FreeBSD GNOME team would also like to thank our various testers and
contributors:

Yasuda Keisuke
Frank Jahnke
Pawel Worach
Brian Gruber
Franz Klammer
Yuri Pankov
Nick Barkas
Cristian KLEIN
Tony Maher
Scot Hetzel
Martin Matuska (mm)
Benoit Dejean
Martin Wilke (miwi)
(And anyone else I may have missed)

PRs fixed in this release:

111272, 113470, 115995, 116338
Original commit
Monday, 2 Jul 2007
20:00 mezz search for other commits by this committer
Update to 3.14.3.
Original commit
Tuesday, 29 May 2007
02:44 mezz search for other commits by this committer
Update to 3.14.2.
Original commit
Saturday, 19 May 2007
20:32 flz search for other commits by this committer
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
Original commit
Tuesday, 10 Apr 2007
18:09 marcus search for other commits by this committer
Update to 3.14.1.
Original commit
Monday, 19 Mar 2007
05:14 marcus search for other commits by this committer
Presenting GNOME 2.18 for FreeBSD.  GNOME 2.18 is a departure from recent GNOME
releases in that it focuses more on stability and functionality than on
new features.  Not that it doesn't have its share of new and exciting
items.  See http://www.gnome.org/start/2.18/ for all the goodies in
this release.

GNOME 2.18 for FreeBSD would not have been possible without the hard work
of the FreeBSD GNOME Team and our intrepid band of testers including
J. W. Ballantine, Pawel Worach, Yasuda Keisuke, Pascal Hofstee, miwi,
Yoshihiro Ota, Vladimir Grebenschikov, Jukka A. Ukkonen,
Phillip Neumann, Franz Klammer, and Neal Delmonico.
Original commit
Monday, 29 Jan 2007
18:13 mezz search for other commits by this committer
Update to 3.12.3.
Original commit
Monday, 20 Nov 2006
18:18 marcus search for other commits by this committer
Update to 3.12.2.
Original commit
Saturday, 14 Oct 2006
08:54 marcus search for other commits by this committer
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)
Original commit
Monday, 31 Jul 2006
22:31 marcus search for other commits by this committer
Update to 3.10.3.
Original commit
Monday, 29 May 2006
17:56 ahze search for other commits by this committer
- Update to 3.10.2
Original commit
Sunday, 30 Apr 2006
00:47 marcus search for other commits by this committer
Presenting GNOME 2.14.1 for FreeBSD!  Checkout
http://www.gnome.org/start/2.14/ for the official release notes, and a list
of all the gooides in this new release.  In particular, GNOME 2.14 focused
on performance, and they did not miss the mark.  There's some new eye candy,
but most of the big things are waiting until GNOME 2.16.  On the FreeBSD
side, we tried to clean up all the crashers we could.  In particular, we
really improved GNOME's 64-bit support.

The good news is that this release does not bring any big shared library
version bumps, so you can almost do a simple portupgrade to get to 2.14.
There are a few minor gotchas that will be documented in UPDATING shortly.

The FreeBSD GNOME Team would like th thank the following users for their
patches, feedback, and sometimes incessant complaing about crashes (you
know who you are).

Yasuda Keisuke <kysd@po.harenet.ne.jp>
Pascal Hofstee <caelian@gmail.com>
rmgls@wanadoo.fr
tmclaugh
Yuri Pankov <yuri.pankov@gmail.com>
sajd on #freebsd-gnome
ade
ankon on #FreeBSD-Gnome
mux
Pascal Hofstee <caelian@gmail.com>
QuiRK on #freebsd-gnome
Vladimir Timofeev <vovkasm@gmail.com>
Original commit
Thursday, 23 Feb 2006
10:40 ade search for other commits by this committer
Conversion to a single libtool environment.

Approved by:    portmgr (kris)
Original commit
Tuesday, 29 Nov 2005
16:12 marcus search for other commits by this committer
Update to 3.8.2.
Original commit
Saturday, 5 Nov 2005
04:53 marcus search for other commits by this committer
Presenting GNOME 2.12 for FreeBSD.  The release is chock full of bug fixes
and new features.  Don't believe me?  Then see for yourself at
http://www.gnome.org/start/2.12/notes/en/.

DO NOT USE portupgrade by itself to upgrade to GNOME 2.12.  Instead, use
the gnome_upgrade.sh script from
http://www.marcuscom.com/downloads/gnome_upgrade212.sh.  This script will
circumvent some potential pitfalls users can see if they use portupgrade
by itself.

In keeping with tradition, GNOME 2.12 for FreeBSD comes with a special
splash screen.  The winner of this release's contest is
Dominique Goncalves <dominique.goncalves@gmail.com>.  His splash screen
was inspired by http://art.gnome.org/contests/2.12-splash/83.

The FreeBSD GNOME Team would lank to thank the following users for
their contributions to this release:

Matthew Luckie <mjl@luckie.org.nz>
ade
sajd on #freebsd-gnome
Caelian on #freebsd-gnome
mnag
Yasuda Keisuke <kysd@po.harenet.ne.jp>
Mark Hobden <markhobden@gmail.com>
Sergey Akifyev <asa@agava.com>
Andreas Kohn

For more information on GNOME on FreeBSD, checkout
http://www.FreeBSD.org/gnome/.  The 2.12 documentation will be
posted shortly.
Original commit
Sunday, 28 Aug 2005
08:33 marcus search for other commits by this committer
Chase the libsoup shared lib version.
Original commit
Monday, 4 Apr 2005
18:17 ahze search for other commits by this committer
- Update to 3.6.2
Original commit
Tuesday, 15 Mar 2005
02:13 marcus search for other commits by this committer
Update to 3.6.1.
Original commit
Saturday, 12 Mar 2005
10:39 marcus search for other commits by this committer
Presenting GNOME 2.10 for FreeBSD!

The release notes can be found at
http://www.gnome.org/start/2.10/notes/rnwhatsnew.html, and will give you a
good idea of what has gone into this release overall.  However, a lot of
FreeBSD specific additions and fixes have been made.  For example, this
release offers fixed ACPI support as well as new CPU freqeuncy monitoring
support.  See the FreeBSD GNOME 2.10 upgrade page at
http://www.FreeBSD.org/gnome/docs/faq210.html for the entire list as well
as a list of known issues and upgrade instructions.

GNOME 2.10, as well as all of our releases, would not be possible without
the great team that goes into porting and testign each and every component.
Thanks definitely goes out to ahze, adamw, bland, kwm, mezz, and pav for all
their work.  We would also like to thank our adventurous users that chose to
ride the walrus.  We'd especially like to thank the following users that
provided patches for GNOME 2.10:

ade
Yasuda Keisuke
Franz Klammer
Khairil Yusof
Radek Kozlowsk

And anyone else I may have accidentally omitted.

As with GNOME 2.8, 2.10 comes with a brand-spankin' new splashscreen
courtesy of Franz Klammer.  However, unlike GNOME 2.8, we've included all
of the FreeBSD GNOME splashscreen entries with gnomesession.  You can
use the deskutils/splashsetter port to choose the one you like best.

As always, GNOME users should _not_ use portupgrade alone to upgrade to
2.10.  Instead, get the gnome_upgrade.sh script from
http://www.FreeBSD.org/gnome/gnome_upgrade.sh.

Enjoy!
Original commit
Friday, 18 Feb 2005
21:00 adamw search for other commits by this committer
Update to 3.2.5.
Original commit
Wednesday, 8 Dec 2004
06:28 marcus search for other commits by this committer
Update to 3.2.4.
Original commit
Sunday, 7 Nov 2004
22:24 marcus search for other commits by this committer
Presenting GNOME 2.8 for FreeBSD (2.8.1 to be exact).

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!
Original commit
Monday, 5 Apr 2004
03:31 marcus search for other commits by this committer
Chase the glib20 update, and bump all affected ports' PORTREVISIONs.
Original commit
Friday, 12 Mar 2004
14:12 pav search for other commits by this committer
- Add intlhack to fix install on -STABLE
Original commit
09:53 marcus search for other commits by this committer
Update to 3.0.10.
Original commit
Wednesday, 4 Feb 2004
05:10 marcus search for other commits by this committer
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.

(Part 1)
Original commit
Monday, 17 Nov 2003
12:29 trevor search for other commits by this committer
USE_REINPLACE need be defined only when REINPLACE_CMD is used.
Original commit
Thursday, 25 Sep 2003
03:10 marcus search for other commits by this committer
Update to 3.0.9.
Original commit
Friday, 1 Aug 2003
22:12 marcus search for other commits by this committer
Update to 3.0.8.
Original commit
Friday, 11 Jul 2003
00:29 adamw search for other commits by this committer
Update to 3.0.7.

shlib bump.
Original commit
Wednesday, 11 Jun 2003
05:17 marcus search for other commits by this committer
Update to 3.0.5.
Original commit
Sunday, 1 Jun 2003
01:07 marcus search for other commits by this committer
Update to 3.0.4.
Original commit
Wednesday, 7 May 2003
16:53 marcus search for other commits by this committer
Add a missing dependency on gail.

Reported by:    Rogier R. Mulhuijzen <drwilco@drwilco.net>
Original commit
06:01 marcus search for other commits by this committer
Add gtkhtml3 after a repo copy from gtkhtml.  GtkHTML-3 is an HTML
rendering and editing API based on GNOME 2.
Original commit

Number of commits found: 84