aboutsummaryrefslogtreecommitdiff
path: root/mail/sqwebmail
Commit message (Collapse)AuthorAgeFilesLines
* Pacify a number of portlint warnings around formatting and the order ofGerald Pfeifer2011-09-271-7/+6
| | | | | | | | | elements. Approved by: maintainer (oliver) Notes: svn path=/head/; revision=282444
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-2/+2
| | | | | | | | | | | | - 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 Notes: svn path=/head/; revision=282282
* - Track dependencies after databases/gdbm updateGabor Kovesdan2011-09-121-1/+2
| | | | Notes: svn path=/head/; revision=281668
* Remove (disabled) USE_GCC=3.4Gerald Pfeifer2011-09-111-1/+0
| | | | | | | Approved by: maintainer (oliver) Notes: svn path=/head/; revision=281620
* update to 5.5.2Oliver Lehmann2011-07-282-3/+3
| | | | Notes: svn path=/head/; revision=278476
* update to 5.5.1Oliver Lehmann2011-04-293-4/+19
| | | | Notes: svn path=/head/; revision=273325
* update sqwebmail to 5.4.3Oliver Lehmann2011-01-132-4/+3
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=267740
* update to 5.4.2Oliver Lehmann2010-10-172-4/+4
| | | | Notes: svn path=/head/; revision=263136
* update to 5.4.1Oliver Lehmann2010-05-312-5/+4
| | | | Notes: svn path=/head/; revision=255390
* Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.Ade Lovett2010-05-311-0/+1
| | | | Notes: svn path=/head/; revision=255371
* use new RC_SUBR structureOliver Lehmann2010-03-291-9/+1
| | | | | | | Submitted By: dougb Notes: svn path=/head/; revision=251736
* For those ports that have been fully adapted to USE_RC_SUBR remove theDoug Barton2010-03-271-1/+1
| | | | | | | | | | old RC_SCRIPTS_SUB as it has not been needed for a long time. For those that have not yet been updated, remove RC_SUBR=${RC_SUBR} from the list. Notes: svn path=/head/; revision=251565
* Begin the process of deprecating sysutils/rc_subr byDoug Barton2010-03-271-1/+1
| | | | | | | s#. %%RC_SUBR%%#. /etc/rc.subr# Notes: svn path=/head/; revision=251553
* update to 5.4.0Oliver Lehmann2010-01-022-4/+4
| | | | Notes: svn path=/head/; revision=247008
* - Switch SourceForge ports to the new File Release System: categories ↵Dmitry Marakasov2009-08-221-2/+1
| | | | | | | starting with M Notes: svn path=/head/; revision=240072
* update to 5.3.2Oliver Lehmann2009-07-022-4/+4
| | | | Notes: svn path=/head/; revision=236924
* - update to 5.3.1Oliver Lehmann2009-02-073-15/+15
| | | | | | | | | | - use /var instead of /usr/local/var [1] PR: ports/130191 [1] Submitted By: Nick Hibma <nick@anywi.com> Notes: svn path=/head/; revision=227769
* Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.Rong-En Fan2008-08-211-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Specifically, newer autoconf (> 2.13) has different semantic of the configure target. In short, one should use --build=CONFIGURE_TARGET instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning and the old semantic may be removed in later autoconf releases. To workaround this issue, many ports hack the CONFIGURE_TARGET variable so that it contains the ``--build='' prefix. To solve this issue, under the fact that some ports still have configure script generated by the old autoconf, we use runtime detection in the do-configure target so that the proper argument can be used. Changes to Mk/*: - Add runtime detection magic in bsd.port.mk - Remove CONFIGURE_TARGET hack in various bsd.*.mk - USE_GNOME=gnometarget is now an no-op Changes to individual ports, other than removing the CONFIGURE_TARGET hack: = pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables) - comms/gnuradio - science/abinit - science/elmer-fem - science/elmer-matc - science/elmer-meshgen2d - science/elmerfront - science/elmerpost = use x86_64 as ARCH - devel/g-wrap = other changes - print/magicfilter GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf Total # of ports modified: 1,027 Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes) PR: 126524 (obsoletes 52917) Submitted by: rafan Tested on: two pointyhat 7-amd64 exp runs (by pav) Approved by: portmgr (pav) Notes: svn path=/head/; revision=218938
* update to 5.2.2Oliver Lehmann2008-07-162-5/+4
| | | | Notes: svn path=/head/; revision=216902
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-0/+1
| | | | | | | | | | | | | 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) Notes: svn path=/head/; revision=214430
* update to 5.2.0Oliver Lehmann2007-10-032-4/+4
| | | | Notes: svn path=/head/; revision=200728
* - Set --mandir and --infodir in CONFIGURE_ARGS if the configure scriptRong-En Fan2007-07-231-1/+0
| | | | | | | | | | | | | | | | | | | | | supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run Notes: svn path=/head/; revision=196111
* fix --enable-unicode handling and remove --disable-utf7-folder-encodingOliver Lehmann2007-05-271-18/+2
| | | | | | | option which is not longer supported Notes: svn path=/head/; revision=191965
* update to 5.1.6Oliver Lehmann2007-04-262-6/+6
| | | | Notes: svn path=/head/; revision=190948
* update to 5.1.5Oliver Lehmann2007-01-112-4/+4
| | | | Notes: svn path=/head/; revision=182057
* update to 5.1.4Oliver Lehmann2007-01-022-4/+4
| | | | Notes: svn path=/head/; revision=181245
* - OPTIONify FAM supportOliver Lehmann2006-11-061-1/+13
| | | | | | | | | - fix compilation with FAM support enabled Noted by: Jason Woofenden <jason@jasonwoof.com> Notes: svn path=/head/; revision=176628
* update to5.1.3Oliver Lehmann2006-08-302-4/+4
| | | | Notes: svn path=/head/; revision=171678
* update to 5.1.2Oliver Lehmann2006-05-303-4/+6
| | | | Notes: svn path=/head/; revision=163926
* fix pointyhat and 4 buildOliver Lehmann2006-05-161-2/+2
| | | | | | | Noted by: Patrick Mackinlay <patrick@spacesurfer.com> Notes: svn path=/head/; revision=162558
* Remove USE_REINPLACE from ports starting with MEdwin Groothuis2006-05-101-1/+0
| | | | Notes: svn path=/head/; revision=162032
* resort CXXFLAGS to make pointyhat happyOliver Lehmann2006-04-071-1/+1
| | | | | | | Noted by: kris Notes: svn path=/head/; revision=159066
* switch CONFIGURE_ENV definition to fix pointyhat buildOliver Lehmann2006-03-231-1/+1
| | | | | | | Noted by: kris Notes: svn path=/head/; revision=157998
* make gdbm chooseable (OPTIONS)Oliver Lehmann2006-03-211-2/+12
| | | | | | | use a cache file to speed up configure Notes: svn path=/head/; revision=157882
* fix OpenSSL supportOliver Lehmann2006-03-201-1/+1
| | | | | | | Noted by: Manuel Trujillo Albarral <mtrujillo@vlex.com> Notes: svn path=/head/; revision=157758
* startscript gets installed without .sh suffixOliver Lehmann2006-03-193-3/+3
| | | | Notes: svn path=/head/; revision=157694
* install charset.alias in the correct placeOliver Lehmann2006-03-191-1/+3
| | | | Notes: svn path=/head/; revision=157685
* update to 5.1.1Oliver Lehmann2006-03-152-4/+5
| | | | Notes: svn path=/head/; revision=157094
* Conversion to a single libtool environment.Ade Lovett2006-02-231-2/+1
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* Remove the FreeBSD KEYWORD from all rc.d scripts where it appears.Doug Barton2006-02-201-1/+1
| | | | | | | | | | We have not checked for this KEYWORD for a long time now, so this is a complete noop, and thus no PORTREVISION bump. Removing it at this point is mostly for pedantic reasons, and partly to avoid perpetuating this anachronism by copy and paste to future scripts. Notes: svn path=/head/; revision=156534
* fix pkg-plistOliver Lehmann2006-02-041-0/+1
| | | | | | | Noted by: kris via pointyhat Notes: svn path=/head/; revision=155220
* update to 5.0.7Oliver Lehmann2005-12-282-3/+4
| | | | Notes: svn path=/head/; revision=152251
* Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentAde Lovett2005-11-151-1/+1
| | | | | | | | | | | | | | | | | | | | in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run. Notes: svn path=/head/; revision=148323
* update tp 5.0.6Oliver Lehmann2005-09-242-3/+3
| | | | Notes: svn path=/head/; revision=143488
* update to 5.0.5Oliver Lehmann2005-09-172-3/+13
| | | | Notes: svn path=/head/; revision=142998
* fix a small typoOliver Lehmann2005-09-131-1/+1
| | | | | | | Submitted by: Marian Cerny <jojo@matfyz.cz> Notes: svn path=/head/; revision=142600
* update to 5.0.4Oliver Lehmann2005-07-252-3/+3
| | | | Notes: svn path=/head/; revision=140078
* fix a circular dependency - don't depend on yourselfOliver Lehmann2005-07-011-2/+2
| | | | | | | Submitted by: Billy Newsom <billy@nlcc.us> Notes: svn path=/head/; revision=138304
* fix the WITH_HTTPS_LOGIN knobOliver Lehmann2005-06-101-1/+1
| | | | | | | | PR: 82118 Submitted By: Cristiano Deana <cris@gufi.org> Notes: svn path=/head/; revision=137189
* update to 5.0.2Oliver Lehmann2005-05-132-3/+3
| | | | Notes: svn path=/head/; revision=135200