1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
Commit Graph

3414 Commits

Author SHA1 Message Date
Raphael Kubo da Costa
70b511af31 Fix INDEX after r372179.
- Remove devel/qt5-qmldevtools from devel/Makefile.
- Hook devel/qt5-qdoc to devel/Makefile.
- Hook comms/qt5-serialport to comms/Makefile.

I knew I would forget something...

Submitted by:	antoine
2014-11-05 09:50:35 +00:00
Raphael Kubo da Costa
a9662ed949 Update Qt5 ports to 5.3.2.
Proudly presented by the KDE on FreeBSD team, with several guest stars.

This update took way longer than initially expected due to us previously
accumulating assumptions and changes to Qt's build system that finally bit
us back with the 5.3 release series, so we had to do a fair amount of
cleanup.

New ports:
- comms/qt5-serialport: Qt functions to access serial ports, originally
                        based on work by Fernando Apesteguia. [1]
- devel/qt5-qdoc: Qt documentation generator, the Qt5 equivalent of
                  devel/qt4-qdoc3. Originally worked on by Tobias Berner.
                  It had already been half-split from devel/qt5-buildtools,
                  we just needed to finish the work.

Dead ports:
- devel/qt5-qmldevtools: Merged into lang/qt5-qml.

Minor changes:
- devel/qt5: Add x11/qt5-x11extras and the new ports to the dependency list.
- graphics/qt5-imageformats: The port now supports the JPEG2000, WEBP,
                             Direct Draw Surface and ICNS formats.
- multimedia/qt5-multimedia: The ALSA and PULSEAUDIO options are now
                             mutually exclusive due to changes introduced in
                             Qt 5.3.0 (the ALSA code is now a proper plugin
                             that is only built if PulseAudio is not used).
- x11/qt5-x11extras: Add USE_LDCONFIG since the port installs a shared
                     library.

The big changes:
- bsd.qt.mk: Set QMAKESPEC instead of QMAKEPATH. [3]
  QMAKEPATH does much more than we want now that we call qmake from the top
  of ${WRKSRC}. qmake uses QMAKEPATH when evaluating the QMAKE_MKSPECS
  property, which is in turn used by qt_config.pri to load the .pri files in
  mkspecs/modules.

  In practice, this means that if people have an older Qt installation those
  files will be used and QT_CONFIG will have values such as "gui" even if
  one is building a port like textproc/qt5-xml, which passes -no-gui to the
  configure script. Consequently, unintended code paths may be enabled or
  the configuration step can just fail if the .pro files expect values that
  are not present in the system-wide, older .pri files.

  We avoid all those problems if we use QMAKESPEC, as qmake does not take
  its value into account when evaluating the QMAKE_MKSPECS property and will
  only parse the files in the mkspec's directory (mkspecs/freebsd-clang, for
  example, instead of all the files in mkspecs).

- Stop explicitly passing ${LOCALBASE} to the compiler. [3]
  qmake's behavior has changed in Qt 5, and the paths set in QMAKE_INCDIR
  and QMAKE_LIBDIR in the mkspecs are passed before any others, such as the
  ones in the build directory themselves.

  In practice, this means that we end up with linker calls like this:

  c++ -o libfoo.so foo.o bar.o -L/usr/local/lib -L/wrkdir/build/lib
      -lQt5Gui -lQt5Core

  So if one already has Qt installed in the system, the older, already
  present version of the libraries in /usr/local/lib will be used instead of
  the newly-built ones in /wrkdir/build/lib.

  QTBUG-40825 discusses this behavior upstream, but there has been no
  agreement on a solution yet.

  For now, the solution adopted is to make the compiler and the linker aware
  of those paths but only try them last after all others, and this is
  achieved by setting the CPATH and LIBRARY_PATH environment variables when
  qmake is being used.

  In addition to setting them in CONFIGURE_ENV and MAKE_ENV, we also need to
  stop changing QMAKE_INCDIR and QMAKE_LIBDIR as well as filter those paths
  from the pkg-config calls qtbase's configure script makes.

