Commit graph

116 commits

Author SHA1 Message Date
Brad Davis
44b1b87fa8 Opps, forgot to actually add the patch file to actually give us the new disk support!
PR:		202327
Approved by:	bdrewery (mentor)
2015-08-16 08:21:20 +00:00
Brad Davis
7d8a128e43 Add native disk metrics thanks to delphij, Ruben Kerkhof
<ruben@rubenkerkhof.com>, and myself. [1]

Fix Python option when building with debug enabled python [2]

PR:		202327 [1]
PR:		201773 [2]
Submitted by:	brd [1]
Submitted by:	Suraj Ravichandran <suraj@ixsystems.com> [2]
Approved by:	Krzysztof <ports@bsdserwis.com> (maintainer), bdrewery (mentor)
2015-08-14 19:30:11 +00:00
Jason Unovitch
4752da4e1e net-mgmt/collectd5: update 5.4.2 -> 5.5.0
PR:		201514
Submitted by:	ports@bsdserwis.com (maintainer)
Approved by:	feld (mentor)
Differential Revision:	https://reviews.freebsd.org/D3245
2015-08-11 01:48:54 +00:00
Brad Davis
849a041642 Add shebangfix to update collection.cgi with the Perl path.
PR:		200651
Approved by:	ports@bsdserwis.com (maintainer), bdrewery (mentor)
2015-06-08 16:43:01 +00:00
Adam Weinberger
e1e5db5747 Switch the perl CGI dependency from p5-CGI.pm to p5-CGI. 2015-04-25 16:26:55 +00:00
Dmitry Sivachenko
5daf397359 Fix broken curl_xml plugin.
Obtained from upstream (https://github.com/collectd/collectd/issues/931)

Approved by:	maintainer
2015-03-28 20:29:29 +00:00
Dmitry Sivachenko
2645d0cecb Add new OPTION for Varnish plugin support;
Fix plist entries for several plugins;

PR:		198659
Submitted by:	maintainer
2015-03-28 20:26:11 +00:00
Brad Davis
b4c3003d59 Update net-mgmt/collectd5 to 5.4.2
PR:		198205
Submitted by:	brd
Approved by:	zi (mentor)
2015-03-03 16:23:06 +00:00
Dmitry Sivachenko
fb3113ed78 Require python version 2, because it dumps core with python3:
# collectd -f
Fatal Python error: no mem for sys.argv
ValueError: character U+6f633c00 is not in range [U+0000; U+10ffff]
Abort (core dumped)

Approved by:	maintainer
2015-01-12 21:03:23 +00:00
Kurt Jaeger
cba03c03e1 security/libgcrypt: 1.6.1 -> 1.6.2, bump depends
Changes:
- src/sexp.c (do_vsexp_sscan): Return error for invalid args.
- cipher/md.c (_gcry_md_info): Fix a segv in case of calling
  with wrong parameters.
- cipher/primegen.c (_gcry_generate_elg_prime): Change to return an
  error code, possible NULL deref in call to prime generator.
- cipher/dsa.c (generate): Take care of new return code.
- cipher/elgamal.c (generate): Change to return an error code.  Take
	care of _gcry_generate_elg_prime return code.
- ecc: Support the non-standard 0x40 compression flag for EdDSA.
- mpi: Extend the internal mpi_get_buffer.
- mpi: Fix regression for powerpc-apple-darwin detection.
- Fix bug inhibiting the use of the sentinel attribute in src/gcrypt.h.in
- Fix building for the x32 target without asm modules in
  mpi/generic/mpi-asm-defs.h: Use a fixed value for the x32 ABI.
- Fix ARM assembly when building __PIC__
- mpi: Fix a subtle bug setting spurious bits with in mpi_set_bit.
  * mpi/mpi-bit.c (_gcry_mpi_set_bit, _gcry_mpi_set_highbit): Clear
    allocated but not used bits before resizing.
  * tests/t-mpi-bits.c (set_bit_with_resize): New.
- Use internal malloc function in fips.c.
  * src/fips.c (check_binary_integrity): s/gcry_malloc/xtrymalloc/.
- pubkey: Re-map all deprecated RSA algo numbers.
- cipher: Fix possible NULL dereference in cipher/md.c for being NULL.
- Fix ARMv6 detection when CFLAGS modify target CPU architecture.

PR:		193264
Approved by:	cpm@fbsd.es (maintainer)
2015-01-02 18:46:33 +00:00
Kubilay Kocak
b6450d4ca7 databases/libmemcached: Update to 1.0.18 and much more
- Update to 1.0.18 and pkg-plist accordingly
- Add LICENSE (BSD3CLAUSE) and LICENSE_FILE
- Add TEST_DEPENDS and regression-test target
- Perl is not required, remove USE_PERL and from USES
- Split LDFLAGS from CONFIGURE_ENV, they're already set there
- Add libmemcachedprotocol to CONFIGURE_ARGS (Now default: off)
- Add OPTIONS for hash functions, debug and dtrace
- pkg-descr: Update WWW: URL
- Add patches for:
  * alloca.h include not found on FreeBSD
  * cinttypes include location
  * clang compatibility
- Strip shared libraries manually since upstream install-strip target is
  fail

Changes:

  https://launchpad.net/libmemcached/+announcements

[1] https://bugs.launchpad.net/libmemcached/+bug/1245562
[2] https://bugs.launchpad.net/libmemcached/+bug/1400560

Approved by:	Mikhail Tsatsenko <m.tsatsenko@gmail.com> (maintainer, via email)
2014-12-11 05:26:39 +00:00
Mathieu Arnold
eee58d187e Change the way Perl modules are installed, update the default Perl to 5.18.
Before, we had:

  site_perl :           lib/perl5/site_perl/5.18
  site_perl/perl_arch : lib/perl5/site_perl/5.18/mach
  perl_man3 :           lib/perl5/5.18/man/man3

Now we have:

  site_perl : lib/perl5/site_perl
  site_arch : lib/perl5/site_perl/mach/5.18
  perl_man3 : lib/perl5/site_perl/man/man3

Modules without any .so will be installed at the same place regardless of the
Perl version, minimizing the upgrade when the major Perl version is changed.
It uses a version dependent directory for modules with compiled bits.

As PERL_ARCH is no longer needed in plists, it has been removed from
PLIST_SUB.

The USE_PERL5=fixpacklist keyword is removed, the .packlist file is now
always removed, as is perllocal.pod.

The old site_perl and site_perl/arch directories have been kept in the
default Perl @INC for all Perl ports, and will be phased out as these old
Perl versions expire.

PR:		194969
Differential Revision:	https://reviews.freebsd.org/D1019
Exp-run by:	antoine
Reviewed by:	perl@
Approved by:	portmgr
2014-11-26 13:08:24 +00:00
Chris Rees
4cb60faedd Finally retire USE_PGSQL 2014-11-22 20:40:08 +00:00
Jason Helfman
1616d90abe - update libvirt to 1.2.10
- chase shared library bump
2014-11-04 18:41:15 +00:00
Antoine Brodin
1ec20c8f01 Fix packaging 2014-11-01 21:38:16 +00:00
Baptiste Daroussin
9af4a02c28 Simplify plist 2014-10-31 23:41:31 +00:00
Jason Helfman
763dd97ec9 - update libvirt,py-libvirt,libvirt-glib to 0.1.9
- shift var from ${PREFIX} to /var
- bump shared libs of dep. port

PR:		192441 (based on)
Submitted by:	olevole@olevole.ru
2014-10-29 22:17:55 +00:00
Marcus von Appen
f850cf2ff0 - Convert ports of net-im/, net-mgmt/ and net-p2p/ to new USES=python
Approved by:	portmgr (implicit)
2014-10-24 16:29:51 +00:00
Tijl Coosemans
af2ecdfd71 - Replace USE_AUTOTOOLS with USES=autoreconf
- Move BUILD_DEPENDS up
2014-10-03 19:45:48 +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
d081961986 - Fix build with GCRYPT option by taking out -Werror
- Remove patches to Makefile.in and aclocal.m4 because they are regenerated

Reported by:	xjflyttp@gmail.com
2014-09-02 09:04:44 +00:00
Tijl Coosemans
009d225dd5 security/libssh2:
- Convert to USES=libtool and USES=pathfix
- Add INSTALL_TARGET=install-strip
- Only depend on openssl if GCRYPT option is off
- Sanitize libssh2.pc

devel/libvirt:
- Remove workaround for broken libssh2.pc
- Add USES=libtool and bump dependent ports
- Convert to INSTALL_TARGET=install-strip

devel/libvirt-glib:
- Convert to USES=libtool

Approved by:	portmgr (implicit, bump unstaged port)
2014-08-28 21:21:57 +00:00
Dmitry Marakasov
f09d798832 - Switch databases/libdbi to USES=libtool, drop .la files
- Bump dependent ports as .so version has changed

Approved by:	portmgr blanket
2014-08-26 02:09:46 +00:00
Dmitry Marakasov
d5908a200f - Fix build by disabling warning which shoots on libdbi and is fatal due to -Werror
Approved by:	portmgr blanket
MFH:		2014Q3
2014-08-26 01:59:09 +00:00
Bryan Drewery
69f82727cf - Move RESETPREFIX to default PLIST_SUB
With hat:	portmgr
2014-08-18 16:43:24 +00:00
Tijl Coosemans
2b827e1a01 mail/libesmtp:
- Convert to USES=libtool and bump dependent ports
- Use option helpers
- Remove PTHREAD_CFLAGS and PTHREAD_LIBS
- Add INSTALL_TARGET=install-strip
2014-08-17 16:08:20 +00:00
William Grzybowski
f3ff426b00 devel/protobuf-c: update to 1.0.1
- Bump port revision due to shlib change
- Add DOCS option
- Pass maintainership to submitter

PR:		192175
Submitted by:	truckman
Approved by:	maintainer
2014-08-16 21:04:52 +00:00
Dmitry Marakasov
455ce7795f - Switch comms/libmodbus to USES=libtool, drop .la files
- Bump dependent ports as .so version has changed

Approved by:	portmgr blanket
2014-08-15 17:21:08 +00:00
Marcus von Appen
10f62ee1cc - Unbreak the build, if the PYTHON option is selected (caused by the
lang/python27 update in r363790)

Reported by:	robak@
With hat:	python@
2014-08-07 16:47:57 +00:00
Tijl Coosemans
74a7f8c73c Bump PORTREVISION on more ports that depend on libgcrypt after the update
in r363436 and remove the UPDATING entry because it did not guarantee
that all ports were updated nor that they were updated in the right order.
Also remove libgcrypt.la again.

PR:		192342
Approved by:	portmgr (implicit, bump unstaged ports)
2014-08-05 22:13:29 +00:00
Niclas Zeising
3b22ad40b1 Clean up databases/rrdtool
Change library dependensies to use USES= where applicable.
Build ports documentation and examples, depending on respective option.
Add two new options, NLS and GRAPH, the GRAPH option enables the rrdtool graph
command, which pulls in cario and a lot of other dependencies.  [1]
Add missing dependencies.
Becase of shlib version bump, bump portrevision on depending ports.

PR:		192024 [1] (based on)
Submitted by:	asomers
Approved by:	portmgr (blanket, portrevision bumps)
2014-07-23 20:11:10 +00:00
Tim Bishop
469ab7f8ac - Update libstatgrab to 0.91.
- Bump revision on dependent ports to chase shlib bump.
2014-07-11 21:50:50 +00:00
Tijl Coosemans
20ce924051 - Convert net/librouteros to USES=libtool and bump dependent ports
- USES=tar:bzip2
- Add INSTALL_TARGET=install-strip
2014-07-10 13:15:21 +00:00
Adam Weinberger
a0e0aa704d Fix build for FreeBSD < 9 where libstatgrab 0.90 codepath is used.
PR:		190718
Submitted by:	Kevin Bowling [patch]
Approved by:	maintainer
2014-07-05 16:11:38 +00:00
Tijl Coosemans
9f8b4bcde3 Support LIBS like LDFLAGS.
- Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV.
- Add an option helper for LIBS.
- Adjust all ports that already use LIBS.  Also remove references to
  PTHREAD_CFLAGS and PTHREAD_LIBS while here.
- Some ports did not support having a LIBS environment variable and
  required additional patches.

Somewhat simplified a linker command line looks like:

${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS}

where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and
LIBS can be controlled by us.  If possible -L and -l flags need to be
added to LIBS to make sure they appear after any -L and -l flags set by
upstream.  Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this
may appear too early on the command line causing installed libraries to
be linked in instead of freshly built ones.

Additional changes:
benchmarks/netio: Replace WITH_IPV6 with an IPV6 option.
comms/gnokii: Replace some patches with USES=pathfix.  Also remove -fPIC.
graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR.
graphics/visionworkbench: Remove FreeBSD 7 support.
multimedia/libmovtar: New LIB_DEPENDS syntax.
multimedia/opencinematools: Use standard do-build.
net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins)
net-mgmt/nagios: Remove -fPIC.
net-mgmt/nagios4: Remove -fPIC.
print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036.
security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with
ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS.  This skips a test
in configure that falsely detects pthread_mutexattr_init in our libc.
sysutils/dar: Fix iconv detection.
x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD
hack and use $CXX as linker as on other platforms.

