Commit graph

389525 commits

Author SHA1 Message Date
Antoine Brodin
1eff39459f - Remove OPENPYXL1 option from py-pandas
- Set an EXPIRATION_DATE for py-openpyxl1 (deprecated since May 2014)
2016-03-09 19:34:03 +00:00
Kurt Jaeger
9a3160ae5f math/coinmp: add conflict with ogdf
PR:		207531
Submitted by:	gahr
2016-03-09 19:10:34 +00:00
Bartek Rutkowski
fc027ca784 sysutils/monit: update 5.17 -> 5.17.1
PR:		207773
Submitted by:	Martin Pala <martinp@tildeslash.com> (maintainer)
2016-03-09 18:48:58 +00:00
Dmitry Marakasov
2fa4078568 - Update to 3.0.9
- Fix LICENSE
- Strip libraries
- Respect CFLAGS/CXXFLAGS
- Make proj optional
- Switch to options helpers
- Simplify docs installation

PR:		207060
Submitted by:	amdmi3
Approved by:	maintainer timeout (littlesavage@rambler.ru, 3 weeks)
2016-03-09 17:58:46 +00:00
Dan Langille
4f53813bd9 Fix PKGNAMEPREFIX to match elasticsearch-plugin-marvel 2016-03-09 17:58:25 +00:00
Dmitry Marakasov
fab501a0b0 - Update to 1.6.2
- Fix license
- Make mapnik support optional

PR:		207249
Submitted by:	amdmi3
Approved by:	maitainer timeout (koalative@gmail.com, 3 weeks)
2016-03-09 17:57:05 +00:00
Dmitry Marakasov
a40323812a - Fix plist wrt CYCLESOSL option
- Add 3 missing files to plist

PR:		207280
Submitted by:	amdmi3
Approved by:	maintainer timeout (mva, 3 weeks)
2016-03-09 17:54:08 +00:00
Antoine Brodin
9d6b8e3e70 Sleuthkit 4.2.0 switched from 100 nano seconds precision to 1 nano second
precision for *time_nano fields.  Adjust py-dfvfs for this.

See: https://github.com/log2timeline/dfvfs/issues/116
2016-03-09 17:25:52 +00:00
Raphael Kubo da Costa
037f3e1ee6 Update to 4.2.2.
* It is no longer necessary to set CONFIGURE_ARGS.
* Explain why we set CONFIGURE_ENV.

PR:		207688
Submitted by:	takefu@airport.fm
2016-03-09 17:15:18 +00:00
Mark Felder
0de3f2636e graphics/giflib: Add patch to fix regression
There is a regression with the 5.1.2 update to giflib. This affects the
ability for applications to render gif images usually ocurring after the
first gif image is rendered. Upstream has been notified but has not yet
provided feedback.

giflib 5.1.2 was a security fix, so reverting is not reasonable.

"The removed check look redundant - I couldn't find a code path where
Private->RunningBits would exceed that limit after initialization.
(Currently Private->RunningBits is checked before it is initialized)."

PR:		207849
Submitted by:	Stefan Ehmann <shoesoft@gmx.net>
Approved by:	ports-secteam (with hat)
MFH:		2016Q1
2016-03-09 17:13:49 +00:00
Antoine Brodin
e1e600db5d Unbreak INDEX 2016-03-09 17:06:53 +00:00
Antoine Brodin
21b2d2c939 Fix PKGBASE collision 2016-03-09 17:05:45 +00:00
Dan Langille
ffe30bdae5 Add Marvel 2, an Elasticsearch monitoring plugin 2016-03-09 17:03:10 +00:00
Mark Felder
70068ea300 news/sabnzbdplus: Revert removal of PATH in rc script
There were reports of fallout so this has been reverted. It is not
understood why an explicit PATH needs to be set. In testing without it
the correct PATH appears to be exported during the start_precmd routine.

PR:		207583
Approved by:	maintainer
2016-03-09 16:59:18 +00:00
Kurt Jaeger
141a25e582 math/ogdf: 2012.07 -> 2015.05
Changes:
  http://www.ogdf.net/doku.php/tech:versions#v_201505_baobab

- Remove dependencies on math/abacus and math/coinmp, as they are
  now bundled into the OGDF source tarballs and compiled from there
  (COIN remains optional)