- Call qmake from the root of the ${WRKSRC}.

  In Qt 5.3, Qt's build infrastructure has undergone some changes that make
  our previous approach of calling qmake from the directories we want to
  build stop working. Things would break even more in Qt 5.4, in which
  qtbase's configure script does not accept the -process, -fully-process and
  -dont-process arguments anymore (it always behaves as if -process had been
  used).

  Bite the bullet and start calling qmake from ${WRKSRC}. The largest part of
  this change involves changing lines in Makefiles from
    WRKSRC_SUBDIR=	foo/bar
  to
    BUILD_WRKSRC=		${WRKSRC}/foo/bar
    INSTALL_WRKSRC=		${WRKSRC}/foo/bar
  as well as adding patches to .pro files to avoid entering other
  subdirectories and removing post-configure targets that are not necessary
  anymore.

  Since qmake needs to be called from the top of ${WRKSRC} anyway, we can
  also simplify the configuration process for the qtbase ports a little.
  Looking at r10019 it is not clear why we started calling qmake in the
  pre-configure target in addition to the post-configure one (while also
  skipping it in do-configure), but we can now drop this call since letting
  configure behave as if -process had been passed means it will call qmake
  on its own and overwrite the files generated by the pre-configure call. We
  still need to call qmake in post-configure though, as the configure script
  does not pass -recursive when calling qmake and we need to be able to call
  make from any subdirectory when building.

PR:		194762 [1]
PR:		194566 # exp-run with base GCC and clang
PR:		194088 [3]
2014-11-05 09:39:21 +00:00
Martin Matuska
762a55fa1c Horde package update:
comms/pear-Horde_ActiveSync 2.19.4 -> 2.20.0
devel/pear-Horde_Core 2.15.0 -> 2.16.0
archivers/pear-Horde_Pack 1.0.4 -> 1.0.5
2014-11-04 19:46:21 +00:00
Juergen Lock
3f4557f424 (Attempt to) fix build on head.
Submitted by:	beefy1 via pkg-fallout
2014-10-30 22:15:09 +00:00
Martin Matuska
3cae31f88b Horde package update:
comms/pear-Horde_ActiveSync 2.19.3 -> 2.19.4
devel/pear-Horde_Alarm 2.2.1 -> 2.2.2
www/pear-Horde_Dav 1.1.0 -> 1.1.1
databases/pear-Horde_Db 2.1.4 -> 2.1.5
devel/pear-Horde_History 2.3.1 -> 2.3.2
security/pear-Horde_Secret 2.0.3 -> 2.0.4
www/horde-base 5.2.1 -> 5.2.2
mail/horde-imp 6.2.2 -> 6.2.3
mail/horde-ingo 3.2.1 -> 3.2.2
deskutils/horde-kronolith 4.2.2 -> 4.2.3
deskutils/horde-mnemo 4.2.1 -> 4.2.2
deskutils/horde-nag 4.2.1 -> 4.2.2
mail/horde-turba 4.2.2 -> 4.2.3
deskutils/horde-groupware 5.2.2 -> 5.2.3
mail/horde-webmail 5.2.2 -> 5.2.3
www/horde-wicked 2.0.1 -> 2.0.2
devel/horde-whups 3.0.0 -> 3.0.1
2014-10-29 22:12:34 +00:00
Anders Nordby
fa72785059 Drop maintainership of all remaining ports where I am listed.
No time for this unfortunately.
2014-10-29 22:11:51 +00:00
Antoine Brodin
5721703784 Mark BROKEN: Fails to configure
With gcc:
configure: loading site script /usr/ports/Templates/config.site
checking for gcc... cc
checking whether the C compiler works... no
configure: error: in `/wrkdirs/usr/ports/comms/wsjt/work/wsjt-r2511':
configure: error: C compiler cannot create executables

With clang:
configure: loading site script /usr/ports/Templates/config.site
checking for gcc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... configure: error: in `/wrkdirs/usr/ports/comms/wsjt/work/wsjt-r2511':
configure: error: cannot run C compiled programs.

Reported by:	pkg-fallout
2014-10-29 21:38:08 +00:00
Bartek Rutkowski
7e7ca475ca comms/gqrx: update 20140313 -> 2.3.1
- Set PORTEPOCH
- Update COMMENT and pkg-descr
- Add LICENSE_FILE
- Remove obsolete dependency
- Mantainer approved

PR:		193404
Submitted by:	Kevin Zheng <kevinz5000@gmail.com>
Reviewed by:	martymac (maintainer)
Approved by:	mentors (implicit), martymac (maintainer)
2014-10-25 15:03:12 +00:00
Juergen Lock
e681bc5123 - libirman is no longer only a static lib so move it from build to lib
depends.
- Bump PORTREVISION.

