Evolution is the integrated mail, calendar and address book
distributed suite from Ximian, Inc.

See http://www.ximian.com/apps/evolution.php3 for more information.

Note that Evolution is still beta. This means it may delete all of
your mail if you give it the chance.

If you are using Evolution, you should subscribe to the Evolution
mailing list. If you are interested in hacking on it, you should
subscribe to the Evolution Hackers mailing list. Send mail to
"evolution-request@ximian.com" or
"evolution-hackers-request@ximian.com" with the word "subscribe" in
the body of the message. If you are planning to work on any part of
Evolution, please send mail to the mailing list first, to avoid
duplicated effort (and to make sure that you aren't basing your work
on interfaces that are expected to change).

There are mailing list archives available at
http://lists.ximian.com/archives/public/evolution/     and
http://lists.ximian.com/archives/public/evolution-hackers/

There is also an #evolution IRC channel on irc.gnome.org.


IF IT DOESN'T WORK
------------------

Did you read the "How to build" section below?

If the configure script complains that you don't have a library that
you know you have installed, it usually means either that you've
installed things into multiple prefixes (see the bits on GNOME_PATH
below) or (if you're on Linux) that you installed the "foo" package
but forgot the "foo-devel" or "foo-dev" packages.


HOW TO BUILD EVOLUTION
----------------------

	*** READ THIS BEFORE YOU START BUILDING ANYTHING! ***

Evolution depends on a large number of unreleased and rapidly-changing
libraries. Some of these libraries in turn depend on other unreleased
and rapidly-changing libraries.

Building Evolution is HARD, and it's going to stay hard until all of
the libraries it depends on stabilize, and there's nothing we can do
to make it any easier until then.


GENERAL PRINCIPLES
------------------

First you have to decide whether you want to install Evolution (and
its dependencies) into the same prefix as the rest of your GNOME
install, or into a new prefix. Installing everything into the same
prefix as the rest of your GNOME install will make it much easier to
build and run programs, and easier to switch between using packages
and building it yourself, but it may also make it harder to uninstall
later.

If you want to install into the same prefix as the rest of GNOME,
type:

	gnome-config --prefix
	gnome-config --sysconfdir

and remember the answers, and pass them to "configure" or "autogen.sh"
when building the other packages you need. For example:

	./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib

    --localstatedir is needed to make the docs integrate with scrollkeeper
    and needs to point to the directory containing the scrollkeeper indices
    which are in: gnome-config --localstatedir

If you build in another prefix instead, you will need to set the
GNOME_PATH environment variable (and ACLOCAL_FLAGS as well if building
from CVS) to include the prefix you install into. For example:

        export GNOME_PATH=/usr/local
	export ACLOCAL_FLAGS="-I /usr/local/share/aclocal"

(Assuming your shell is bash, and you installed into /usr/local.) You
need to set GNOME_PATH both during compiling AND when you run
evolution. Remember also that if you're installing into an odd prefix
such as /evolution, that you also need to make sure to put
${prefix}/bin in your PATH and ${prefix}/lib in your LD_LIBRARY_PATH.


DEPENDENCIES
------------

The following required libraries are available in GNOME CVS, under the
given names.  Most (but not all) of them are also available as
tarballs on ftp.gnome.org.  The (*)ed packages are available in Ximian
GNOME ( http://www.ximian.com/desktop/ ).  Other packages may be
available from the Ximian GNOME evolution preview mirror.

If installing from packages, remember that you need both the runtime
and -devel packages for each library.

 - xml-i18n-tools - latest from xml-i18n-tools-stable-1-x branch in
   GNOME CVS (0.8.2 is too old)

 - scrollkeeper - 0.1.4 or later (*)

 - gnome-xml - 1.8.10 or later in the 1.0 series, but not from the 2.0
   series (If you get this from GNOME CVS, use the tag "LIB_XML_1_BRANCH".)
   (*)

 - gnome-print - 0.25 or later (*)

 - gdk-pixbuf - 0.9.0 or later (*)

 - ORBit - 0.5.8 or later (*) (If you get this from GNOME CVS, use the
   tag "orbit-stable-0-5".)

 - oaf - 0.6.2 or later (If you get this from GNOME CVS, use the tag
   "oaf-stable-0-6")

   *** If you are using oaf from CVS, you should use the flag
   *** "--disable-more-warnings" when configure, or it may fail to
   *** build.

 - gnome-vfs - 1.0.0 or later (If you get this from GNOME CVS, use
   the tag "gnome-vfs-1-0")

   *** If you are using gnome-vfs from CVS, you should use the flag
   *** "--disable-more-warnings" when configuring, or it may fail to
   *** build.

 - libglade - 0.14 or later

 - bonobo - 1.0.3 or later

   *** Note that bonobo must be installed with the same --prefix as
   *** either gnome-libs or evolution for the Makefiles to work
   *** properly.

 - gal (GNOME Application Library) - 0.18.1 or later

 - gtkhtml - later than 0.16.1

 - SOUP: later than 0.6.99

Other non-GNOME Dependencies:

 - Berkeley's libdb - 3.1.17

   db3 is available from http://www.sleepycat.com. Make sure to get
   3.1.17, it isn't the latest version.


COMPILING BERKELEY DB
---------------------

If you don't have 3.1.17 installed on your system or Evolution doesn't
detect it for some reason, here is a way to get Evolution to link to
it without messing up your system installation.

� * Get the Sleepycat tarball from:

����� http://www.sleepycat.com/update/3.1.17/db-3.1.17.tar.gz

� * Install the content somewhere _other_ than the evolution source tree.
���  e.g: NOT evolution/db-3.1.17

� * Compile according to instructions, but installing into some custom
��� prefix, for example:

����� ../dist/configure --prefix=/home/user/berkeleydb-3.1.17

� * Autogen Evolution specifying that it has to look for the DB
��� library there, for example:

����� ./autogen.sh --prefix=/opt/gnome
����� --with-db3-includes=/home/user/berkeleydb-3.1.17/include
����� --with-db3-libs=/home/user/berkeleydb-3.1.17/lib


COMPILING PALM PILOT SUPPORT
----------------------------

If you want support for PalmPilot syncing (currently experimental so
please back up your pilot) you will also need to do the following:

1) pilot-link 0.9.5
http://www.pilot-link.org

2) gnome-pilot 0.1.61
http://www.eskil.org/gnome-pilot/