PR:		190592
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2014-06-11 14:49:59 +00:00
Steve Wills
756019b2e0 - Add perl support [1]
- Convert to USES=libtool [2]
- Add LICENSE and LICENSE_FILE [2]
- Pet portlint [2]
- Fix build with pkg_tools [2]

PR:		189271 [1]
Submitted by:	Kevin Bowling <kbowling@llnw.com> [1]
Approved by:	Krzysztof Stryjek <ports@bsdserwis.com> (maintainer) [1]
With hat:	portmgr@ [2]
2014-06-09 20:43:42 +00:00
Tim Bishop
620812da65 - Fix build with libstatgrab 0.90
PR:		ports/189738
Approved by:	maintainer
2014-05-12 22:06:36 +00:00
Niclas Zeising
39fc32e828 The FreeBSD x11@ and graphics team proudly presents
a zeising, kwm production, with help from dumbbell, bdrewery:

NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE

This update switches over to use the new xorg stack by default on FreeBSD 9
and 10 stable, on osversions where vt(9) is available.
It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in
/etc/make.conf .
FreeBSD 8-STABLE and released versions of FreeBSD still use
the old version.
A package repository with binary packages for new xorg will
be available soon.

This patch also contains updates of libxcb and related ports, pixman, as well
as some drivers and utilities.

Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due
to xserver version change.