Reported by:	Henry Hu <henry.hu.sh@gmail.com> (via private email)
2014-10-24 16:17:48 +00:00
Dmitry Sivachenko
7007ea4b9b Fix compilation after recent numpy patch.
Patch by thierry@FreeBSD.org, pointed out by antoine.
2014-10-23 15:23:27 +00:00
Martin Matuska
f51558983d Horde package update:
comms/pear-Horde_ActiveSync 2.19.0 -> 2.19.3
devel/pear-Horde_Core 2.14.0 -> 2.15.0
textproc/pear-Horde_CssMinify 1.0.1 -> 1.0.2
www/pear-Horde_Dav 1.0.7 -> 1.1.0
databases/pear-Horde_Db 2.1.3 -> 2.1.4
mail/pear-Horde_Imap_Client 2.25.0 -> 2.25.2
archivers/pear-Horde_Pack 1.0.3 -> 1.0.4
devel/pear-Horde_Timezone 1.0.7 -> 1.0.8
2014-10-20 11:22:54 +00:00
Baptiste Daroussin
2c8db67726 Cleanup plist 2014-10-20 09:31:33 +00:00
John Marino
b1ec8c1528 Add USES=alias to several ports
Alias is a new USES tool that allows DragonFly to masquerade as FreeBSD
by setting CFLAGS+= -D__FreeBSD__.  For some ports, this fixes the build
without the need for additional patches.

Approved by:	portmgr (bapt, blanket)
2014-10-20 09:03:09 +00:00
Max Brazhnikov
0ea52f99b4 KDE/FreeBSD team presents KDE SC 4.14.2 and KDE Workspace 4.11.13!
USE_KDE4=kdehier component has been deprecated, new components added:
 baloo			- Baloo core libraries
 baloo-widgets		- Baloo widgets library
 kfilemetadata		- KDE library for extracting file metadata

New ports:
  graphics/kqtquickcharts	- QtQuick plugin to render interactive charts
  misc/artikulate		- Pronunciation trainer for KDE
				(not usable currently, links to both
				GStreamer 1.x and 0.10.x via dependencies)
  sysutils/baloo[-widgets]	- KDE framework for searching and
				managing user metadata
  sysutils/kfilemetadata	- Library for extracting file metadata

l10n ports:
- Farsi (Persian) and Indonesian translations has been readded
- Vietnamese didn't pass threshold for inclusion into release

astro/kstars:
- switch dependency from math/eigen2 to math/eigen3
- add PYKDE option for updating supernovae data

deskutils/kdepim4:
- update dependencies: add libkgapi and baloo,
  remove now needless clucene, link-grammar, strigi
- add patch to fix build with gcc42
- update COMMENT and description for all KDE PIM ports

devel/ruby-krossruby:
- remove BROKEN, it builds with ruby 2.x now

editors/kate:
- add patch to disable memory-hungry build of the kate tests [1]

graphics/okular:
- add dependency on graphics/libkscreen

math/cantor:
- add optional dependency on lang/luajit for LuaJIT backend
- fix gfortran detection [2]

misc/kdehier4:
- adapt to new pkg world. Now the purpose of kdehier4 only
  to link some stuff between KDE4_PREFIX and LOCALBASE.

science/kalzium:
- switch dependency from math/eigen2 to math/eigen3
- add dependence on science/chemical-mime-data

x11-themes/kdeartwork4
- switch dependency from math/eigen2 to math/eigen3

among other changes:
- drop deprecated USE_KDE4=kdehier
- drop @dirrm from plist
- clean up pkg-descr
- convert to options helpers
- other portlint fixes

The area51 repository features commits by alonso, rakuco and myself.

PR:		187150 [1]
Reported by:	pe.freethread@live.com
Patch by:	Tobias Berner <tcberner@gmail.com>

PR:		180674 [2]
Reported by:	torsten.eichstaedt@web.de

PR:		194316
Exp-run:	antoine
2014-10-19 15:57:27 +00:00
Marcus von Appen
dae43d7a6d - Convert ports from cad/, chinese/, comms/ and converters/ to new
USES=python

Approved by:	portmgr (implicit)
2014-10-19 07:50:53 +00:00
Antoine Brodin
3b8f271c66 Ignore on the package builders when the default version of python is different
from the requested one