3) evolution
In your evolution source directory do ./autogen.sh --prefix=<evo-prefix> 
--with-pisock=<pilot-link-prefix> --enable-pilot-conduits=yes
make
make install


SSL SUPPORT
-----------

If you want SSL support (and someday S/MIME), you will also need libnspr4 and
libnss3 which can be found at http://www.mozilla.org.

Once you have libnspr4 and libnss3 (and their respective includes) installed,
in your evolution source directory do:
./autogen.sh --prefix=<evo-prefix> --with-nspr-includes=<nspr-includes-prefix>
--with-nspr-libs=<nspr-libs-prefix> --with-nss-includes=<nss-includes-prefix>
--with-nss-libs=<nss-libs-prefix>

You'll need to `cp ~/.mozilla/default/*.db ~/evolution` on you've
installed Evolution in order to get a functional SSL-enabled
Evolution.

WARNING: Evolution also comes with OpenSSL support
(--with-openssl-libs and --with-openssl-includes), but it's not very
well tested, and quite unstable at this point.  It is recommended that
you use the NSPR-based SSL support instead.


NEWSGROUP (NNTP) SUPPORT
------------------------

Experimental support for NNTP is enabled if you use the --enable-nntp
configure option, but it's currently unmaintained and highly unstable
and experimental.
lass='left'>Commit message (<a href='/~lantw44/cgit/freebsd-ports-gnome/log/devel/horde-timeobjects?h=dependabot/npm_and_yarn/devel/electron4/files/lodash-4.17.19&amp;id=15ad1ff4e75b4565c3e3e0f67276bd247402f72e&amp;showmsg=1'>Expand</a>)</th><th class='left'>Author</th><th class='left'>Age</th><th class='left'>Files</th><th class='left'>Lines</th></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/freebsd-ports-gnome/commit/devel/horde-timeobjects?h=dependabot/npm_and_yarn/devel/electron4/files/lodash-4.17.19&amp;id=3de11f75e95b0f2dda0d4e2d1bed3fca9fd4925e'>Introduce PHP flavors.</a></td><td>mat</td><td><span title='2018-03-09 03:48:41 +0800'>2018-03-09</span></td><td>1</td><td><span class='deletions'>-1</span>/<span class='insertions'>+1</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/freebsd-ports-gnome/commit/devel/horde-timeobjects?h=dependabot/npm_and_yarn/devel/electron4/files/lodash-4.17.19&amp;id=6ef17ce9f3154a183980ba2ef1b97dc22b928aef'>Horde package update:</a></td><td>mm</td><td><span title='2017-09-20 05:48:42 +0800'>2017-09-20</span>an class='insertions'>+1</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=bca04885c7a73b45eac847d24339d6585d65c96c'>Fix build on i386 when building with clang.</a></td><td>zeising</td><td><span title='2013-01-19 20:35:40 +0800'>2013-01-19</span></td><td>3</td><td><span class='deletions'>-0</span>/<span class='insertions'>+30</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=f8679ef171f8eb8efbc6662799c53b41fb8e71be'>Add a patch to fix a couple of cases of use before initialized in the new</a></td><td>zeising</td><td><span title='2012-12-14 19:02:48 +0800'>2012-12-14</span></td><td>2</td><td><span class='deletions'>-2</span>/<span class='insertions'>+56</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=71333579775d6d8c1efe5eb82a8cb87d39b6e956'>3dfx has been defunct for a long time</a></td><td>eadler</td><td><span title='2012-12-09 06:51:07 +0800'>2012-12-09</span></td><td>1</td><td><span class='deletions'>-6</span>/<span class='insertions'>+4</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=a8c7593977964c758b72537a522c640ed855f5af'>- Add missing "defined".</a></td><td>avilla</td><td><span title='2012-11-15 20:47:11 +0800'>2012-11-15</span></td><td>1</td><td><span class='deletions'>-1</span>/<span class='insertions'>+1</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=5fb75889ff78049c1801014ae2d2eb32fb4d68cb'>Solve libGL.so and libglx.so conflict situation between libGL, xorg-server and</a></td><td>kwm</td><td><span title='2012-08-31 23:44:41 +0800'>2012-08-31</span></td><td>4</td><td><span class='deletions'>-14</span>/<span class='insertions'>+52</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=7f4a171abadb026bac78c52a248a5ac91a5d2cf7'>Replace some spaces with tabs, and remove double defined variables in PLIST_SUB.</a></td><td>kwm</td><td><span title='2012-08-29 19:30:31 +0800'>2012-08-29</span></td><td>1</td><td><span class='deletions'>-7</span>/<span class='insertions'>+3</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=5af749d5c82013c0b838b21891aa1ed45c1d33a5'>Fix the build of xorg related ports when the base system is compiled with</a></td><td>zeising</td><td><span title='2012-07-30 02:26:00 +0800'>2012-07-30</span></td><td>1</td><td><span class='deletions'>-0</span>/<span class='insertions'>+4</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=988a78c9fe929eea0d928e843901938b634203c9'>Add new OPTIONS_EXCLUSE_${ARCH} to be able to exclude an option on the given ...</a></td><td>bapt</td><td><span title='2012-07-13 18:23:57 +0800'>2012-07-13</span></td><td>1</td><td><span class='deletions'>-5</span>/<span class='insertions'>+2</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=5563b03dc4de66c27d0d162dda74c1f6efabce05'>Convert to new options framework</a></td><td>bapt</td><td><span title='2012-06-06 20:56:30 +0800'>2012-06-06</span></td><td>1</td><td><span class='deletions'>-10</span>/<span class='insertions'>+11</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=b13199649b535ab40691f2c74111e34ecfdd2f8c'>Revert "dix: use the event mask of the grab for TryClientEvents."</a></td><td>naddy</td><td><span title='2012-04-25 01:28:04 +0800'>2012-04-25</span></td><td>2</td><td><span class='deletions'>-1</span>/<span class='insertions'>+91</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=8610de7ebcb688f7c822933cf96ecea22af9d9ac'>- Please welcome Xorg 7.5.2</a></td><td>miwi</td><td><span title='2012-04-22 01:03:32 +0800'>2012-04-22</span></td><td>20</td><td><span class='deletions'>-283</span>/<span class='insertions'>+226</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=2af37586dd84334969fd869dcc6cb3d47829eccd'>Repeated words are are hard to to find sometimes.</a></td><td>eadler</td><td><span title='2012-01-08 15:01:25 +0800'>2012-01-08</span></td><td>1</td><td><span class='deletions'>-1</span>/<span class='insertions'>+1</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=b227b572d808bc9da030a9f4a079976d44caca94'>- Remove WITH_FBSD10_FIX, is no longer needed</a></td><td>miwi</td><td><span title='2011-11-09 23:26:04 +0800'>2011-11-09</span></td><td>3</td><td><span class='deletions'>-3</span>/<span class='insertions'>+0</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=4329ce27057cc548043e1f91837b194cc2642beb'>- Fix build on FreeBSD 10.0</a></td><td>miwi</td><td><span title='2011-10-29 15:04:53 +0800'>2011-10-29</span></td><td>3</td><td><span class='deletions'>-1</span>/<span class='insertions'>+3</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=cbcab697a2e9687c792d5ac25134f939ac218158'>Fix CVE-2011-4028 and CVE-2011-4029.</a></td><td>kwm</td><td><span title='2011-10-19 02:25:44 +0800'>2011-10-19</span></td><td>2</td><td><span class='deletions'>-4</span>/<span class='insertions'>+22</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=e61d6a701f43e8cec5a4ec8c9641daf5376441de'>- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)</a></td><td>amdmi3</td><td><span title='2011-09-24 06:26:39 +0800'>2011-09-24</span></td><td>1</td><td><span class='deletions'>-2</span>/<span class='insertions'>+2</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=8d02bc246d200ce80f65ab2927d7de18355b0896'>Mark as broken on recent i386-9: fails to compile.</a></td><td>linimon</td><td><span title='2011-08-29 12:56:05 +0800'>2011-08-29</span></td><td>1</td><td><span class='deletions'>-1</span>/<span class='insertions'>+7</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=0400b2c7ffd8d495abfaff9f6419752b85e249fc'>Remove USE_GNOME=gnometarget from ports. It has been a empty keyword since</a></td><td>kwm</td><td><span title='2011-08-12 03:20:17 +0800'>2011-08-12</span></td><td>1</td><td><span class='deletions'>-1</span>/<span class='insertions'>+0</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=b8140efedd0b1993051421994aedbcc2349d80e2'>Fix the "exaGetPixmapFirstPixel called for invalid bpp" problem. This bug</a></td><td>kwm</td><td><span title='2011-08-07 15:17:59 +0800'>2011-08-07</span></td><td>2</td><td><span class='deletions'>-1</span>/<span class='insertions'>+27</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=114d32d453bc8629d9be955c9e971d6ba62e9a39'>Unbreak this -- random automake fallout not shown up on amd64 -exp runs</a></td><td>ade</td><td><span title='2011-03-21 11:39:39 +0800'>2011-03-21</span></td><td>2</td><td><span class='deletions'>-1</span>/<span class='insertions'>+7</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=4ab972b7468e739167f0f48c87471c6c6b7da9e5'>- Get Rid MD5 support</a></td><td>miwi</td><td><span title='2011-03-19 20:38:54 +0800'>2011-03-19</span></td><td>4</td><td><span class='deletions'>-5</span>/<span class='insertions'>+0</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=829b0a1948cbe22b11c5ee0ad5e00300ef49a28c'>- point x2x to its new home</a></td><td>bapt</td><td><span title='2011-03-11 23:09:31 +0800'>2011-03-11</span></td><td>3</td><td><span class='deletions'>-2</span>/<span class='insertions'>+3</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=173de8f08098583baa5b83dc09e5d6229b1e1c7c'>Revert "dix: use the event mask of the grab for TryClientEvents."</a></td><td>naddy</td><td><span title='2011-02-28 07:16:09 +0800'>2011-02-28</span></td><td>2</td><td><span class='deletions'>-0</span>/<span class='insertions'>+90</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=afbd9adc91ea20af30292938d6abd193791ae93f'>- Please welcome Xorg 7.5.1</a></td><td>miwi</td><td><span title='2011-02-26 00:52:50 +0800'>2011-02-26</span></td><td>13</td><td><span class='deletions'>-41</span>/<span class='insertions'>+15</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=0b3b71f4883b5bcd8a26f8ba2a3f96c4a228d03e'>- There's no nv(4x) manpage in xorg-server distribution anymore.</a></td><td>stas</td><td><span title='2011-01-25 10:07:10 +0800'>2011-01-25</span></td><td>1</td><td><span class='deletions'>-1</span>/<span class='insertions'>+0</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=611a0c4dfd50d5fd3327202745345f619edd7866'>- Fix build on powerpc64.</a></td><td>stas</td><td><span title='2011-01-25 09:53:11 +0800'>2011-01-25</span></td><td>1</td><td><span class='deletions'>-1</span>/<span class='insertions'>+1</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=7541282bbc857e3b52c8cedd620c9cfdf1f29f6c'>- DISTNAME= ${PORTNAME}-${PORTVERSION} is the default and not needed.</a></td><td>pgollucci</td><td><span title='2010-12-30 04:04:42 +0800'>2010-12-30</span></td><td>1</td><td><span class='deletions'>-1</span>/<span class='insertions'>+0</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=a44c192a2f5c31ae449c6b008b8a42bcc7ee099d'>Sync to new bsd.autotools.mk</a></td><td>ade</td><td><span title='2010-12-04 15:34:27 +0800'>2010-12-04</span></td><td>1</td><td><span class='deletions'>-1</span>/<span class='insertions'>+1</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=ac3bd331b0e3fb113ca9b86e7572afe696fdcc3a'>Punt autoconf267-&gt;autoconf268</a></td><td>ade</td><td><span title='2010-10-16 19:52:47 +0800'>2010-10-16</span></td><td>1</td><td><span class='deletions'>-1</span>/<span class='insertions'>+1</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=3ad75a4581c2f69fb2331ab72fee36ff8af166ba'>Autotools update.   Read ports/UPDATING 20100915 for details.</a></td><td>ade</td><td><span title='2010-09-16 02:35:24 +0800'>2010-09-16</span></td><td>1</td><td><span class='deletions'>-2</span>/<span class='insertions'>+2</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=5263802ba0d5ba49267beb791ac1268176a43e4f'>- Fix build on ppc</a></td><td>miwi</td><td><span title='2010-05-05 13:02:25 +0800'>2010-05-05</span></td><td>1</td><td><span class='deletions'>-11</span>/<span class='insertions'>+0</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=988b674197d5158ec2b9735dd2a18cab568384cd'>- Update to Xorg 7.5</a></td><td>miwi</td><td><span title='2010-05-01 19:41:07 +0800'>2010-05-01</span></td><td>13</td><td><span class='deletions'>-46</span>/<span class='insertions'>+37</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=5056a28034d8a7148da4d67f10dd1abfae0b163e'>Given that HAL doesn't work on sparc64 and always needs to be disabled</a></td><td>marius</td><td><span title='2010-02-08 08:20:08 +0800'>2010-02-08</span></td><td>1</td><td><span class='deletions'>-2</span>/<span class='insertions'>+11</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=0115b0910a3319f627ead0aaf2a5198f7a4aeb0a'>Update xorg-server and friends to 1.6.5.</a></td><td>rnoland</td><td><span title='2010-02-07 23:24:07 +0800'>2010-02-07</span></td><td>11</td><td><span class='deletions'>-44</span>/<span class='insertions'>+20</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=4f185e1b72df74c7f03d5cec592a5ebd94ed1186'>For ports maintained by ports@FreeBSD.org, remove names and/or</a></td><td>dougb</td><td><span title='2009-12-21 10:19:12 +0800'>2009-12-21</span></td><td>1</td><td><span class='deletions'>-3</span>/<span class='insertions'>+0</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=c3fccbaf16ea0d11e298651813677821c668d050'>Mark BROKEN on 9.x: does not build</a></td><td>erwin</td><td><span title='2009-12-16 21:19:28 +0800'>2009-12-16</span></td><td>1</td><td><span class='deletions'>-0</span>/<span class='insertions'>+4</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=af1fc7a24eda71b11fbfc0bc73c1d53d079e5b57'>-Repocopy devel/libtool15 -&gt; libtool22 and libltdl15 -&gt; libltdl22.</a></td><td>mezz</td><td><span title='2009-08-03 03:36:34 +0800'>2009-08-03</span></td><td>1</td><td><span class='deletions'>-1</span>/<span class='insertions'>+1</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=d1739305648e922102dbf1b0cbef746e5355e8ae'>Allow building on ia64. This does not make it functional, because</a></td><td>marcel</td><td><span title='2009-06-20 07:19:01 +0800'>2009-06-20</span></td><td>2</td><td><span class='deletions'>-1</span>/<span class='insertions'>+229</span></td></tr>
<tr><td class='commitgraph'>* </td><td><a href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-servers?h=mate-1.16&amp;id=c829dec847f90199d0d7d44713c95d02395e6d35'>Convert most of remaining ports that depend on xorg-libraries to</a></td><td>amdmi3</td><td><span title='2009-06-09 23:33:28 +0800'>2009-06-09</span></td><td>1</td><td><span class='deletions'>-1</span>/<span class='insertions'>+2</span></td></tr>