Apart from these updates, the way shared libraries are handled has been
changed for all xorg ports, as well as libxml2 and freetype, which means
ltverhack is gone and as a consequence shared libraries have been bumped.
The plan is that this change will make library bumps less likely in the
future.
All affected ports have had their portrevisions bumped as a consequence of
this.

Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT.

Update instructions, hardware support, and more notes can be found on
https://wiki.freebsd.org/Graphics

Thanks to:	all testers, bdrewery and the FreeBSD x11@ team
exp-run by:	bdrewery [1]
PR:		ports/187602 [1]
Approved by:	portmgr (bdrewery), core (jhb)
2014-04-16 18:28:47 +00:00
Dmitry Sivachenko
be6d2ea874 Add RIEMANN option.
PR:		184458
Submitted by:	maintainer
2014-04-07 11:15:09 +00:00
Dmitry Sivachenko
68beda2cf3 Update to version 5.4.1;
Add mongodb support.

PR:		187254
Submitted by:	maintainer
2014-04-07 11:09:06 +00:00
Dmitry Sivachenko
56ae029ddd Add new optional sigrok support;
Remove GLIB as runtime dependency unless sigrok plugin is enabled.

Approved by:	maintainer
2014-01-10 08:25:34 +00:00
Dmitry Sivachenko
23ee0ef9bb 1) remove --disable-getifaddrs from CONFIGURE_ARGS: "disabled" is the default
value and this option is also linux-specific.
2) convert LIB_DEPENDS to new format.

