Commit graph

3977 commits

Author SHA1 Message Date
John Marino
73b9b079f7 comms/libimobiledevice: Handle missing SSLv3 case
Approved by:	SSL blanket
2016-09-09 22:22:43 +00:00
Dmitry Marakasov
30a00f2227 Most commonly used build systems support silent builds, when they
hide actual commands executed and only show short summary line (like
"CC foo.c"). CMake and ninja enable this by default, some autotools
using ports do as well. This is unacceptable because we need complete
build logs at any time, so we now switch to verbose build logs
unconditionally. Note that this change deliberately affects ALL
builds and not only package builds on cluster, because we need to
be sure that user experiencing failure can always provide informative
build log regardless of settings and without rerunning the build.

Change summary:

- Always do verbose builds for cmake, ninja and GNU configure (the
  latter includes check if --disable-silent-rules is actually supported
  by the configure script; there are isolated cases when it's not true)
- Remove CMAKE_VERBOSE, NINJA_VERBOSE and
  CONFIGURE_ARGS=--disable-silent-rules from all ports which set them
  for this is no longer needed
- Revert hacks for --disable-silent-rules support priorly committed
  to biology/ncbi-blast+ and net-p2p/mldonkey - no longer needed as well

Submitted by:	amdmi3
Reviewed by:	mat
Exp-run by:	antoine
Approved by:	portmgr (mat, antoine)
Differential Revision:	D7534
2016-09-09 19:42:46 +00:00
Ganael LAPLANCHE
94130fb428 Add Hackrf support
Submitted by:	ash <ash@aeria.net>
2016-09-09 10:12:00 +00:00
Boris Samorodov
c5326be73b comms/libmodbus: Update to version 3.1.4. 2016-09-07 11:04:47 +00:00
Tijl Coosemans
82a87de90c - Replace Mk/bsd.linux-apps.mk and Mk/bsd.linux-rpm.mk with
Mk/Uses/linux.mk.
- Replace USE_LINUX=yes with USES+=linux and USE_LINUX=(.*) with
  USES+=linux:\1 in all ports.
- Replace USE_LINUX_APPS with USE_LINUX in all ports.
- Use INSTALL_SCRIPT instead of INSTALL_PROGRAM to install scripts in some
  ports.
- When USE_LINUX_RPM is defined, simplify the way DISTFILES and EXTRACT_ONLY
  are defined.
- Remove BRANDELF_DIRS and BRANDELF_FILES handling.  In the very rare cases
  that it is still necessary ports can run ${BRANDELF} from post-patch.
- Remove AUTOMATIC_PLIST handling.  Only one port used it.
- Fix Linux MASTER_SITES.
- Replace OVERRIDE_LINUX_BASE_PORT and OVERRIDE_LINUX_NONBASE_PORTS with
  default versions framework.
- bsd.port.mk:
  - Move Linux related bits to Uses/linux.mk, except USE_LINUX_PREFIX.
  - Put USE_LINUX_PREFIX handling after USES processing.
  - Define DOCSDIR, DATADIR, etc. after handling USE_LINUX_PREFIX so it can
    give these variables a different default value.
  - When a package needs to run Linux ldconfig check before installation if
    Linux support is enabled.
- emulators/linux_base-*:
  - Use USES=linux and remove duplication.
  - Remove files/lp.  FreeBSD or CUPS lp(1) should work.
  - Remove files/yp.conf.  No longer seems to be used.
  - Remove pkg-deinstall and move pkg-install into pkg-plist.
  - Update pkg-descr and pkg-message.
  - Fix handling of ldconfig cache in pkg-plist.
- devel/fb-adb: Use a Linux shell to run a Linux script but patch the script
  to use FreeBSD mkdir so mkdir -p $path creates $path and not
  /compat/linux/$path.

PR:		211645
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2016-09-05 19:23:42 +00:00
Tobias C. Berner
0f583d8700 Replace Mk/bsd.kde4.mk by Mk/Uses/kde.mk in preparation for KDE Frameworks and
Plasma5 ports

At the moment KDE ports use bsd.kde4.mk to handle their dependencies. When
working on the ports for KDE Frameworks and Plasma5 it seemed to be more
reasonable to create a new kde.mk instead of adding an bsd.kde5.mk.

The kde.mk in this review is a stripped down version of the one we are using in
the KDE Test repositories plasma5 branch [1] to only contain the parts relevant
to the current KDE4 ports in the portstree [2].

Changes to the KDE Ports needed by this:

Replace USE_KDE4 by USE_KDE [3]
Add USES=kde:4 [4]
[1] http://src.mouf.net/area51/view/branches/plasma5/KDE/Mk/Uses/kde.mk
[2] The version in the plasma5 branch also handles frameworks/plasma5 and
    handles MASTER_SITES via a KDE_DIST variable similar to bsd.qt.mk for Qt
    Ports -- I chose to leave this out for now, as the diff is already large
    enough.
[3] I chose USE_KDE instead of USE_KDE4, USE_KDE5, USE_KDEX as the version we
    want is already specified as argument to kde:<arg>
[4] For KDE Frameworks and Plasma5 ports this would be kde:5

PR:             210667
Approved by:    portmgr, mat (mentor), rakuco (mentor)
Reviewed by:    mat, rakuco
Differential Revision:   https://reviews.freebsd.org/D6961
2016-08-24 08:20:31 +00:00
Kubilay Kocak
761de61979 comms/hylafax: Mark Un'BROKEN, Take MAINTAINER'ship
* Mark Un'BROKEN
 * Take MAINTAINERSHIP

PR:		200922
Requested by:	Dave <dave at ci com au>
2016-08-20 12:41:55 +00:00
John Marino
1b8743f844 comms/hylafax: Mark broken (runtime failure to receive faxes)
PR:	200922
2016-08-18 20:40:40 +00:00
Mathieu Arnold
f037e39601 USE_BDB cleanup.
- USE_BDB=4x+ -> USES=bdb.
- USE_BDB=yes -> USES=bdb.
- USE_BDB=xx  -> USES=bdb:xx.

Other modernisations when I see them.

PR:		209183
Sponsored by:	Absolight
2016-08-08 13:46:50 +00:00
Carlos J. Puga Medina
ee27f15d04 - Update to 1.4
- Update MAINTAINER to my @FreeBSD.org address
- Add LICENSE_FILE
- Add bash dependency
- Fix shebangs
- Add LOGROTATE option to install logrotate scripts
- Remove MAKE_JOBS_UNSAFE
- Cosmetic changes

Changelog:
  https://sourceforge.net/p/ncid/news/2016/06/ncid-14-released/

Reviewed by:	junovitch (mentor)
Approved by:	junovitch (mentor)
Differential Revision:	D7419
2016-08-06 02:08:59 +00:00
Antoine Brodin
f13df4511d - Update devel/doxygen to 1.8.11
- Adjust plist of ports depending on it

PR:		211447
Submitted by:	maintainer
2016-08-01 18:26:33 +00:00
Baptiste Daroussin
de43b1e936 Fix collision with getline(3) 2016-08-01 06:13:41 +00:00
Mathieu Arnold
e50dc2a336 Cleanup $() variables in ports Makefiles.
Mostly replace with ${}, but sometime, replace with $$() because it is
what was intended in the first place. (I think.)

Sponsored by:	Absolight
2016-07-20 15:33:20 +00:00
Kevin Lo
427d992934 Update to 20160710. 2016-07-20 08:30:44 +00:00
Mathieu Arnold
f899c758a6 When there is a do-install target, do not use a post-install target, do
everything at once.  Sometime, rename post-install into a options helper
target.

I did not fix ports that were such a mess that I could not figure out
what they really wanted to do.  I also did not change ports that had
some version of an auto-plist code in post-install, for the same reason.

With hat:	portmgr
Sponsored by:	Absolight
2016-07-19 11:04:13 +00:00
Mathieu Arnold
7ba0ba7aae Remove @comment $FreeBSD$ from pkg-plist files.
Sponsored by:	Absolight
2016-07-07 14:08:02 +00:00
Rene Ladan
19f31a471b Remove expired ports without open PRs:
2016-07-04 security/openpgpsdk: Broken for more than 6 months
2016-07-04 security/radiusniff: Broken for more than 6 months
2016-07-04 security/pear-Auth_OpenID: Broken for more than 6 months
2016-07-04 security/sshit: Broken for more than 6 months
2016-07-04 security/ifd-slb_rf60: Broken for more than 6 months
2016-07-04 security/rainbowcrack: Broken for more than 6 months
2016-07-04 security/vlog: Broken for more than 6 months
2016-07-04 security/cryptstring: Broken for more than 6 months
2016-07-04 x11/libdnd: Broken for more than 6 months
2016-07-04 x11/xlupe: Broken for more than 6 months
2016-07-04 x11/xco: Broken for more than 6 months
2016-07-04 x11/xclick: Broken for more than 6 months
2016-07-04 devel/ocfpcsc: Broken for more than 6 months
2016-07-04 devel/dits: Broken for more than 6 months
2016-07-04 devel/ruby-cache: Broken for more than 6 months
2016-07-04 devel/rapidsvn: Broken for more than 6 months
2016-07-04 devel/svnkit: Broken for more than 6 months
2016-07-04 devel/py-EnthoughtBase: Broken for more than 6 months
2016-07-04 devel/cl-uffi: Broken for more than 6 months
2016-07-04 devel/ruby-event-loop: Broken for more than 6 months
2016-07-04 devel/libqxt: Broken for more than 6 months
2016-07-04 devel/dasm: Broken for more than 6 months
2016-07-04 devel/libopendaap: Broken for more than 6 months
2016-07-04 devel/cl-uffi-sbcl: Depends on expiring devel/cl-uffi
2016-07-04 devel/cvs2p4: Broken for more than 6 months
2016-07-04 devel/bufferpool: Broken for more than 6 months
2016-07-04 devel/ifd-test: Broken for more than 6 months
2016-07-04 devel/eric4: Broken for more than 6 months
2016-07-04 devel/uclmmbase: Broken for more than 6 months
2016-07-04 devel/obfuscatejs: Broken for more than 6 months
2016-07-04 devel/oniguruma: Broken for more than 6 months
2016-07-04 devel/libbnr: Broken for more than 6 months
2016-07-04 devel/c4: Broken for more than 6 months
2016-07-04 devel/memcheck: Broken for more than 6 months
2016-07-04 devel/liblcfg: Broken for more than 6 months
2016-07-04 devel/omake: Broken for more than 6 months
2016-07-04 devel/svndelta: Broken for more than 6 months
2016-07-04 devel/papp: Broken for more than 6 months
2016-07-04 devel/mk: Broken for more than 6 months
2016-07-04 devel/avltree: Broken for more than 6 months
2016-07-04 devel/cbind: Broken for more than 6 months
2016-07-04 devel/tclgetopts: Broken for more than 6 months
2016-07-04 devel/antlrworks: Broken for more than 6 months
2016-07-04 devel/acme: Broken for more than 6 months
2016-07-04 devel/libopensync022: Broken for more than 6 months
2016-07-04 archivers/epkg: Broken for more than 6 months
2016-07-04 print/enscriptfonts: Broken for more than 6 months
2016-07-04 print/mup: Broken for more than 6 months
2016-07-04 lang/lua-mode.el: Broken for more than 6 months
2016-07-04 lang/s9fes: Broken for more than 6 months
2016-07-04 lang/alisp: Broken for more than 6 months
2016-07-04 lang/intel2gas: Broken for more than 6 months
2016-07-04 lang/stalin: Broken for more than 6 months
2016-07-04 french/eric4: Depends on expiring devel/eric4
2016-07-04 textproc/exslt: Broken for more than 6 months
2016-07-04 textproc/xt: Broken for more than 6 months
2016-07-04 textproc/ssddiff: Broken for more than 6 months
2016-07-04 textproc/xslint: Broken for more than 6 months
2016-07-04 textproc/cbedic: Broken for more than 6 months
2016-07-04 textproc/tralics: Broken for more than 6 months
2016-07-04 textproc/docbookide.el: Broken for more than 6 months
2016-07-04 textproc/glpi-plugins-AdditionalReports: Broken for more than 6 months
2016-07-04 textproc/tdhkit: Broken for more than 6 months
2016-07-04 textproc/p5-Groonga-API: Broken for more than 6 months
2016-07-04 textproc/glpi-plugins-DataInjection: Broken for more than 6 months
2016-07-04 dns/ldnsm: Broken for more than 6 months
2016-07-04 japanese/guesswork-classic: Broken for more than 6 months
2016-07-04 japanese/texinfo: Broken for more than 6 months
2016-07-04 japanese/jyuroku: Broken for more than 6 months
2016-07-04 japanese/mtools: Broken for more than 6 months
2016-07-04 palm/pdbar: Broken for more than 6 months
2016-07-04 graphics/gplot: Broken for more than 6 months
2016-07-04 graphics/white_dune: Broken for more than 6 months
2016-07-04 graphics/whirlgif: Broken for more than 6 months
2016-07-04 graphics/libaux: Broken for more than 6 months
2016-07-04 graphics/import-pictures: Broken for more than 6 months
2016-07-04 math/xgobi: Broken for more than 6 months
2016-07-04 math/fricas: Broken for more than 6 months
2016-07-04 math/dcdflib: Broken for more than 6 months
2016-07-04 math/libneural: Broken for more than 6 months
2016-07-04 math/open-axiom: Broken for more than 6 months
2016-07-04 irc/nefarious: Broken for more than 6 months
2016-07-04 irc/slirc: Broken for more than 6 months
2016-07-04 irc/ratbox-respond: Broken for more than 6 months
2016-07-04 irc/qwebirc: Broken for more than 6 months
2016-07-04 biology/platon: Broken for more than 6 months
2016-07-04 news/slnr: Broken for more than 6 months
2016-07-04 science/jmol: Broken for more than 6 months
2016-07-04 net/nstxd: Broken for more than 6 months
2016-07-04 net/sprinkle: Broken for more than 6 months
2016-07-04 editors/ssam: Broken for more than 6 months
2016-07-04 editors/fb: Broken for more than 6 months
2016-07-04 misc/quotes: Broken for more than 6 months
2016-07-04 misc/boxquote.el: Broken for more than 6 months
2016-07-04 misc/pypanda: Broken for more than 6 months
2016-07-04 misc/cuecat: Broken for more than 6 months
2016-07-04 deskutils/displaycalibrator: Broken for more than 6 months
2016-07-04 german/eric4: Depends on expiring devel/eric4
2016-07-04 multimedia/vic: Depends on expiring devel/uclmmbase
2016-07-04 multimedia/ggrab: Broken for more than 6 months
2016-07-04 emulators/dynamips: Broken for more than 6 months
2016-07-04 emulators/dynamips-devel: Broken for more than 6 months
2016-07-04 emulators/sim6811: Broken for more than 6 months
2016-07-04 emulators/minivmac: Broken for more than 6 months
2016-07-04 cad/qcad-partslib: Broken for more than 6 months
2016-07-04 comms/dump1090_mr: Broken for more than 6 months
2016-07-04 x11-fm/asfiles: Depends on expiring x11/libdnd
2016-07-04 x11-fonts/fonts-te: Broken for more than 6 months
2016-07-04 sysutils/rsyncmanager: Broken for more than 6 months
2016-07-04 sysutils/jfbterm: Broken for more than 6 months
2016-07-04 sysutils/daedalus: Broken for more than 6 months
2016-07-04 sysutils/pcfclock: Broken for more than 6 months
2016-07-04 sysutils/vlogger: Broken for more than 6 months
2016-07-04 sysutils/bontmia: Broken for more than 6 months
2016-07-04 mail/pop3gwd: Broken for more than 6 months
2016-07-04 mail/mailtray: Broken for more than 6 months
2016-07-04 mail/pflogstats: Broken for more than 6 months
2016-07-04 mail/exact: Broken for more than 6 months
2016-07-04 mail/wmpop3: Broken for more than 6 months
2016-07-04 mail/qmail-conf: Broken for more than 6 months
2016-07-04 mail/gld: Broken for more than 6 months
2016-07-04 mail/dsbl-testers: Broken for more than 6 months
2016-07-04 mail/vqregister: Broken for more than 6 months
2016-07-04 mail/atmail: Broken for more than 6 months
2016-07-04 mail/ml: Broken for more than 6 months
2016-07-04 net-im/icb: Broken for more than 6 months
2016-07-04 net-im/cicquin: Broken for more than 6 months
2016-07-04 net-im/pidgin-manualsize: Broken for more than 6 months
2016-07-04 net-im/pidgin-rhythmbox: Broken for more than 6 months
2016-07-04 russian/eric4: Depends on expiring devel/eric4
2016-07-04 russian/fortune-bashorgru: Broken for more than 6 months
2016-07-04 www/xpi-clearfields: Broken for more than 6 months
2016-07-04 www/pecl-varnish: Broken for more than 6 months
2016-07-04 www/py-requests-oauth-hook: Broken for more than 6 months
2016-07-04 www/hudson: Broken for more than 6 months
2016-07-04 www/xpi-mldonkey: Broken for more than 6 months
2016-07-04 www/xpi-cookiesafe: Broken for more than 6 months
2016-07-04 www/trac-mastertickets: Broken for more than 6 months
2016-07-04 www/dotclear: Broken for more than 6 months
2016-07-04 www/ruby-wgettsv: Broken for more than 6 months
2016-07-04 www/wwwstat: Broken for more than 6 months
2016-07-04 www/xpi-prism: Broken for more than 6 months
2016-07-04 www/xpi-fasterfox: Broken for more than 6 months
2016-07-04 www/siteframe: Broken for more than 6 months
2016-07-04 www/py-urljr: Broken for more than 6 months
2016-07-04 www/reviewboard: Broken for more than 6 months
2016-07-04 www/xpi-tabletools: Broken for more than 6 months
2016-07-04 www/wikindx: Broken for more than 6 months
2016-07-04 www/typolight: Broken for more than 6 months
2016-07-04 www/varnish-libvmod-header: Broken for more than 6 months
2016-07-04 www/xpi-gbrain: Broken for more than 6 months
2016-07-04 www/trac-robotstxt: Broken for more than 6 months
2016-07-04 www/simplog: Broken for more than 6 months
2016-07-04 www/chtml: Broken for more than 6 months
2016-07-04 databases/postgresql_autodoc: Broken for more than 6 months
2016-07-04 databases/oracle_odbc_driver: Broken for more than 6 months
2016-07-04 databases/mysql-xql: Broken for more than 6 months
2016-07-04 databases/mysql-udf-sys: Broken for more than 6 months
2016-07-04 games/lucidlife: Broken for more than 6 months
2016-07-04 games/gma: Broken for more than 6 months
2016-07-04 games/smiley: Broken for more than 6 months
2016-07-04 games/noegnud-littlehack: Broken for more than 6 months
2016-07-04 games/sdlquake2: Broken for more than 6 months
2016-07-04 games/daimonin: Depends on expiring games/daimonin-music
2016-07-04 games/noegnud-nethack: Broken for more than 6 months
2016-07-04 games/xbomber: Broken for more than 6 months
2016-07-04 games/xwelltris: Broken for more than 6 months
2016-07-04 games/ftjava: Broken for more than 6 months
2016-07-04 games/daimonin-music: Broken for more than 6 months
2016-07-04 games/gno3dtet: Broken for more than 6 months
2016-07-04 games/qtv: Broken for more than 6 months
2016-07-04 games/xwordpy: Broken for more than 6 months
2016-07-04 games/netris: Broken for more than 6 months
2016-07-04 games/rt2-demo: Broken for more than 6 months
2016-07-04 games/noegnud-addons: Broken for more than 6 months
2016-07-04 games/noegnud-nethack-deet: Broken for more than 6 months
2016-07-04 games/live-f1: Broken for more than 6 months
2016-07-04 games/xonix: Broken for more than 6 months
2016-07-04 games/fgkicker: Broken for more than 6 months
2016-07-04 games/tank: Depends on expiring graphics/libaux
2016-07-04 games/linux-nwserver: Broken for more than 6 months
2016-07-04 games/quake2-zaero: Broken for more than 6 months
2016-07-04 games/pyching: Broken for more than 6 months
2016-07-04 games/thevalley: Broken for more than 6 months
2016-07-04 games/xroads: Broken for more than 6 months
2016-07-04 games/fxsudoku: Broken for more than 6 months
2016-07-04 games/sudoku: Broken for more than 6 months
2016-07-04 games/kmancala: Broken for more than 6 months
2016-07-04 games/plonx: Broken for more than 6 months
2016-07-04 games/wmminichess: Broken for more than 6 months
2016-07-04 games/noegnud-slashem: Broken for more than 6 months
2016-07-04 games/latrine: Broken for more than 6 months
2016-07-04 games/pysycache-themes: Broken for more than 6 months
2016-07-04 games/nibbles: Broken for more than 6 months
2016-07-04 games/hlstatsx: Broken for more than 6 months
2016-07-04 audio/streamtuner: Broken for more than 6 months
2016-07-04 audio/mangler: Broken for more than 6 months
2016-07-04 audio/hawkvoice: Broken for more than 6 months
2016-07-04 audio/alac: Broken for more than 6 months
2016-07-04 x11-wm/e-module-mpdule: Broken for more than 6 months
2016-07-04 x11-wm/e-module-tclock: Broken for more than 6 months
2016-07-04 x11-wm/musca: Broken for more than 6 months
2016-07-04 x11-wm/e-module-places: Broken for more than 6 months
2016-07-04 x11-wm/e-module-forecasts: Broken for more than 6 months
2016-07-04 x11-wm/e-module-net: Broken for more than 6 months
2016-07-04 x11-wm/e-module-penguins: Broken for more than 6 months
2016-07-04 ftp/fget: Broken for more than 6 months
2016-07-04 net-mgmt/netmond: Broken for more than 6 months
2016-07-04 net-mgmt/ipfm: Broken for more than 6 months
2016-07-04 20:48:23 +00:00
Martin Matuska
c8e9a198c2 Horde package update:
comms/pear-Horde_ActiveSync 2.33.3 -> 2.35.0
devel/pear-Horde_Core 2.23.0 -> 2.24.0
www/pear-Horde_Form 2.0.13 -> 2.0.14
www/pear-Horde_Http 2.1.6 -> 2.1.7
mail/pear-Horde_Imap_Client 2.29.7 -> 2.29.8
mail/pear-Horde_Mime 2.9.5 -> 2.10.0
security/pear-Horde_Share 2.0.10 -> 2.1.0
devel/pear-Horde_Util 2.5.7 -> 2.5.8
2016-07-01 22:05:48 +00:00
Antoine Brodin
0a7ad9709c Fix packaging
Reported by:	pkg-fallout
2016-06-25 11:26:18 +00:00
Baptiste Daroussin
05422fd651 Prefer relative links to make packages more relocation friendly 2016-06-23 07:09:57 +00:00
Mathieu Arnold
68437eea6b Update to 0.61.
Sponsored by:	Absolight
2016-06-22 13:36:09 +00:00
Mathieu Arnold
7ae7b018cc With the power of USES=dos2unix, get rid of most patches and files
with CRLF.

While there, run make makepatch, rename patches to use the new scheme,
and various fixes.

With hat:	portmgr
Sponsored by:	Absolight
2016-06-20 16:23:28 +00:00
Diane Bruce
aabebce154 comms/qsstv uses the substitution %%QT_LIBDIR%% [=relative path
to Qt libraries] by mistake [that's devel/qca/pkg-plist.qt5].
The attached patch replaces this everywhere by "lib".

Well. This was rather bogus.
-%%PORTDOCS%%%%DOCSDIR%%/manual/ca%%QT_LIBDIR%%ration.png
+%%PORTDOCS%%%%DOCSDIR%%/manual/calibration.png

PR:		ports/210112
Submitted by:	tcberner@gmail.com
2016-06-08 13:38:09 +00:00
Diane Bruce
638eb974e9 Cleanup a bit by passing necessary CMAKE_INSTALL_RPATH in Makefile 2016-06-03 20:10:02 +00:00
Antoine Brodin
c31defa0fc Deprecate ports broken for more than 6 months 2016-06-03 16:44:58 +00:00
Martin Matuska
7f8107a9bd Add missing ctype dependency for Horde_ActiveSync 2016-06-03 08:18:18 +00:00
Martin Matuska
51db789661 Horde package update:
comms/pear-Horde_ActiveSync 2.32.0 -> 2.33.3
mail/pear-Horde_Imap_Client 2.29.6 -> 2.29.7
mail/pear-Horde_Mime 2.9.4 -> 2.9.5
www/horde-ansel 3.0.4 -> 3.0.5
2016-06-01 23:07:51 +00:00
Mathieu Arnold
77f8276a88 Github cleanup.
- Use the version tag instead of commit hash when they're the same.
- Remove unnneeded variables.
- Simplify go- ports when possible.
- Various fixes.

Sponsored by:	Absolight
2016-06-01 13:15:36 +00:00
Diane Bruce
92fe8b5a76 Summary: comms/svxlink: Fix build with libc++ 3.8.0
During the exp-run in bug 208158, it was found that comms/svxlink gives errors
with libc++ 3.8.0 [1]:

/wrkdirs/usr/ports/comms/svxlink/work/svxlink-15.11/src/async/audio/AsyncAudioDe
+viceAlsa.cpp:551:7:
error: call to 'abs' is ambiguous
  if (::abs(real_rate - sample_rate) > 100)
      ^~~~~

This is because abs() is being called with an unsigned argument.  Fix this by
casting 'real_rate' to int, since it was assigned from 'sample_rate' anyhow.

PR:		ports/209371
Reported by:	@dim
2016-05-28 15:30:41 +00:00
Rene Ladan
059340ceb7 Remove expired misc/kdehier4 and update all of its consumers to not reference it any
longer. This is a no-op because KDE4_PREFIX is equal to LOCALBASE

Fix up properties for misc/kde4-l10n/files/bsd.l10n.mk to make svn happy.

PR:		209014 (partial)
Submitted by:	myself
Approved by:	portmgr (bapt)
Differential Revision:	https://reviews.freebsd.org/D6542
2016-05-25 20:56:06 +00:00
Vanilla I. Shu
d1cbdf8598 Update to 2.6. 2016-05-25 16:09:55 +00:00
Vanilla I. Shu
ce36820918 Update to 1.37.3. 2016-05-25 15:49:00 +00:00
Dmitry Marakasov
c86e9d9724 Remove NLS, DOCS, EXAMPLES and IPV6 from OPTIONS_DEFAULT, they are enabled by default anyway and don't need to be listed
Approved by:	portmgr blanket
2016-05-23 20:35:01 +00:00
Dmitry Marakasov
54a08f6954 Convert tab after WWW: in pkg-descrs to single space as per PHB
Approved by:	portmgr blanket
2016-05-23 18:36:52 +00:00
Dmitry Marakasov
e87a8bd319 - Fix trailing whitespace in pkg-messages
Approved by:	portmgr blanket
2016-05-19 11:09:14 +00:00
Dmitry Marakasov
1d1f878054 - Fix trailing whitespace in pkg-descrs, categories [a-f]*
Approved by:	portmgr blanket
2016-05-19 10:21:23 +00:00
Stephen Hurd
d077b0c2a3 Fix build under poudriere
Poudriere doesn't make dependencies listed in BUILD_DEPENDS available
during the patch phase.  Add a PATCH_DEPENDS entry to work-around this
issue.
2016-05-19 02:09:48 +00:00
Baptiste Daroussin
0fca21d334 Prevent collision with getline(3) 2016-05-13 18:45:43 +00:00
Martin Matuska
1ca7a8cb8d Horde package update:
comms/pear-Horde_ActiveSync 2.31.8 -> 2.32.0
www/pear-Horde_Css_Parser 1.0.9 -> 1.0.10
2016-05-13 08:55:36 +00:00
Baptiste Daroussin
69da47a9de Prevent collision with getline(3)
While here regen patches
2016-05-11 22:07:52 +00:00
Stephen Hurd
24bd216d00 Update to latest release
Fix relative paths to share directory.
Use DATADIR in the software instead of constructing it from PREFIX.
2016-05-10 09:16:40 +00:00
Rene Ladan
abae7b71c8 comms/dcf77pi: update to version 3.5.0
- pin numbers are now 16 bits
- rename some functions to not confuse Doxygen
- make some functions public
2016-05-02 20:27:40 +00:00
Diane Bruce
4693baba3d Fix incorrect comment and while here add LICENSE 2016-04-30 00:26:00 +00:00
Steve Wills
462519941e Convert USES=gem:autoplist to USES=gem since autoplist is default 2016-04-27 21:57:31 +00:00
Ganael LAPLANCHE
3df56b21ed Fix runtime error due to missing rpath
PR:		209073
Submitted by:	Zane C. Bowers-Hadley <vvelox@vvelox.net>
2016-04-27 21:25:13 +00:00
Steve Wills
b3e8fe8d85 create USES=gem and update rubygem- ports to use it
Note that for now ports still have to have USE_RUBY=yes to use USES=gem

PR:		209041
Differential Revision:	https://reviews.freebsd.org/D6070
2016-04-27 16:36:41 +00:00
Guido Falsi
8944a8a131 Convert to USES=mysql 2016-04-26 21:13:51 +00:00
Diane Bruce
de90917e70 Add back libfec
Remove support for obsolete FreeBSD versions
Reassign maintainer to hamradio@
Cleanups to make sure it compiles cleanly on clang and gcc
Cleanup to (hopefully) allow building on non x86 architectures (untested)
2016-04-25 19:45:33 +00:00
Stephen Hurd
7aafab50b7 Fix LoTW export and Preferences
We can't directly patch .lrs files since they use length/value strings.
Instead, patch the form and regenerate the resource file.
2016-04-25 11:08:12 +00:00
Stephen Hurd
3bbd14adee Update to latest release 2016-04-24 21:36:22 +00:00
Stephen Hurd
80308da64c Fix typo in previous commit affecting rotctrl commandline 2016-04-24 21:34:02 +00:00
Stephen Hurd
ba8ec99300 Update to latest release
Remove expansion of lat/lon field as upstream says it will never be
necessary again.
2016-04-24 21:29:32 +00:00
Rene Ladan
37ac791a5b Remove expired ports:
2016-04-11 deskutils/qlabels: Does not fetch, unmaintained
2016-04-14 french/tvdownloader: Many channels have modified their protocols and cannot be DL anymore
2016-04-14 comms/cdr_read: unfetchable
2016-04-14 russian/rubygem-rutils: Deprecated by upstream
2016-04-14 devel/rubygem-dotenv-deployment: Deprecated by upstream in latest version (0.3.0)
2016-04-15 www/p5-LWP-ConsoleLogger: Depends on expiring www/p5-HTTP-CookieMonster
2016-04-15 www/p5-WWW-Mechanize-Cached: Depends on expiring www/p5-HTTP-CookieMonster
2016-04-15 www/p5-HTTP-CookieMonster: Broken for more than 6 months
2016-04-15 misc/diary-hercules: Broken for more than 6 months
2016-04-15 graphics/ffff: Broken for more than 6 months
2016-04-15 net-im/sigram: Broken for more than 6 months
2016-04-15 games/annelid: Broken for more than 6 months
2016-04-15 science/py-pydap: Broken for more than 6 months
2016-04-15 sysutils/su2: Broken for more than 6 months
2016-04-15 www/download-gemist: Broken for more than 6 months
2016-04-15 databases/p5-qdbm: Broken for more than 6 months
2016-04-15 comms/libfec: Broken for more than 6 months
2016-04-15 deskutils/ladon: Broken for more than 6 months

Sponsored by:	Essen Linuxhotel Hackathon 2016
2016-04-23 15:15:44 +00:00
Steve Wills
86cd4fbe5a many ports: mark broken on powerpc64 2016-04-21 16:43:14 +00:00
Mathieu Arnold
73628f8ea3 Update to 1.37.2
PR:		208863
Submitted by:	tkato432 yahoo com
Sponsored by:	Absolight
2016-04-18 14:06:44 +00:00
Alexey Dokuchaev
d428f6652c - Add missing `_build' suffix to USE_QT5's buildtools and linguisttools
components and remove second entry of printsupport
- Wrap one overly long command in the installation recipe
- Properly terminate sentence with a dot and merge two paragraphs in the
  port description text: they are closely coupled and extra pause is not
  warranted there, plus first one consisted of just one sentence
2016-04-16 15:31:15 +00:00
Stephen Hurd
fd4835a119 Fix pkg-fallout error and update to latest release
Add dependency on multimedia/libv4l and qt5-widgets
Sort LIB_DEPENDS
Add patch to fix issue reported by db@
2016-04-12 03:45:44 +00:00
Stephen Hurd
8ec8369d5e Fix error reported by pkg-fallout
Apparently, setting USES=zip doesn't mean you can use UNZIP_CMD in targets
after extract.

Take this opportunity to remove post-patch target.
2016-04-12 03:26:52 +00:00
Sean Bruno
429cff285c Update comms/amtterm to upstream version 1.4
Drop patch files as they are included in this revisision.

Reviewed by:	crees mat
Differential Revision:	https://reviews.freebsd.org/D5876
2016-04-11 17:01:44 +00:00
Stephen Hurd
6514784215 New port: "Yet Another APRS Client" - A Java-based graphical APRS client.
YAAC can be used as a stand-alone APRS client, an APRS RF-Internet gateway
(I-Gate), or as a AX.25 digipeater. It supports 16 different data reporting
views as delivered, and can be extended with user-written "plugins" to add
more functionality. YAAC's map rendering does not depend on Internet
connectivity, so it can be used wherever a portable computer and radio/TNC
can be located.
2016-04-11 05:16:56 +00:00
Stephen Hurd
31c19da0b3 Update to latest release 2016-04-10 22:33:00 +00:00
Stephen Hurd
93b24289aa Update to latest release.
DOCS option is back, hopefully it'll stay.
Jasper has been switched out for OpenJPEG.
2016-04-10 21:54:40 +00:00
Stephen Hurd
69195e1f58 Fix Make fails with a 32bit architecture.
Also, add strip.

PR:		200042
Submitted by:	takefu@airport.fm
2016-04-08 07:31:44 +00:00
Stephen Hurd
8bc477a5e1 Fix plist when Python 3 is the default
USE_PYTHON=	py3kplist
fixes the issue with files going into __pycache__ on 3.x but not on 2.x
2016-04-08 07:15:48 +00:00
Stephen Hurd
ebba1da1cf Change maintainer of my ham radio ports to hamradio@ 2016-04-08 04:26:33 +00:00
Stephen Hurd
048318ce04 Update to latest release 2016-04-08 04:17:36 +00:00
Stephen Hurd
0e68c6ed4c Bump PORTREVISION for Hermes change 2016-04-08 03:34:12 +00:00
Stephen Hurd
724e3ee7e7 Add subdirectory for Hermes
-- was already there, just not included in the setup.py file for some reason

PR:		208595
Submitted by:	Jeffery Baitis <jeff@baitis.net>
2016-04-08 03:33:36 +00:00
Stephen Hurd
cd6e2f7fc1 Don't use the include mysql module
This module does not work with FPC-3.x and causes errors when connecting to
the database.

Bump PORTREVISION
2016-04-08 02:29:17 +00:00
Stephen Hurd
e043035562 Copy the dist file into WRKSRC and run BRANDELF there
Install using the default BINMODE
Bump PORTREVISION so it becomes executable for users
2016-04-08 00:20:09 +00:00
Diane Bruce
76225da07c Fix so it does not core on 10.x (shurd@)
Add missing dependancy so it builds man pages and user manual (db@)
Since they are using Sourceforge, clean up distfiles (db@)

No binary changes.

Reviewed by:	shurd,db
2016-04-08 00:08:39 +00:00
Stephen Hurd
8fcaf61ea5 Update to latest release 2016-04-08 00:00:17 +00:00
Stephen Hurd
9e26db101c Update to latest release 2016-04-07 23:48:47 +00:00
Stephen Hurd
4742634d66 Update svxlink/qtel to latest release 2016-04-07 20:17:54 +00:00
Stephen Hurd
b65777a2b8 Update to latest release 2016-04-07 12:07:37 +00:00
Stephen Hurd
5471276f34 Update to latest release
Now uses Qt5
2016-04-07 11:52:21 +00:00
Martin Matuska
e5969a5eea Horde package update:
security/pear-Horde_Auth 2.1.11 -> 2.1.12
security/pear-Horde_Crypt 2.7.2 -> 2.7.3
www/pear-Horde_Css_Parser 1.0.8 -> 1.0.9
www/pear-Horde_Dav 1.1.2 -> 1.1.3
mail/pear-Horde_ListHeaders 1.2.3 -> 1.2.4
sysutils/pear-Horde_Log 2.1.3 -> 2.2.0
devel/pear-Horde_Nls 2.1.1 -> 2.2.0
comms/pear-Horde_SyncMl 2.0.6 -> 2.0.7
mail/horde-imp 6.2.13 -> 6.2.14
mail/horde-ingo 3.2.9 -> 3.2.10
deskutils/horde-nag 4.2.8 -> 4.2.9
devel/horde-timeobjects 2.1.1 -> 2.1.2
mail/horde-turba 4.2.13 -> 4.2.14
mail/horde-webmail 5.2.13 -> 5.2.14
deskutils/horde-groupware 5.2.13 -> 5.2.14
2016-04-07 07:24:32 +00:00
Stephen Hurd
b172236f5e Add new translations 2016-04-07 03:38:35 +00:00
Stephen Hurd
4081a2e55e Update to latest release 2016-04-07 03:33:32 +00:00
Dimitry Andric
c90f2c74e6 During the exp-run in bug 208158, it was found that comms/telldus-core
gives errors with libc++ 3.8.0 [1]:

/wrkdirs/usr/ports/comms/telldus-core/work/telldus-core-2.1.2/service/ProtocolNexa.cpp:59:8: error: call to member function 'insert' is ambiguous
                        str.insert(0, 1, 2);  // Repeat two times
                        ~~~~^~~~~~

This is because the third argument to this std::string method is
supposed to be a char, not an integer.  Fix it by using '\x2' instead.

[1] http://package18.nyi.freebsd.org/data/headamd64PR208158-default/2016-03-22_18h30m05s/logs/errors/telldus-core-2.1.2_1.log

Approved by:	johan@stromnet.se (maintainer)
PR:		208523
MFH:		2016Q2
2016-04-04 19:00:23 +00:00
Diane Bruce
01d387ff38 Upgrade to wsjtx 1.6.0
For quick reference, here's a short list of features and capabilities added
to WSJT-X since Version 1.5.0:

WSPR mode, including coordinated automatic band-hopping and a new
two-pass decoder that can decode overlapping signals.

EME-motivated features including JT4 (submodes A-G), Echo mode, and
automatic Doppler tracking. The JT4 decoder is more sensitive than
that in the latest WSJT, and message averaging is fully automated.
(Note that submodes JT65B and JT65C are also present in Version 1.6,
but the high-sensitivity decoder required for EME with JT65
is not yet included.)

Tools for accurate frequency calibration of your radio, so you can
be always on-frequency to within about 1 Hz.

Mode-specific standard working frequencies accessible from the
drop-down band selector.

A number of corrections to the Hamlib library, fixing balky rig-control
features. A few unreliable features peculiar to particular radios
have been removed.

Working around bugs with a2x for now

PR:			ports/208350
Submitted by:		takefu@airport.fm
2016-04-03 20:23:39 +00:00
Mathieu Arnold
7f4572eae4 Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.
With hat:	portmgr
Sponsored by:	Absolight
2016-04-01 13:29:15 +00:00
Mathieu Arnold
999161a9ed Fixup some whitespace at the beginning of lines problems.
With hat:	portmgr
Sponsored by:	Absolight
2016-04-01 13:18:17 +00:00
Diane Bruce
e58fd3ee25 Missed a webkit in USE_QT5 mea culpa
Reviewed by:	jeff@baitis.net
Approved by:	jeff@baitis.net
2016-03-31 02:27:07 +00:00
Diane Bruce
c98ccae7fd "can't find the Python and f2py and fail to build"
Patch provided hard codes the full python path to use.

PR:		ports/208274
Submitted by:	takefu@airport.fm
2016-03-25 14:35:34 +00:00
Diane Bruce
17f895f94c Ok, really fix cqrlog. Add missing fpc units. 2016-03-25 02:50:39 +00:00
Tijl Coosemans
77760fcb63 Make print/ghostscript9-agpl-base the default Ghostscript port. Upstream
changed the license to the AGPL 3 in version 9.07 so print/ghostscript9-base
is stuck at 9.06 which is almost 4 years old now.

Fix the logic in Uses/ghostscript.mk so "agpl" is treated as a real version
on its own instead of as a variant of other versions.

Fix print/ghostscript9-agpl-base to install eps2write.

Update math/asymptote to 2.37 to support newer Ghostscript.

PR:		208159
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2016-03-24 15:47:50 +00:00
Martin Matuska
75bb4aa2d7 Horde package update:
comms/pear-Horde_ActiveSync 2.31.2 -> 2.31.8
devel/pear-Horde_Alarm 2.2.6 -> 2.2.7
www/pear-Horde_Browser 2.0.11 -> 2.0.12
devel/pear-Horde_Cache 2.5.2 -> 2.5.3
archivers/pear-Horde_Compress 2.1.4 -> 2.1.5
devel/pear-Horde_Core 2.22.6 -> 2.23.0
security/pear-Horde_Crypt 2.7.0 -> 2.7.2
devel/pear-Horde_Date 2.2.0 -> 2.3.0
devel/pear-Horde_Exception 2.0.7 -> 2.0.8
www/pear-Horde_Form 2.0.12 -> 2.0.13
security/pear-Horde_Group 2.1.0 -> 2.1.1
devel/pear-Horde_Icalendar 2.1.3 -> 2.1.4
graphics/pear-Horde_Image 2.3.4 -> 2.3.5
mail/pear-Horde_Imap_Client 2.29.5 -> 2.29.6
devel/pear-Horde_Itip 2.1.1 -> 2.1.2
textproc/pear-Horde_JavascriptMinify 1.1.2 -> 1.1.3
devel/pear-Horde_LoginTasks 2.0.6 -> 2.0.7
mail/pear-Horde_Mail_Autoconfig 1.0.2 -> 1.0.3
mail/pear-Horde_Mapi 1.0.6 -> 1.0.8
mail/pear-Horde_Mime 2.9.3 -> 2.9.4
mail/pear-Horde_Mime_Viewer 2.1.2 -> 2.1.3
devel/pear-Horde_Nls 2.1.0 -> 2.1.1
security/pear-Horde_Perms 2.1.6 -> 2.1.7
devel/pear-Horde_Prefs 2.7.5 -> 2.7.6
net/pear-Horde_Rpc 2.1.6 -> 2.1.7
security/pear-Horde_Share 2.0.8 -> 2.0.10
mail/pear-Horde_Smtp 1.9.2 -> 1.9.3
net/pear-Horde_Socket_Client 2.1.0 -> 2.1.1
textproc/pear-Horde_Text_Filter 2.3.3 -> 2.3.4
devel/pear-Horde_Timezone 1.0.10 -> 1.0.11
devel/pear-Horde_Token 2.0.8 -> 2.0.9
sysutils/pear-Horde_Vfs 2.3.1 -> 2.3.2
www/horde-ansel 3.0.3 -> 3.0.4
ftp/horde-gollem 3.0.7 -> 3.0.8
www/horde-base 5.2.9 -> 5.2.10
mail/horde-imp 6.2.12 -> 6.2.13
mail/horde-ingo 3.2.8 -> 3.2.9
deskutils/horde-kronolith 4.2.15 -> 4.2.16
deskutils/horde-mnemo 4.2.9 -> 4.2.10
deskutils/horde-nag 4.2.7 -> 4.2.8
www/horde-trean 1.1.4 -> 1.1.5
mail/horde-turba 4.2.12 -> 4.2.13
mail/horde-webmail 5.2.12 -> 5.2.13
deskutils/horde-groupware 5.2.12 -> 5.2.13
www/horde-wicked 2.0.4 -> 2.0.5
2016-03-24 07:39:22 +00:00
Diane Bruce
beffdfbcda Mark as BROKEN ON I386 with CURRENT for now.
There is a later version of the USRP code available. Time and effort
is better spent on that.
2016-03-23 22:39:51 +00:00
Diane Bruce
a26971f32f Changed lazbuild to lazarus in BUILD_DEPENDS to fix build as user.
No other changes.

Submitted by:		pkg-fallout@
2016-03-23 14:38:55 +00:00
Diane Bruce
ee082fbd54 A WSPR receiver/decoder using libsdr. This implementation embeds the original
WSPR Fortran code into a libsdr processing node, allowing to assemble a WSPR
receiver for various sources easily.

WWW: https://github.com/hmatuschek/sdr-wspr

PR:		207381
Submitted by:	Jeffrey Baitis <jeff@baitis.net>
2016-03-19 19:53:02 +00:00
Raphael Kubo da Costa
d7c7d942f7 Add a patch to fix the build with CMake 3.5.0.
Starting with CMake 3.5.0, overriding CMAKE_{BINARY,SOURCE}_DIR does not
propagate to other files included with add_subdirectories(); in fact, doing so
should in general be avoided.

Add a patch to use PROJECT_{BINARY,SOURCE}_DIR instead, which works with all
CMake versions.

This is also being discussed upstream in
<https://github.com/gnuradio/volk/pull/65>.

PR:		208033
Obtained from:	Fedora Project
2016-03-19 14:21:39 +00:00
Diane Bruce
b3a11b78cd As Jeff's baitisj@pcbsd.org keeps bouncing, replace with a working email
Approved by:	baitisj@pcbsd.org via email
2016-03-18 22:42:21 +00:00
Jose Alonso Cardenas Marquez
ba6fa77924 - Update to 1.9.1 2016-03-17 20:28:05 +00:00
Raphael Kubo da Costa
4fc98b4698 Deprecate and expire in month.
Unmaintained since 2004, and the website no longer exists.
2016-03-14 21:45:12 +00:00
Mark Felder
b3909d5c4d comms/qpage: Resurrect port
- New MASTER_SITE
- New MAINTAINER
- Change to USES=tar:Z
- Regenerate patches

PR:		206321
2016-03-14 14:39:15 +00:00
Antoine Brodin
989bb4c20d Deprecate ports broken for more than 6 months 2016-03-13 18:45:42 +00:00
Mark Felder
572f7e6dce comms/qtel: Fix packaging issue 2016-03-10 15:42:14 +00:00
Olivier Cochard
ada7fb664c - patch for main deforaos library
- bump PORTREVISION for dependencies

Approved by:	jadawin
Differential Revision:	https://reviews.freebsd.org/D5562
2016-03-08 10:24:06 +00:00
Koop Mast
a5a6039a03 Update svxlink to 14.08.2.
This update contains commits so it builds with c++11. This is needed
for the libsigc++20 update to 2.6, which has a hard requirement on a c++11
compiler. As such add USES=compiler:c++11-lib.

PR:		207514
Approved by:	hamradio@ (db@)
2016-03-05 23:59:21 +00:00
Raphael Kubo da Costa
e628c12f71 Update to 3.1p1.
PR:		206959
Submitted by:	osidorkin@gmail.com
Approved by:	johan@stromnet.se (maintainer)
2016-03-05 20:36:18 +00:00
Raphael Kubo da Costa
98b144714e Update to 0.5.
PR:		207609
Submitted by:	takefu@airport.fm (maintainer)
2016-03-03 10:28:42 +00:00
Li-Wen Hsu
34c03267a7 - Update to 0.02
PR:		a207237
Submitted by:	Wnlin <heavenruler@gmail.com>
Approved by:	Jui-Nan Lin <jnlin@freebsd.cs.nctu.edu.tw> (maintainer)
2016-03-02 09:59:26 +00:00
Li-Wen Hsu
9ff641729e - Update maintainer's email address
Submitted by:	maintainer (via facebook chat)
2016-03-02 05:41:03 +00:00
Vanilla I. Shu
9993e36dda 1: Update to 2.5.
2: switch to bzip2.
2016-03-02 03:53:52 +00:00
Diane Bruce
db3e77e4fa GUI functions (e.g. waterfall) for libsdr, a simple software defined radio
(SDR) library.

WWW: https://github.com/hmatuschek/libsdr-gui

PR:		207380
Submitted by:	Jeffrey Baitis <baitisj@pcbsd.org>
2016-03-01 03:42:23 +00:00
Diane Bruce
518a50b30b A simple software defined radio (SDR) library.
Although being simple, libsdr is sufficient to write a simple SDR receiver
application (github.com/hmatuschek/sdr-rx, above). This RX application
supports several input sources (i.e. sound card, files, RTL2382 dongles etc.)
and modes (i.e. AM, FM, SSB, CW, etc.).

WWW: https://github.com/hmatuschek/libsdr

PR:		207379
Submitted by:	Jeffrey Baitis <baitisj@pcbsd.org>
2016-03-01 03:41:14 +00:00
Raphael Kubo da Costa
98093689cc New port: comms/libcodec2.
Codec 2 is an open source (LGPL licensed) speech codec for 3200 bit/s
and below.

WWW: http://www.rowetel.com/codec2.html

PR:		203145
Submitted by:	takefu@airport.fm
2016-02-28 23:32:46 +00:00
Diane Bruce
d83b131731 oops I didn't. I did. I forgot to add some patches.
I'll just go sit in the corner with the pointy hat then.
2016-02-23 18:39:57 +00:00
Ganael LAPLANCHE
8352c14d3a Update to 2.5.3 2016-02-22 21:07:49 +00:00
Diane Bruce
2c99c062fb Update to 0.20
Clean up submitted patch to work with system clang compiler
Change to new upstream repository

PR:		ports/206705
Submitted by:	takefu@airport.fm
2016-02-20 17:21:29 +00:00
Guido Falsi
4be9ab4465 - Add sourceforce to MASTER_SITES
- Update WWW line in pkg-descr
2016-02-20 16:33:08 +00:00
Muhammad Moinur Rahman
fb7ce39864 comms/dfu-util: Update version 0.8=>0.9 2016-02-18 23:47:56 +00:00
Martin Wilke
42405a0878 - Switch to mysqli support 2016-02-18 03:29:17 +00:00
Olivier Cochard
dacef126af Update my email for ports I maintain
Approved by:	jadawin
Differential Revision:	https://reviews.freebsd.org/D5309
2016-02-17 10:42:08 +00:00
Martin Matuska
2a891ed50d Horde package update:
comms/pear-Horde_ActiveSync 2.31.1 -> 2.31.2
deskutils/horde-kronolith 4.2.13 -> 4.2.14
2016-02-15 13:22:19 +00:00
John Marino
6252bbf713 comms/wy60: document ncurses requirement (USES+=ncurses)
approved by:	infrastructure blanket
2016-02-07 00:07:53 +00:00
John Marino
6891b98d03 comms/unixcw: document ncurses requirement (USES+=ncurses)
link with ncurses, not curses

approved by:	infrastructure blanket
2016-02-07 00:03:17 +00:00
John Marino
d2df64e90b comms/qrq: document ncurses requirement (USES+=ncurses)
approved by:	infrastructure blanket
2016-02-06 23:58:42 +00:00
John Marino
df251950ef comms/predict: document ncurses requirement (USES+=ncurses)
approved by:	infrastructure blanket
2016-02-06 23:54:21 +00:00
John Marino
9a1d66859a x11/minicom: document ncurses requirement (USES+=ncurses)
Also link to ncurses, not curses.

approved by:	infrastructure blanket
2016-02-06 23:49:10 +00:00
John Marino
98a871e900 comm/ibp: document ncurses requirement (USES+=ncurses)
Also link libncurses, not libcurses.  While here, remove extra tabs

approved by:	infrastructure blanket
2016-02-06 23:44:54 +00:00
Vanilla I. Shu
1c45c158ab 1: Update to 1.37.0.2
2: remove RUN_DEPENDS to devel/cdialog.
2016-02-05 13:11:06 +00:00
Martin Matuska
6bfc8a357d Horde package update:
comms/pear-Horde_ActiveSync 2.30.6 -> 2.31.1
devel/pear-Horde_Core 2.22.5 -> 2.22.6
deskutils/horde-kronolith 4.2.12 -> 4.2.13
2016-02-04 10:37:41 +00:00
Martin Matuska
817ca149ff Horde package update:
comms/pear-Horde_ActiveSync 2.30.2 -> 2.30.6
devel/pear-Horde_Alarm 2.2.5 -> 2.2.6
devel/pear-Horde_Argv 2.0.11 -> 2.0.12
security/pear-Horde_Auth 2.1.10 -> 2.1.11
devel/pear-Horde_Autoloader 2.1.1 -> 2.1.2
www/pear-Horde_Browser 2.0.10 -> 2.0.11
devel/pear-Horde_Cache 2.5.0 -> 2.5.2
archivers/pear-Horde_Compress 2.1.3 -> 2.1.4
archivers/pear-Horde_Compress_Fast 1.1.0 -> 1.1.1
devel/pear-Horde_Constraint 2.0.2 -> 2.0.3
devel/pear-Horde_Controller 2.0.3 -> 2.0.4
devel/pear-Horde_Core 2.22.3 -> 2.22.5
security/pear-Horde_Crypt 2.6.1 -> 2.7.0
security/pear-Horde_Crypt_Blowfish 1.1.0 -> 1.1.1
www/pear-Horde_Css_Parser 1.0.7 -> 1.0.8
devel/pear-Horde_Data 2.1.3 -> 2.1.4
devel/pear-Horde_Date 2.1.1 -> 2.2.0
devel/pear-Horde_Date_Parser 2.0.4 -> 2.0.5
databases/pear-Horde_Db 2.3.0 -> 2.3.1
devel/pear-Horde_Exception 2.0.6 -> 2.0.7
www/pear-Horde_Feed 2.0.3 -> 2.0.4
www/pear-Horde_Form 2.0.11 -> 2.0.12
security/pear-Horde_Group 2.0.5 -> 2.1.0
databases/pear-Horde_HashTable 1.2.3 -> 1.2.4
devel/pear-Horde_History 2.3.5 -> 2.3.6
www/pear-Horde_Http 2.1.5 -> 2.1.6
devel/pear-Horde_Icalendar 2.1.2 -> 2.1.3
dns/pear-Horde_Idna 1.0.3 -> 1.0.4
graphics/pear-Horde_Image 2.3.3 -> 2.3.4
mail/pear-Horde_Imap_Client 2.29.4 -> 2.29.5
devel/pear-Horde_Injector 2.0.4 -> 2.0.5
devel/pear-Horde_Itip 2.1.0 -> 2.1.1
mail/pear-Horde_ListHeaders 1.2.2 -> 1.2.3
devel/pear-Horde_Lock 2.1.1 -> 2.1.2
sysutils/pear-Horde_Log 2.1.2 -> 2.1.3
devel/pear-Horde_LoginTasks 2.0.5 -> 2.0.6
mail/pear-Horde_Mail 2.6.2 -> 2.6.3
mail/pear-Horde_Mapi 1.0.5 -> 1.0.6
mail/pear-Horde_Mime 2.9.2 -> 2.9.3
mail/pear-Horde_Mime_Viewer 2.1.1 -> 2.1.2
devel/pear-Horde_Notification 2.0.3 -> 2.0.4
archivers/pear-Horde_Pack 1.0.5 -> 1.0.6
textproc/pear-Horde_Pdf 2.0.6 -> 2.0.7
devel/pear-Horde_Prefs 2.7.4 -> 2.7.5
devel/pear-Horde_Rdo 2.0.4 -> 2.0.5
www/pear-Horde_Routes 2.0.4 -> 2.0.5
net/pear-Horde_Rpc 2.1.5 -> 2.1.6
security/pear-Horde_Secret 2.0.5 -> 2.0.6
devel/pear-Horde_Serialize 2.0.4 -> 2.0.5
www/pear-Horde_SessionHandler 2.2.5 -> 2.2.7
security/pear-Horde_Share 2.0.7 -> 2.0.8
mail/pear-Horde_Smtp 1.9.1 -> 1.9.2
net/pear-Horde_Socket_Client 2.0.0 -> 2.1.0
textproc/pear-Horde_SpellChecker 2.1.2 -> 2.1.3
devel/pear-Horde_Stream 1.6.2 -> 1.6.3
devel/pear-Horde_Stream_Filter 2.0.3 -> 2.0.4
devel/pear-Horde_Stream_Wrapper 2.1.2 -> 2.1.3
devel/pear-Horde_Support 2.1.4 -> 2.1.5
comms/pear-Horde_SyncMl 2.0.5 -> 2.0.6
www/pear-Horde_Template 2.0.2 -> 2.0.3
textproc/pear-Horde_Text_Diff 2.1.1 -> 2.1.2
textproc/pear-Horde_Text_Filter 2.3.2 -> 2.3.3
textproc/pear-Horde_Text_Flowed 2.0.2 -> 2.0.3
devel/pear-Horde_Timezone 1.0.9 -> 1.0.10
devel/pear-Horde_Token 2.0.7 -> 2.0.8
devel/pear-Horde_Translation 2.2.0 -> 2.2.1
net/pear-Horde_Url 2.2.4 -> 2.2.5
devel/pear-Horde_Util 2.5.6 -> 2.5.7
sysutils/pear-Horde_Vfs 2.3.0 -> 2.3.1
devel/pear-Horde_View 2.0.5 -> 2.0.6
textproc/pear-Horde_Xml_Element 2.0.3 -> 2.0.4
textproc/pear-Horde_Xml_Wbxml 2.0.2 -> 2.0.3
ftp/horde-gollem 3.0.6 -> 3.0.7
www/horde-base 5.2.8 -> 5.2.9
mail/horde-imp 6.2.11 -> 6.2.12
mail/horde-ingo 3.2.7 -> 3.2.8
deskutils/horde-kronolith 4.2.11 -> 4.2.12
deskutils/horde-mnemo 4.2.8 -> 4.2.9
deskutils/horde-nag 4.2.6 -> 4.2.7
devel/horde-timeobjects 2.1.0 -> 2.1.1
www/horde-trean 1.1.3 -> 1.1.4
mail/horde-turba 4.2.11 -> 4.2.12
mail/horde-webmail 5.2.11 -> 5.2.12
devel/horde-whups 3.0.5 -> 3.0.6
2016-02-02 22:56:26 +00:00
Martin Wilke
a234e43dd7 Welcome Centos 6.7
- Upgrade all linux-c6- to CentOS 6.7
- Cleanups

PR:                     205846
Submitted by:           xmj
In Collaboration with:  allanjude, netchild, xmj
Exp-run:                antoine
Sponsored by:           Perceivon Hosting Inc.
Differential Revision:  D3428

We'd like to thanks for all the feedback and comments.
2016-01-30 18:30:40 +00:00
Kevin Lo
0b95084b78 Update to 20151219. 2016-01-28 07:13:54 +00:00
Ganael LAPLANCHE
b0a609bc05 Update to 2.5.2 2016-01-27 19:37:26 +00:00
Raphael Kubo da Costa
4c67812e01 Update Qt5 to 5.5.1.
This is the latest stable release at time of writing.

Release announcement: http://blog.qt.io/blog/2015/07/01/qt-5-5-released/
New features in Qt 5.5: https://wiki.qt.io/New_Features_in_Qt_5.5

As usual, huge thanks to Tobias Berner (tcberner@gmail.com) for all his work
on these ports in kde@'s experimental area51 repository. He's the one who
started the update and did a lot of the initial work on Qt 5.5. Ralf Nolden
(nolden@kde.org) has contributed the initial version of most of our new Qt5
ports.

Also thanks to Yuri Victorovich (yuri@rawbw.com) for contributing PR 205805
with his own patch for the 5.5.1 update. Some of his changes there prompted
additional fixes and changes present in the final patch generated from our
experimental repository.

New ports:
- comms/qt5-connectivity, comms/qt5-sensors, devel/qt5-location,
  graphics/qt5-3d, net/qt5-enginio, x11-toolkits/qt5-canvas3d,
  x11-toolkits/qt5-uiplugin.

General changes in all Qt5 ports:
- All Qt5 ports are now built with -Wl,--as-needed to avoid overlinking,
  which is a problem with qmake-based because the libraries passed to the
  linker come from the modules .pri files and many are not necessary.
- With this change, several ports had their USE_QT5 lines adjusted to
  explicitly include some libraries that were pulled in implicitly, and to
  exclude libraries no longer required with -Wl,--as-needed.

Changes in specific ports:
- devel/qt5: Drop the SQL_PLUGINS and TOOLS options and depend on all Qt5
  ports by default. It makes the Makefile much simpler, and those options
  were already on by default.
- devel/qt5-core: The clang+base libstdc++ workaround has been expanded and
  more C++11 features have been disabled when that combination is used by a
  port (basically, FreeBSD 9 with USES=compiler:c++11-lang). The disabled
  features have explanations for why they were disabled in the patched
  header itself.
- devel/qt5-designer: uiplugins has been split out following a similar
  change upstream. By depending on qt5-uiplugin, qt5-uitools avoids having
  to depend on the big qt5-designer port.
- multimedia/qt5-multimedia: The port now uses GStreamer 1.0 instead of
  0.10.
- net/qt5-network: The port now depends on libproxy for proxy settings.
  Using libproxy allows proxy settings to be read from different sources,
  and also allows .pac files to work with Qt.
- www/qt5-webkit: The port now uses GStreamer 1.0 instead of 0.10.

PR:		205805
PR:		206435
2016-01-24 18:10:14 +00:00
Raphael Kubo da Costa
e40992fcf3 Add patch to fix the build with the upcoming Qt 5.5.1.
./WFPalette.hpp:53:1: error: unknown type name 'Q_DECLARE_METATYPE'
  Q_DECLARE_METATYPE (WFPalette::Colours);
2016-01-21 10:45:01 +00:00
Diane Bruce
73f7f4accc Add libfap 1.5, c port for Ham::APRS::FAP Finnish APRS Parser Perl
module.

PR:		ports/206159
Submitted by:	akh@nobugware.com
2016-01-15 14:10:36 +00:00
Martin Wilke
bd30048413 - Update to 1.3
PR:		206277
Submitted by:	maintainer
2016-01-15 06:31:29 +00:00
Antoine Brodin
ce752798bf Fix LIB_DEPENDS
MFH:	2016Q1
2016-01-13 17:48:55 +00:00
Dmitry Marakasov
b9398223bd Convert LICENSE= "GPLxx # or later" to "GPLxx+"
Approved by:	portmgr blanket
2016-01-12 16:20:31 +00:00
Rene Ladan
327625af94 comms/dcf77pi: update to version 3.4.2
This update fixes a bug in the century calculation which could result in
wrongly calculated dates.
MFH:		2016Q1
2016-01-10 17:11:30 +00:00
Ganael LAPLANCHE
4154d0b666 Update to 2.5.1 2016-01-08 20:22:36 +00:00
Jason E. Hale
42b0bae34f Add USES=pathfix support for CMake. Some ports that use CMake to build
already had USES=pathfix, although it did nothing.  For those ports, I
either removed it as they were handling the pkgconfig files differently
or I removed patches and substitutions that accomplished the same thing
as pathfix.

Differential Revision:	https://reviews.freebsd.org/D850
Reviewed by:	antoine, bapt, tijl
Approved by:	portmgr (bapt)
2016-01-07 14:54:03 +00:00
Koop Mast
353ad9c72e Update GStreamer1 to 1.6.2.
Update GStreamer1-vaapi to 0.7.0.

* Spell GStreamer consistently. [1]
* Fix typo in py3kplist in py3-gstreamer1 [1]
* Improve plugins COMMENTS (more improvements welcome)
* Actually include the gstreamer1-libav update this time.

PR:		204204 [1] (based on)
Submitted by:	olivierd@ [1]
2016-01-04 14:21:56 +00:00
Stephen Hurd
eac6ceacbe Update to latest resease.
Patches have been pushed upstream (Yay!) so this should be a lot easier
going forward.

Thanks to Rick Murphy (K1MU) for helping upstream these bits.
2016-01-03 23:53:38 +00:00
Mathieu Arnold
7823fa4b7e Cleanup GH_* and variables order.
Sponsored by:	Absolight
2015-12-29 14:30:46 +00:00
Rene Ladan
37982a8ab9 comms/dcf77pi: update to version 3.4.1 2015-12-26 12:13:44 +00:00
Dmitry Marakasov
8733e020b9 - Switch to options helpers
- Simplify patching
2015-12-25 14:43:57 +00:00
Dmitry Marakasov
e584e8aecb - Switch to options helpers 2015-12-25 14:42:49 +00:00
Diane Bruce
d991fea74d In some cases c11 libs are needed as well to run. 2015-12-24 14:31:18 +00:00
Stephen Hurd
1e4fdd1d4d Update WWW address. 2015-12-22 08:29:02 +00:00
Pawel Pekala
9cba5dcef6 - Remove pkg-config dependency from BUILD_DEPENDS, it's
implied by USES=pkgconfig
- Switch to USES=execinfo, this will use external libexecinfo
  from ports only when needed
- Use options helpers
- Remove usage of deprecated MAN1 variable, pkg-plist is handling this anyway

PR:		205271
Submitted by:	me
Approved by:	shurd
2015-12-15 19:58:16 +00:00
Stephen Hurd
3f54000051 New port: comms/freedv
FreeDV is a Digital Voice mode for HF radio. FreeDV allows any SSB radio
to be used for low bit rate digital voice. Speech is compressed down to
700-1600 bit/s then modulated onto a 1.25 kHz wide signal comprised of
16 QPSK carriers which is sent to the Mic input of a SSB radio. The signal
is received by an SSB radio, then demodulated and decoded by FreeDV. FreeDV
700(B) rivals SSB in it's low SNR performance. At high SNRs FreeDV 1600
sounds like FM, with no annoying analog HF radio noise.

WWW: http://freedv.org/tiki-index.php
2015-12-15 09:25:26 +00:00
Eitan Adler
fe6465bb1b Reset maintainer 2015-12-14 02:52:14 +00:00
Raphael Kubo da Costa
5b3f3dd953 At very long last land PyQt5 5.5.1 ports.
Add the required bits to Uses/pyqt.mk along with all the PyQt5 ports.
Thankfully this commit is mostly adding new ports, as the hard work was
already done in r403297 and r403662.

Huge kudos to Tobias Berner <tcberner@gmail.com> and, most importantly,
Guido Falsi (madpilot@) for their initial work on these ports (see D2910 in
Phabricator for an earlier version of the PyQt5 patch set).

PR:		204672
2015-12-13 21:56:50 +00:00
Steve Wills
25b1bd5ff4 mark some of the ports that don't build on powerpc64 for me 2015-12-13 16:07:27 +00:00