Reported by:	pkg-fallout
2014-10-18 14:46:42 +00:00
Stephen Hurd
289c40ccdf - Update to 1.3.17
- Set Maintainer to hamradio@

From ChangeLog:
FT450D Notch, IC-9100 update, Power meter remote, Smeter remote,
touch panel, xml-fix, FT450D, Freq Control, IC 7410
2014-10-17 23:05:11 +00:00
Diane Bruce
b422b81477 - modernise Makefile, fix pkg-descr
- change Maintainer to hamradio group
- update to chirp 0.4.1

Version 0.4.1 contains a special backport for Baofeng users to work
around a firmware incompatibility issue.
2014-10-14 21:28:09 +00:00
Ganael LAPLANCHE
b0e7522bcf Remove @dirrm/@dirrmty from my ports 2014-10-13 07:12:43 +00:00
Diane Bruce
a79a58bde1 - delete bogus old patch 2014-10-09 12:38:54 +00:00
Rene Ladan
cad5f95847 Clean up pkg-plist of my ports. 2014-10-09 11:35:12 +00:00
William Grzybowski
33048ba80f comms/wsjt: switch from py-imaging to py-pillow
With hat:	python
Approved by:	portmgr (bdrewery, implicit)
2014-10-08 16:23:45 +00:00
Baptiste Daroussin
b814bb5775 Fix build with gmake 4.1 2014-10-08 07:14:54 +00:00
Diane Bruce
b2be06969c - update to the version 4 branch
- add LICENSE
2014-10-07 22:30:36 +00:00
Tijl Coosemans
8f0bfdb99c - Remove USE_AUTOTOOLS
- Replace CONFIGURE_ARGS with CPPFLAGS/LIBS
- Use default do-install
2014-10-05 13:22:06 +00:00
William Grzybowski
810bc9d8b3 comms/wspr: switch from py-imaging to py-pillow
- USES python

With hat:	python
Reviewed by:	portmgr (bdrewery, implicit)
2014-10-04 14:34:50 +00:00
Tijl Coosemans
c9ceb8d5e7 - Remove :build from USES=libtool because this port does not need
/usr/local/bin/libtool
- Don't replace -lpthread with -pthread because they are the same
2014-10-01 11:28:44 +00:00
Baptiste Daroussin
1446608ec7 Convert to USES=horde
Fix pear-Horde_core options
Use options helpers where possible
2014-09-30 22:14:59 +00:00
Alberto Villa
c6c79da969 - Update libplist to 1.11.
- Split libusbmuxd.so into comms/libusbmuxd and update to 1.0.9.
- Update libimobiledevice to 1.1.6.
- Update usbmuxd to Git snapshot (~1.0.9).
- Document usbmuxd upgrade process.

This marks an important refactoring effort for proper iOS 7 support.
It's packed with new features, tools, speed improvements, code
refactoring, crash fixes, memory leak fixes and much more.
2014-09-28 22:58:51 +00:00
Dmitry Marakasov
393c056310 - Don't remove mtree directory
Approved by:	portmgr blanket
2014-09-25 19:39:14 +00:00
Tijl Coosemans
a6d2f30533 - Set CPPFLAGS and LIBS in a number of ports so configure can find libintl.h
and libintl.so.  This fixes a problem where DATADIRNAME gets an incorrect
  value which causes locale files to be installed in the wrong place.
- The only configure checks that still need to be patched are related
  to intltool so move DATADIRNAME patching from USES=pathfix to
  USE_GNOME=intlhack.

- games/klavaro: remove excessive dependencies
- japanese/libskk: add INSTALL_TARGET=install-strip
- math/libqalculate: add INSTALL_TARGET=install-strip and remove pthread
  patching
- multimedia/freetuxtv: remove excessive dependencies
- science/gramps: fix shared-mime-info use

Exp-run by:	antoine
Approved by:	portmgr (antoine)
2014-09-25 15:18:27 +00:00
Boris Samorodov
c13e8db7b7 comms/libmodbus: strip a library while install and remove @dirrmtry's 2014-09-22 14:28:15 +00:00
Baptiste Daroussin
5b8385ece2 Simplify plist 2014-09-22 09:24:44 +00:00
Pawel Pekala
5ed37ddf78 - Update to version 0.8
- Give maintainership to submitter