- Point MASTER_SITES to the official OGDF website
- Utilise USES=compiler:features to detect C++11 support, and
  add compiler flags -std=c++11 if so (required for build to complete
  without errors)
- Remove custom do-install recipe, and instead use default
  make install target
- Take maintainership

PR:		207531
Submitted by:	Ben Woods <woodsb02@gmail.com>
2016-03-09 16:49:38 +00:00
Boris Samorodov
7b9bdca117 science/liblinear: Update to version 2.1. 2016-03-09 16:44:37 +00:00
Boris Samorodov
b4b76769b5 science/libsvm: Update to version 3.21. 2016-03-09 16:43:49 +00:00
Philippe Audeoud
99c02cc89a - Update to 0.24 2016-03-09 16:20:33 +00:00
Kevin Lo
4a52e8f73b - Add compiler:c++11-lang knob
- Clean up wx-config and g++ in the patch-Makefile

Spotted by:	danfe
2016-03-09 15:24:48 +00:00
Raphael Kubo da Costa
87c262ff1c x11-toolkits/attica: Change the location where we install its headers.
In preparation for the upcoming KDE Frameworks 5 and Plasma 5 ports, install
attica's headers into include/attica/attica instead of include/attica.

Users of attica reference the headers in the code with
    #include <attica/foo.h>
which means the compiler is passed -I${LOCALBASE}/include for the headers to
be found.

The KDE Frameworks 5 version of attica installs the headers into
include/KF5/attica, so depending on the other of the arguments the compiler
can end up being passed
    -I${LOCALBASE}/include -I${LOCALBASE}/include/KF5
leading to the wrong attica headers being used instead.

By changing the header location, we make sure one passes
-I${LOCALBASE}/include/attica to use the attica 0.4.2 headers.

The original idea and code came from Tobias Berner <tcberner@gmail.com>,
with further improvements from myself.

While here, add some comments explaining why some sed calls are made in the
post-patch target.

Last but not least, audio/tomahawk had to be patched for the attica headers
to be properly found now that they are no longer in ${LOCALBASE}/include.
The patch itself contains a larger explanation of what had to be done. All
other ports depending on x11-toolkits/attica work fine without any changes.

Submitted by:	Tobias Berner <tcberner@gmail.com> (original version)
2016-03-09 15:14:35 +00:00
Raphael Kubo da Costa
c08596d872 Correctly mark the port as unmaintained after r392689. 2016-03-09 14:33:56 +00:00
Olivier Cochard
ae5da00900 Update to 0.2.1, add DOCS and NLS options
Approved by:	jadawin
Differential Revision:	https://reviews.freebsd.org/D5582
2016-03-09 13:31:43 +00:00
Raphael Kubo da Costa
ecf1495a3e Switch to an out-of-source CMake build.
There should be no changes to the produced package.
2016-03-09 11:40:08 +00:00
Antoine Brodin
c04ce9e617 Fix DEPENDS 2016-03-09 11:12:04 +00:00
Grzegorz Blach
0824074348 Update to 1.8.4 2016-03-09 10:57:37 +00:00
John Marino
3559a7db78 ports-mgmt/synth: Upgrade version 1.21 => 1.22
Two minor bug fixes:
 * A specific check during test mode would emit a failure to stdout when
   testing devel/py-setuptools27.  It turns out that there's a file there
   with a space in the filename.  The filename was an argument for
   /usr/bin//file and it wasn't escaped.  The file in question had
   parentheses too which the shell was trying to process.  The fix was
   to escape the filename in the /usr/bin/file command.
 * The builders were mounting the source directory from "/usr/src", not
   $sysroot/usr/src as intended.  This potentially causes breakage when
   the $sysroot reflects a different versions/release than the host
   machine has (e.g. making FreeBSD 10.2 packages on FreeBSD 11-current).
   Now the source directory mount is relative to profile's $sysroot.
