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. --- IMPORTANT WARNING --- The on-disk format of DB files has been changing between versions 2, 3 and 4. Also, because of the libdb API, there is no way to easily handle the different formats from within the application. For this reason, Evolution has chosen to use one specific version of the library (version 3) and stick to it, so that users do not need to convert their addressbook files to use them with different version of Evolution. That's why Evolution REQUIRES libdb 3.1.17, and NO OTHER VERSION. If you force the check to accept a version different from 3.1.17, your binary of Evolution will be using a different format from the chosen one; this means that it will not be able to read addressbook databases created by other versions of Evolution which were compiled in the standard way. Also, we DO NOT GUARRANTEE that Evolution will work with different versions of libdb at all, even if it can be trivially made to compile against them. SPECIAL NOTE FOR BINARY PACKAGERS: If you are making binary packages for end-users (e.g. if you are a distribution vendor), please statically link Evolution to Berkeley DB 3.1.17, as mandated by the configure.in check. DO NOT patch configure.in to work around the check. Forcing the check to link to a different version of the library will only give headaches and pain to your users, who will see their addressbook disappear and will complain to us (the Evolution team) about losing their data. Besides, libdb will be linked statically, which means that your distribution doesn't actually need to ship DB 3.1.17 itself separately. The Evolution team will be infinitely grateful for your co-operation. Thanks. 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/snapshot/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= --with-pisock= --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= --with-nspr-includes= --with-nspr-libs= --with-nss-includes= --with-nss-libs= 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. it/hungarian?h=gstreamer0.10-removal&id=d80f2f9b579e3bb67b2b109d8e8980579c5bc52e'>BROKEN: Does not installkris2007-03-251-0/+2 | * Update to KDE 3.5.6 / KOffice 1.6.2lofi2007-03-147-11/+12 | * Really normalize Aspell dictionaries ports PKGVERSION...thierry2007-02-151-1/+1 | | | | | | | | | textproc/aspell/Makefile.inc had been forgotten in the previous commit. PR: ports/106573 Submitted by: Marcin Wisnicki <mwisnicki+freebsd (at) gmail.com> Reported by: Michel TALON <talon (at) lpthe.jussieu.fr> Pointyhat to: /me * Normalize Aspell dictionaries PKGNAMEs.thierry2007-01-141-0/+1 | | | | | | PR: ports/106573, ports/107399, ports/107448 Submitted by: Marcin Wisnicki <mwisnicki+freebsd (at) gmail.com> Approved by: farrokhi, obrien * Update to KDE 3.5.5 / KOffice 1.6.1lofi2006-12-205-10/+11 | | | | Approved by: portmgr * - Update to 1.1.4miwi2006-11-105-71/+27 | | | | | PR: ports/105350 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> (maintainer) * KDE 3.5.4 / KOffice 1.5.2lofi2006-09-134-10/+10 | * Now installs again.kris2006-08-171-2/+0 | * Mark BROKEN: does not installerwin2006-08-041-0/+2 | * Update to 1.0itetcu2006-08-013-43/+107 | | | | | PR: ports/101055 Submitted by: Janos Mohacsi (maintainer) * All dictionaries can be installed separately:thierry2006-07-154-7/+15 | | | | | | | | | | | | | | | | | | - by default, textproc/aspell installs the English dictionaries (no change); - thereafter you can install any foreign dictionary; - when you install a foreign dictionary, i.e. french/aspell or textproc/da-aspell, it installs only the dictionaries, and depends upon textproc/aspell for the programs; - if you don't need the English dictionaries, you can define WITHOUT_DICTEN or install textproc/aspell-without-dicten; - add a new port for textproc/en-aspell: if aspell had been installed without the English dictionaries, they can be added thereafter; - add a missing port for german/alt-aspell; - foreign dictionaries are almost independent from textproc/aspell, and their maintainership is available. Credits: special thanks to Serge Gagnon <ser_gagnon (at) sympatico.ca> * Update to KDE 3.5.3lofi2006-06-064-22/+20 | * Update to KOffice 1.5.1lofi2006-05-272-4/+4 | * remove USE_REINPLACE for all categories starting with Hedwin2006-05-081-1/+0 | * Update to KOffice 1.5.0lofi2006-04-293-5/+8 | | | | | Approved by: portmgr (kris) cVS: arabic/koffice-i18n/distinfo arabic/koffice-i18n/pkg-descr * Update to KDE 3.5.2lofi2006-03-314-128/+22 | * Update to KDE 3.5.1.lofi2006-02-014-6/+20 | * SHA256ifyedwin2006-01-227-0/+8 | | | | Approved by: krion@ * Update to KDE 3.5.0lofi2006-01-094-110/+48 | * Remove the usage of 'misc' as a secondary category.linimon2005-11-102-2/+2 | | | | Hat: portmgr * Update to KDE 3.4.3 / KOffice 1.4.2lofi2005-11-055-8/+7 | * Remove all the secondary port of editors/ooodict-allmaho2005-11-012-21/+0 | | | | | | localized ones should be activated via knob like: % cd ports/editors/ooodict-all % make LOCALIZED_LANG=ABC * Fix index build by moving openoffice.org-1.1 ports.maho2005-08-291-1/+1 | | | | Submitted by: krion via krisautomail * Update to KDE 3.4.2 / KOffice 1.4.1lofi2005-08-014-7/+7 | * Update to KOffice 1.4.0a.lofi2005-07-063-30/+7 | | | | | Note that 'a' does *not* stand for 'alpha', but denotes a short-notice bugfix release made after KOffice 1.4.0. * Remove openoffice.org localized ports as I announced:maho2005-06-292-16/+0 | | | | | | | | o http://docs.freebsd.org/cgi/getmsg.cgi?fetch=25587+0+archive/2005/freebsd-openoffice/20050529.freebsd-openoffice o still you can build them via knobs for 1.1 see ports/editors/openoffice-1.1/files/Makefile.localized o 1.0 has been broken for long time, no longer maintained actively. (but still I don't delete 1.0 and delete only localized versions) * Update to KDE 3.4.1lofi2005-06-264-10/+4 | * - Unbreak and general updatepav2005-06-061-2/+2 | | | | | | | | | | | | | | | - Add thesaureses - Add new dictionaries for Afrikaans, Welsh, English (Australia), English (New Zealand), Spanish (Mexico), Faroese, Irish, Gaelic, Galician, Indonesian, Kurdish, Lithuanian, Malagasy (Madagascar), Maori (New Zealand), Malay, Norwegian, Chichewi (Malawi), Romanian, Kinyarwanda (Rwanda), Slovenian, Kishahili, Tagalog (Philippines), Hebrew (Israel), German (Austria), French (Belgium) PR: ports/78492, ports/81196 Submitted by: Pawel Wieleba <P.Wieleba@iem.pw.edu.pl>, Nicholas Kirby <nkirby@dagr.net> Approved by: maintainer (in general; too busy to work on ooodict) * Added slave port of lang/php_doc for the Hungarian languageedwin2005-05-232-0/+14 | * - Update to 1.0.R.2pav2005-05-203-25/+10 | | | | | PR: ports/81261 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> (maintainer) * Update to KDE 3.4lofi2005-03-214-62/+270 | * - Update MASTER_SITES, WWWpav2005-02-162-2/+2 | | | | | PR: ports/77500 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> (maintainer) * - Update MASTER_SITES, WWWpav2005-02-162-2/+2 | | | | | PR: ports/77499 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> (maintainer) * Add i18nized doc subdirs to kdehier and adjust i18n port plists accordingly.lofi2004-12-232-2/+0 | * - Use new support for plugin ports from textproc/jdictionaryhq2004-12-194-47/+10 | | | | | | | - Bump PORTREVISION as the location of files has changed Reviewed by: glewis Approved by: maintainer * Fix some more plist nits.lofi2004-12-173-3/+0 | * Fix kde3-i18n ports.lofi2004-12-162-4/+4 | * Update to KDE 3.3.2lofi2004-12-149-13/+16 | * Update to KDE 3.3.1lofi2004-11-084-7/+7 | * Update to KDE 3.3lofi2004-08-317-21/+133 | * Add slaves ports for Aspell's new dictionaries.thierry2004-08-293-0/+22 | * Factor out all but one of the build switches of the KDE main module portslofi2004-08-112-3/+3 | | | | | | | | | | | | | | | into separate ports. The OPTIONS will remain as of yet and trigger dependencies now, for easy transition. Update KOffice to version 1.3.2. Add patches to fix a number of issues, including: - fix kxkb on Xorg - fix kdemultimedia WITH_MPEGLIB (now mpeglib_artsplug) compilation on gcc 3.4.2 with optimizations greater than -O Add security related patches and entries to portaudit.txt. * Update to 1.0.R.1arved2004-08-102-4/+4 | | | | | PR: 70076 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> * Update to 1.0 RC1arved2004-08-104-45/+53 | | | | | PR: 70075 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> * Update to version 3.2.3lofi2004-06-102-4/+4 | * Add hunspell 0.9.7, improved Hungarian spelling checker.thierry2004-05-208-0/+169 | | | | | PR: 61987 Submitted by: janos.mohacsi@bsd.hu * Oops. Forgot the language categories.lofi2004-05-072-3/+3 | | | | Update to 1.3.1 * Update to KDE 3.2.2lofi2004-04-204-40/+18 | * Remove category pkg/COMMENT files in favour of a COMMENT variable in thekris2004-04-022-1/+3 | | | | | | | category makefile. Submitted by: Matthew Seaman <m.seaman@infracaninophile.co.uk> PR: 59651 * SIZEify (maintainer timeout)trevor2004-03-315-0/+5 | * Add Hungarian version of OpenOffice.orgmaho2004-03-212-0/+16 | * Reorder those filesmat2004-03-211-5/+5 | * Update to KDE 3.2.1 / QT 3.3.1lofi2004-03-105-4/+7 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Important changes: ================== KDE: - Audio/arts does not install artswrapper anymore, instead it is provided by audio/artswrapper. See UPDATING. - misc/kdeaddons3 is now a metaport with editors/kate-plugins editors/vimpart games/atlantikdesigner misc/kaddressbook-plugins misc/kfile-plugins misc/kicker-applets misc/knewsticker-scripts misc/konq-plugins misc/ksig misc/renamedlgplugins multimedia/noatun-plugins net/kontact-plugins as slave ports. - A number of KDE ports now uses OPTIONS do make various WITH_* options more visible. - Plist fixes - devel/kdevelop should be able to detect FreeBSD's autoconf/automake now for newly created projects. - kdebase will no longer remove previous KDM configurations. This won't take effect during the update from 3.2.0 to 3.2.1 (as deinstalling 3.2.0 will still remove the configuration), but subsequent updates will merge old configs. QT: - Previous versions of QT could be compiled with debugging-support enabled by defining DEBUG. This switch has been renamed to the more unambiguous WANT_QT_DEBUG (similar to WANT_KDE_DEBUG in the KDE ports). * Use PLIST_FILES (bento-tested, marcus-reviewed).trevor2004-02-064-2/+2 | * Update to KDE 3.2.0lofi2004-02-059-479/+223 | | | | | | | | | | | | | | | | | | | | | | | | | | Important changes: ================== - Kmail and knode have been moved from kdenetwork to kdepim. This means you will have to install kdepim if you want to continue using kmail or knode. This is to ease integration with korganizer, in the new 'Kontact' application. - The arabic translations for KDE and KOffice have been moved from misc to the arabic category. - There is a new module called kdeaccessibility in the accessibility category. It contains a few utilities for disabled users like a magnification lens and a text-to-speech frontend. - In KDM, you need to select the 'CUSTOM' session profile in order to have your .xsession executed. This is particularly important if you're using the aegypten tools (http://freebsd.kde.org/howtos/aegypten-kmail.php). - We have started making more parts of the ports optional. In kdepim, both Kandy and KPilot can be turned off with ports-knobs. This process will continue in the 3.2 series. * Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.marcus2004-02-043-0/+3 | | | | (Part 2) * Add USE_GETTEXT and bump PORTREVISION.marcus2004-02-043-6/+6 | | | | | Submitted by: trevor Tested by: bento * Now gettext 0.12.1 is gettext-old.trevor2004-01-243-3/+3 | * [REPOCOPY WAITING] editors/ooodict-hu_HU port can moved to hungarian categoryedwin2004-01-162-1/+4 | | | | | | | | | There is hungarian category in the port collection. The hungarian OpenOffice dictionary can be moved to hungarian similarly to the german dictionary. PR: ports/50996 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> * Slave ports do not need to include the master category in CATEGORIES.linimon2003-11-151-1/+0 | | | | | | | It is redundant. PR: ports/49002 Submitted by: Dan Langille <dan@langille.org> * OpenOffice -> OpenOffice.orgmaho2003-11-091-1/+1 | | | | Submitted by: Pavel@Janik.cz (Pavel Janik) * rename openoffice* to openoffice-1.0* accodingly (repo copy).maho2003-11-081-1/+1 | | | | Pointed out: sf, kris * Translation update: fix checksum.will2003-09-222-2/+2 | * Upgrade to Qt 3.2.1 / KDE 3.1.4. See x11/kde3/Makefile rev 1.64 for details.will2003-09-182-2/+2 | * Update KDE to the latest official release, KDE 3.1.3lofi2003-07-294-2/+6 | | | | | | | | | | | | | | | | | | Official KDE 3.1.3 announcement: http://www.kde.org/announcements/announce-3.1.3.php (may not work until a few hours after this commit - we jumped the gun a little in order to have the update in place at the time the security notifications for KDE 3.1.2 will be released together with the announcement of KDE 3.1.3). Changelog from 3.1.2 to 3.1.3 release: http://www.kde.org/announcements/changelogs/changelog3_1_2to3_1_3.php Thanks and credits need to go to the whole KDE-FreeBSD team, as well as everyone on kde@freebsd.org for providing feedback, reporting bugs and just using the KDE ports. Approved by: will (real mentor asleep) * Maintaner update of hungarian/ispell to version 0.99.3leeym2003-07-246-77/+224 | | | | | | | | | | | | | | Original package changes: - more portable (especially the Makefile) - fixing lots of spelling error - adding more affix rules and exceptions port changes: - new mastersite - proper noportdocs support PR: 54791 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> * Update to KDE 3.1.2lioux2003-05-204-8/+8 | * New port: localized messages and documentation for kofficelioux2003-05-205-0/+86 | * Repo-move KDE I18N hebrew, hungarian, & vietnamese messages to theirwill2003-04-147-12/+5 | | | | | | | respective I18N directories. Adjust the main kde3-i18n port for this. Also sort the dependencies (by language code) in that port. Submitted by: Lauri Watts <lauri@kde.org> Repocopied by: joe * Clear moonlight beckons.ade2003-03-074-2/+2 | | | | | | | Requiem mors pacem pkg-comment, And be calm ports tree. E Nomini Patri, E Fili, E Spiritu Sancti. * Remove pkg-comment from remaining master/slave port sets.ade2003-03-072-1/+1 | | | | Approved by: portmgr (implicitly) * De-pkg-comment.knu2003-02-2110-5/+5 | * Upgrade kde-i18n to 3.1. Note that the following modules did not get awill2003-01-294-258/+712 | | | | | | release for 3.1: az hr id is ko lv. These modules remain at their previous release (and still work), but may be incomplete or incorrect. However, their distfiles were moved to DIST_SUBDIR=KDE/kde-i18n anyway. * New port: jdictionary-eng-hun-expr 1.4 - English-Hungarian expressionedwin2003-01-036-0/+43 | | | | | | | dictionary plugin for jdictionary PR: ports/39598 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> * New port: jdictionary-eng-hun 1.4 - Hungarian-English dictionaryedwin2003-01-036-0/+41 | | | | | | | plugin for jdictionary PR: ports/39597 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> * MAINTAINER UPDATE: hungarian ispell version 0.92edwin2003-01-034-81/+66 | | | | | PR: ports/45705 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> * New port: hu-zipcodes - Hungarian post codes (version 2002.06.22)edwin2003-01-036-0/+36 | | | | | PR: ports/39728 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> * New port: hu-phone - Hungarian phone codes (version 20020622)edwin2003-01-036-0/+36 | | | | | PR: ports/39723 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> * Add hungarian/ispell, the Hungarian dictionary for ispell.knu2002-11-198-1/+126 | | | | | PR: ports/39308 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> * Set the default value of PKGNAMEPREFIX to "hu-".knu2002-11-181-0/+4 | * Add several new real categories.knu2002-11-181-0/+5 | | | | | | | | | | | | | | | | | | | | | - finance : Monetary, financial and related applications PR: ports/39102 Requested by: trevor - hungarian : Hungarian language support PR: ports/37576 Requested by: Janos Mohacsi <janos.mohacsi@bsd.hu> - multimedia : Multimedia software Requested by: many - portuguese : Portuguese language support PR: ports/35991 Requested by: trevor * Add several new real categories.knu2002-11-181-0/+1 | | | | | | | | | | | | | | | | | | | | | - finance : Monetary, financial and related applications PR: ports/39102 Requested by: trevor - hungarian : Hungarian language support PR: ports/37576 Requested by: Janos Mohacsi <janos.mohacsi@bsd.hu> - multimedia : Multimedia software Requested by: many - portuguese : Portuguese language support PR: ports/35991 Requested by: trevor * 1. Removed comments from pkg-plist files per will's request.alane2002-10-114-6/+2 | | | | | 2. This completes the KDE 3.0.4 commit. It's here, folks! Now /. those cvsup servers (in about an hour or so)! * Update to 3.0.3. Not much changed here: [1] i18n PKGNAMEs converted towill2002-08-254-8/+6 | | | | | | | more closely conform to FreeBSD style etc, and Konqueror SSL patch merged. Tested by: Matt Douhan <matt@fruitsalad.org>, alane Submitted by: lioux [1] * Add OpenOffice.org spelling dictionary ports. They are based on MySpell,mbr2002-08-122-0/+19 | | | | which is a rewrite of iSpell in c++ with lots of additional features. * 1. Changed the lib depends on gettext to a build depends. This will meanalane2002-08-032-4/+4 | | | | | | | that the dependency is not stored in a package and so future gettext upgrades should not require a PORTREVISION bump to force the new builds. 2. Bumped PORTREVISION as this affects package contents. Hopefully this is the last time this happens for this reason. * Bump PORTREVISION. KDE is fragile enough in its dependencies; we don'talane2002-08-022-0/+2 | | | | need bizarre gettext errors cropping up, too. * Chase shlib rev of devel/gettextade2002-08-022-2/+2 | | | | | Submitted by: lots and lots Pointy hat to: ade * Fix MASTER_SITE_SUBDIR.will2002-07-102-2/+2 | | | | | PR: 40272 Submitted by: Tilman Linneweh <tilman@arved.de> * Update to 3.0.2 -- full log available in ports/x11/kde3/Makefile,v 1.51.will2002-07-056-154/+10 |