Approved by:	maintainer
2014-01-06 08:41:51 +00:00
Dmitry Sivachenko
9322378f74 Fix network interface statistics reports broken on FreeBSD-10.
Approved by:	maintainer
2014-01-05 08:14:25 +00:00
Dmitry Sivachenko
b76dc6b28c Fix build with clang (on FreeBSD-10) with curl plugin enabled:
curl_xml.c:617:37: error: variable 'url' is uninitialized when used here
      [-Werror,-Wuninitialized]
           status, db->curl_errbuf, url);
                                    ^~~
./plugin.h:342:47: note: expanded from macro 'ERROR'
#define ERROR(...)   plugin_log (LOG_ERR,     __VA_ARGS__)
                                              ^
curl_xml.c:610:12: note: initialize the variable 'url' to silence this warning
  char *url;
           ^
            = NULL
1 error generated.
2014-01-02 20:28:45 +00:00
Dmitry Sivachenko
8f47330888 Fix PLIST when PYTHON option is enabled (broken since rev. 318238). 2014-01-02 19:55:41 +00:00
Jason Helfman
cee0c06ddd - update to 1.2.0 and bump shared libraries in respective ports
- while here shift new lib_depends format where needed

Changes:	http://libvirt.org/news.html
2013-12-17 23:54:04 +00:00
William Grzybowski
e98797bdfe net-mgmt/collectd5: add statsd support
- Add statsd support [1]
- Use PKGNAMESUFFIX to do not conflict with net-mgmt/collectd
- Allow staging

PR:		ports/182064 [1]
Submitted by:	Kimo <kimor79 yahoo.com> [1]
Approved by:	maintainer [1]
2013-10-03 23:37:48 +00:00
Baptiste Daroussin
985b201424 Add NO_STAGE all over the place in preparation for the staging support (cat: net-mgmt) 2013-09-20 22:24:43 +00:00
Brad Davis
d1cfa261c4 - Update net-mgmt/collectd5 to 5.4.0 (by me)
- Convert to the new options layout like net-mgmt/collectd (by maintainer: Krzysztof Stryjek <ports@bsdserwis.com>)
- Clean up some options and simplify the CONFIGURE_ARGS (by swills@)

PR:		181443
Submitted by:	brd@
Reviewed by:	swills@
Approved by:	Krzysztof Stryjek <ports@bsdserwis.com> (maintainer)
2013-09-13 01:32:38 +00:00
Baptiste Daroussin
f5447d93be Add an explicit dependency on pkgconfig
Fix missing description for the NOTIFYEMAIL option
2013-09-02 05:40:37 +00:00