PR:		ports/193635
Submitted by:	Muhammad Moinur Rahman <5u623l20@gmail.com>
2014-09-20 18:26:59 +00:00
Rene Ladan
7eafff56c3 Remove expired ports
Keep some which are optional dependencies of non-expired ports
2014-09-18 sysutils/moreutils-parallel: Use moreutils-parallel in sysutils/moreutils instead
2014-09-20 science/ruby-netcdf: Depends on deprecated math/ruby-narray
2014-09-20 x11-toolkits/ruby-fox16: RubyForge shutdown May 15 2014
2014-09-20 math/ruby-gnuplot: Depends on deprecated math/ruby-narray
2014-09-20 science/ruby-gphys: Depends on deprecated math/ruby-narray
2014-09-20 math/ruby-fftw3: Depends on deprecated math/ruby-narray
2014-09-20 science/ruby-dcl: Depends on deprecated math/ruby-narray
2014-09-20 math/ruby-numru_misc: Depends on deprecated math/ruby-narray
2014-09-20 math/ruby-narray: RubyForge shutdown May 15 2014
2014-09-20 textproc/ruby-liquid: RubyForge shutdown May 15 2014
2014-09-20 comms/callsign: RubyForge shutdown May 15 2014
2014-09-20 misc/ruby-vpim: RubyForge shutdown May 15 2014
2014-09-20 net/ruby-ldap: RubyForge shutdown May 15 2014
2014-09-20 devel/rubygem-echoe: Depends on deprecated rubyforge
2014-09-20 www/ruby-borges: RubyForge shutdown May 15 2014
2014-09-20 www/ruby-fcgiwrap: RubyForge shutdown May 15 2014
2014-09-20 www/rubygem-scrubyt: RubyForge shutdown May 15 2014
2014-09-20 devel/ruby-multi: RubyForge shutdown May 15 2014
2014-09-20 databases/ruby-dbd_sqlite3: RubyForge shutdown May 15 2014
2014-09-20 math/ruby-gsl: RubyForge shutdown May 15 2014
2014-09-20 security/ruby-gpgme: RubyForge shutdown May 15 2014
2014-09-20 multimedia/vodcatcher: RubyForge shutdown May 15 2014
2014-09-20 japanese/ruby-ming: RubyForge shutdown May 15 2014
2014-09-20 devel/ruby-statgrab: RubyForge shutdown May 15 2014
2014-09-20 security/ruby-crypt: RubyForge shutdown May 15 2014
2014-09-20 sysutils/philesight: Depends on deprecated devel/ruby-locale2
2014-09-20 multimedia/podcatcher: RubyForge shutdown May 15 2014
2014-09-20 audio/ruby-mp3info: RubyForge shutdown May 15 2014
2014-09-20 multimedia/ruby-flvtool2: RubyForge shutdown May 15 2014
2014-09-20 audio/ruby-freedb: RubyForge shutdown May 15 2014
2014-09-20 graphics/ruby-ming: RubyForge shutdown May 15 2014
2014-09-20 devel/ruby-locale2: RubyForge shutdown May 15 2014
2014-09-20 devel/rubygem-rubyforge: RubyForge shutdown May 15 2014
2014-09-20 databases/ruby-dbd_odbc: RubyForge shutdown May 15 2014
2014-09-20 devel/ruby-fastri: RubyForge shutdown May 15 2014
2014-09-20 devel/ri-emacs: RubyForge shutdown May 15 2014
2014-09-20 security/p5-openxpki-client-html-mason: security/p5-openxpki-0.15+ abandoned Mason UI technology in favor of FastCGI
2014-09-20 09:45:04 +00:00
Rene Ladan
dffe241cd2 - Update comms/dcf77pi to version 3.2.0
- Use USE_LDCONFIG

Overall changes:
- Compile with -fpic instead of -fPIC (potentially smaller code size)
- Add a schematics file for the hardware receiver in FidoCadJ format
- Language and typographical updates to README.md
- Several signed/unsigned/size fixes

Library changes:
- Extract generic third-party code for bits 1..14 from decode_alarm.h into a
  new file bits1to14.h
- Convert almost all calculations for decoding the live signal into integer
  operations, drop fields 'a', 'frac', and 'maxone' from struct bitinfo.
- New function setclock_ok() in setclock.h
- New functions get_acc_minlen(), add_acc_minlen(), reset_acc_minlen() in
  decode_time.h. The accumulated minute length is now a first-class entity.
  When decoding the live signal, increment it more precisely than just 1000 ms/s
  to prevent drift during bad radio reception.