2016-03-09 08:53:03 +00:00
Muhammad Moinur Rahman
0a3585f6ce astro/routino: Update version 3.0=>3.1.1 2016-03-09 08:27:32 +00:00
Wen Heping
8c2f29747a - Update to 1.0
PR:		207266
Submitted by:	takefu@airport.fm
2016-03-09 07:46:56 +00:00
Vanilla I. Shu
9923887cd7 Update to 1.7.1. 2016-03-09 07:21:25 +00:00
Vanilla I. Shu
5f3cfc09ca Update to 1.7.1. 2016-03-09 07:21:02 +00:00
Alexey Dokuchaev
945f6921b8 Unbreak the build on FreeBSD 9.3, where #pragma GCC diagnostic not allowed
inside functions.

Reported by:	pkg-fallout
2016-03-09 07:18:09 +00:00
Wen Heping
7fac797367 - Update to 1.7.0
- Add LICENSE
- Update DEPENDS
- Set NO_ARCH=yes
- Update pkg-descr
2016-03-09 06:54:14 +00:00
Jan Beich
ef0438863c audio/sdl{,2}_mixer: add TREMOR option
TREMOR is enabled by default on platforms without hardware floating point.

PR:		202689
Approved by:	maintainer timeout (6 months)
2016-03-09 05:18:50 +00:00
Kevin Lo
215f1dd63c Cosmetic change. 2016-03-09 05:06:24 +00:00
Dmitry Marakasov
0eb7a4cc5e - Add LICENSE
- Switch to options helpers
- Switch to USES=tar:tbz2
2016-03-09 04:35:54 +00:00
Dmitry Marakasov
f49402be93 - Clarify LICENSE
- Add LICENSE_FILE
- Switch to options helpers
- Clean up pkg-descr
2016-03-09 04:35:49 +00:00
Dmitry Marakasov
88d5e9e79e - Add LICENSE
- Switch to options helpers
- Install sample config file
2016-03-09 04:35:43 +00:00
Dmitry Marakasov
8ef92a2294 - Switch to new test framework
- Switch to options helpers
2016-03-09 04:35:30 +00:00
TAKATSU Tomonari
e148b070e2 - Update to 0.1-12
- Update WWW in pkg-descr
2016-03-09 02:42:31 +00:00
TAKATSU Tomonari
7c7e643ddb - Update to 1.3
- Fix LICENSE
2016-03-09 02:38:28 +00:00
Wen Heping
f41eb659f4 - Update to 2.2.0.0 2016-03-09 02:24:12 +00:00
Kevin Lo
be19a7dce2 Import freefilesync 7.9.
Freefilesync is a free open source software that helps you synchronize
files and synchronize folders for Windows, Linux, FreeBSD and Mac OS X.
2016-03-09 02:21:21 +00:00
Kevin Lo
3c396a3170 Update to 9.0.0
PR:	207823
Submitted by:	Loïc BLOT <loic.blot at unix-experience dot fr>
2016-03-09 01:54:34 +00:00
Jan Beich
18aceb9b28 devel/py-game_sdl2, devel/renpy: update to 6.99.9
Changes:	http://www.renpy.org/doc/html/changelog.html#ren-py-6-99-9
2016-03-09 01:48:03 +00:00
Jan Beich
0d8f020d6f Adjust brotli vulnerability after MFH in r410670 2016-03-09 01:47:19 +00:00
Muhammad Moinur Rahman
0745c29efb sysutils/dar: Update version 2.5.2=>2.5.3 2016-03-09 01:09:35 +00:00
Wen Heping
736f2943e4 - Update to 0.12 2016-03-09 01:04:30 +00:00
Wen Heping
8dfb2b88c0 - Update to 3.1.8
- Pass maintainership to submitter

PR:		207808
Submitted by:	jochen@jochen-neumeister.de
Approved by:	coco@executive-computing.de(previous maintainer)
2016-03-09 00:46:04 +00:00
Muhammad Moinur Rahman
73e4b88ffd textproc/p5-String-Tokenizer: Update version 0.05=>0.06
- Mark NO_ARCH
2016-03-09 00:27:58 +00:00
Muhammad Moinur Rahman
ff9522b10e emulators/qemu-devel: fix with DOCS=off [1]
- Fix for GNUTLS_CONFIGURE_ON [2]
- Fix for PCAP_CONFIGURE_OFF [2]
- Bump PORT Revision

PR:		207719 [1], 205826 [2]
Submitted by:	novel [1], riggs [2]
2016-03-09 00:11:05 +00:00