- New functions dcftime() and isotime() in decode_time.h. Use the latter in
  setclock.c
- Check input values of etc/config.txt:
  - hw.active_high must be 0 or 1
  - hw.freq must be even between 10 and 666666
- Reset the values of bit0 and bit20 if the latter becomes smaller than the
  former, show this in the log file using a '!'
- Compact the signal buffer, it now stores 8 pulses per byte instead of just 1.

Client changes:
- Make dcf77pi and dcf77pi-analyze more agnostic of the contents of the
  third-party contents
- Update display code of dcf77pi and readpin for the updates to the live signal
  decoding
- Show in dcf77pi when the value of bit20 underflows
- Update the code to display the signal buffer in readpin
- Fix readpin to properly clean up when receiving a SIGINT
2014-09-18 11:56:52 +00:00
Tijl Coosemans
a7718b4499 Convert to USES=autoreconf 2014-09-18 09:43:18 +00:00
Tijl Coosemans
83fa084228 Remove old libtool patch 2014-09-18 08:53:05 +00:00
Tijl Coosemans
15c4a5ecf3 Replace USE_AUTOTOOLS=libltdl with an ordinary LIB_DEPENDS in all ports.
There are only 60 such ports so there doesn't need to be a separate
keyword or USES for this.

Approved by:	portmgr (bapt)
2014-09-17 07:38:15 +00:00
Tijl Coosemans
079319a2ae comms/spandsp-devel:
- Fix installation of lib/libspandsp.so.2 (when patching configure.ac
  almost all USE_AUTOTOOLS are needed)
- Replace CONFIGURE_ARGS with CPPFLAGS/LIBS

Reported by:	antoine
2014-09-14 10:19:05 +00:00
Tijl Coosemans
a5bee80ce4 Use default LIBTOOLIZE_ARGS 2014-09-13 18:25:04 +00:00
Tijl Coosemans
3ce0f21808 devel/glib12 x11-toolkits/gtk12:
- Convert to USES=libtool and bump dependent ports
- Add INSTALL_TARGET=install-strip
- Remove patches that renamed include directories and libraries so they
  didn't conflict with early development versions of glib/gtk 2.0
2014-09-13 15:11:27 +00:00
Tijl Coosemans
d91c5097fb - Remove USE_AUTOTOOLS=libtool
- Convert to USES=python
2014-09-11 21:00:07 +00:00
Gerald Pfeifer
15945f8122 Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.

Part II, Bump PORTREVISIONs.

PR:		192025
Tested by:	antoine (-exp runs)
Approved by:	portmgr (implicit)
2014-09-10 20:50:31 +00:00
Antoine Brodin
31fcd051f2 - Allow staging as a regular user
- Shebangfix
2014-09-10 14:17:06 +00:00
Martin Matuska
453bf760cf Horde package update:
comms/pear-Horde_ActiveSync 2.18.1 -> 2.19.0
devel/pear-Horde_Core 2.13.1 -> 2.14.0
mail/horde-webmail 5.2.1 -> 5.2.2
deskutils/horde-groupware 5.2.1 -> 5.2.2
2014-09-08 22:25:29 +00:00
Antoine Brodin
da92712731 Allow staging as a regular user 2014-09-08 18:22:32 +00:00
John Marino
f738e6af15 comms/ncid: Upgrade version 0.89 => 1.0
PR:		193345
Submitted by:	maintainer (Carlos JPM)
2014-09-07 05:49:54 +00:00
John Marino
4c675c716d Stage comms/pr and assign maintainership to submitter
The source files were no longer available, so the submitter is also
hosting those.

PR:		192878
Submitted by:	Chris Hutchinson
2014-09-06 17:36:34 +00:00
Martin Matuska
53bb618a09 Horde package update:
comms/pear-Horde_ActiveSync 2.18.0 -> 2.18.1
mail/pear-Horde_Imap_Client 2.24.2 -> 2.25.0
mail/horde-imp 6.2.1 -> 6.2.2
mail/horde-ingo 3.2.0 -> 3.2.1
deskutils/horde-kronolith 4.2.1 -> 4.2.2
www/horde-passwd 5.0.1 -> 5.0.2
mail/horde-turba 4.2.1 -> 4.2.2
2014-09-05 23:02:48 +00:00