diff options
52 files changed, 126 insertions, 97 deletions
diff --git a/astro/libosmpbf/Makefile b/astro/libosmpbf/Makefile index 2f28ccb19dbb..9bcb125e6cd1 100644 --- a/astro/libosmpbf/Makefile +++ b/astro/libosmpbf/Makefile @@ -4,7 +4,7 @@ PORTNAME= libosmpbf PORTVERSION= 1.3.3 DISTVERSIONPREFIX= v -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= astro geography devel MAINTAINER= amdmi3@FreeBSD.org @@ -21,6 +21,7 @@ USE_GITHUB= yes GH_ACCOUNT= scrosby GH_PROJECT= OSM-binary -USES= cmake +USES= cmake compiler:c++11-lang +USE_CXXSTD= c++11 .include <bsd.port.mk> diff --git a/astro/merkaartor/Makefile b/astro/merkaartor/Makefile index 3b3a1279818c..978c346c1d1c 100644 --- a/astro/merkaartor/Makefile +++ b/astro/merkaartor/Makefile @@ -3,7 +3,7 @@ PORTNAME= merkaartor PORTVERSION= 0.18.2 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= astro MAINTAINER= dev2@heesakkers.info diff --git a/audio/clementine-player/Makefile b/audio/clementine-player/Makefile index 99ac3c2885e6..1799f5560ccc 100644 --- a/audio/clementine-player/Makefile +++ b/audio/clementine-player/Makefile @@ -5,7 +5,7 @@ PORTNAME= clementine DISTVERSIONPREFIX= v DISTVERSION= 1.3.1-441 DISTVERSIONSUFFIX= -gc01b7bc -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= audio PKGNAMESUFFIX= -player @@ -40,6 +40,7 @@ USES= cmake \ gettext-tools \ pkgconfig \ qt:4 sqlite +USE_CXXSTD= c++11 USE_GL= gl glew glu USE_XORG= x11 diff --git a/audio/mixxx/Makefile b/audio/mixxx/Makefile index 7825c64f7c5d..05a923def91a 100644 --- a/audio/mixxx/Makefile +++ b/audio/mixxx/Makefile @@ -3,6 +3,7 @@ PORTNAME= mixxx DISTVERSION= 2.1.5 +PORTREVISION= 1 DISTVERSIONPREFIX= release- CATEGORIES= audio diff --git a/audio/mixxx20/Makefile b/audio/mixxx20/Makefile index 66e5bedb781e..a6ea7c78d461 100644 --- a/audio/mixxx20/Makefile +++ b/audio/mixxx20/Makefile @@ -3,7 +3,7 @@ PORTNAME= mixxx PORTVERSION= 2.0.0 DISTVERSIONSUFFIX= -src -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= audio MASTER_SITES= http://downloads.mixxx.org/${PORTNAME}-${PORTVERSION}/ PKGNAMESUFFIX= 20 @@ -34,7 +34,8 @@ LIB_DEPENDS= libchromaprint.so:audio/chromaprint \ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -USES= qt:4 scons iconv pkgconfig +USES= compiler:c++11-lang iconv pkgconfig qt:4 scons +USE_CXXSTD= c++11 USE_QT= corelib gui network opengl script scripttools sql sql-sqlite3 \ svg testlib xml xmlpatterns linguisttools_build moc_build \ qmake_build rcc_build uic_build diff --git a/audio/mumble/Makefile b/audio/mumble/Makefile index 7d3237cce535..6fe88e8508d8 100644 --- a/audio/mumble/Makefile +++ b/audio/mumble/Makefile @@ -3,7 +3,7 @@ PORTNAME= mumble PORTVERSION= 1.2.19 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= audio MAINTAINER= feld@FreeBSD.org @@ -24,7 +24,8 @@ LIB_DEPENDS+= libspeex.so:audio/speex \ PLIST_SUB+= PORTVERSION="${PORTVERSION}" -USES= compiler cpe desktop-file-utils gmake pkgconfig qmake qt:4 ssl +USES= compiler:c++11-lang cpe desktop-file-utils gmake pkgconfig qmake qt:4 ssl +USE_CXXSTD= c++11 USE_GITHUB= yes GH_ACCOUNT= mumble-voip GH_PROJECT= mumble celt-0.7.0:mumble_celt_0_7 celt-0.11.0:mumble_celt_0_11 diff --git a/audio/mumble/files/patch-cplusplus.pri b/audio/mumble/files/patch-cplusplus.pri new file mode 100644 index 000000000000..bceb2dc3576a --- /dev/null +++ b/audio/mumble/files/patch-cplusplus.pri @@ -0,0 +1,13 @@ +--- cplusplus.pri.orig 2017-01-27 12:29:08 UTC ++++ cplusplus.pri +@@ -103,8 +103,8 @@ unix { + # older compilers. In GCC, the following + # flags mean the same thing: + # -std=c++98, -std=c++03, -ansi. +- QMAKE_CXXFLAGS += -std=c++98 +- QMAKE_LFLAGS += -std=c++98 ++ # QMAKE_CXXFLAGS += -std=c++98 ++ # QMAKE_LFLAGS += -std=c++98 + } + + diff --git a/audio/murmur/Makefile b/audio/murmur/Makefile index fbfaf1e293b6..7ae899cd2a6a 100644 --- a/audio/murmur/Makefile +++ b/audio/murmur/Makefile @@ -3,7 +3,7 @@ PORTNAME= murmur PORTVERSION= 1.2.19 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= audio net MAINTAINER= feld@FreeBSD.org @@ -21,6 +21,7 @@ LIB_DEPENDS= libprotobuf.so:devel/protobuf USERS= murmur GROUPS= murmur USES= compiler:c++11-lang qmake pkgconfig qt:4 ssl +USE_CXXSTD= c++11 USE_QT= moc_build corelib network sql xml USE_GITHUB= YES diff --git a/audio/murmur/files/patch-cplusplus.pri b/audio/murmur/files/patch-cplusplus.pri new file mode 100644 index 000000000000..bceb2dc3576a --- /dev/null +++ b/audio/murmur/files/patch-cplusplus.pri @@ -0,0 +1,13 @@ +--- cplusplus.pri.orig 2017-01-27 12:29:08 UTC ++++ cplusplus.pri +@@ -103,8 +103,8 @@ unix { + # older compilers. In GCC, the following + # flags mean the same thing: + # -std=c++98, -std=c++03, -ansi. +- QMAKE_CXXFLAGS += -std=c++98 +- QMAKE_LFLAGS += -std=c++98 ++ # QMAKE_CXXFLAGS += -std=c++98 ++ # QMAKE_LFLAGS += -std=c++98 + } + + diff --git a/databases/mysql57-server/Makefile b/databases/mysql57-server/Makefile index 839e06b663e0..c248789daec5 100644 --- a/databases/mysql57-server/Makefile +++ b/databases/mysql57-server/Makefile @@ -3,7 +3,7 @@ PORTNAME?= mysql PORTVERSION= 5.7.24 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= databases ipv6 MASTER_SITES= MYSQL/MySQL-5.7 PKGNAMESUFFIX?= 57-server @@ -96,6 +96,7 @@ SUB_FILES= my.cnf.sample USERS= mysql GROUPS= mysql +USE_CXXSTD= c++11 USE_LDCONFIG+= ${PREFIX}/lib/mysql/plugin MMAN1= my_print_defaults.1 myisam_ftdump.1 myisamchk.1 myisamlog.1 myisampack.1 \ diff --git a/databases/mysql80-server/Makefile b/databases/mysql80-server/Makefile index fac7ac64a9c7..e3da576cc101 100644 --- a/databases/mysql80-server/Makefile +++ b/databases/mysql80-server/Makefile @@ -3,7 +3,7 @@ PORTNAME?= mysql PORTVERSION= 8.0.12 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= databases ipv6 MASTER_SITES= MYSQL/MySQL-8.0 PKGNAMESUFFIX?= 80-server diff --git a/devel/grpc/Makefile b/devel/grpc/Makefile index ad9827c5b8bd..9cef2082208c 100644 --- a/devel/grpc/Makefile +++ b/devel/grpc/Makefile @@ -4,7 +4,7 @@ PORTNAME= grpc PORTVERSION= 1.15.1 DISTVERSIONPREFIX= v -PORTREVISION= 0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel diff --git a/devel/ignition-msgs/Makefile b/devel/ignition-msgs/Makefile index f3f9aced9cf9..696bd5278d7d 100644 --- a/devel/ignition-msgs/Makefile +++ b/devel/ignition-msgs/Makefile @@ -2,6 +2,7 @@ PORTNAME= ignition-msgs DISTVERSION= 3.0.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= https://bitbucket.org/${BB_ACCOUNT}/${BB_PROJECT}/get/${BB_COMMIT}.tar.gz?dummy=/ diff --git a/devel/ignition-transport/Makefile b/devel/ignition-transport/Makefile index d024b1fad60c..0cea6fa5efe8 100644 --- a/devel/ignition-transport/Makefile +++ b/devel/ignition-transport/Makefile @@ -2,6 +2,7 @@ PORTNAME= ignition-transport DISTVERSION= 6.0.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= https://bitbucket.org/${BB_ACCOUNT}/${BB_PROJECT}/get/${BB_COMMIT}.tar.gz?dummy=/ diff --git a/devel/php5-pinba/Makefile b/devel/php5-pinba/Makefile index 52cf6bb003b3..100f1104e140 100644 --- a/devel/php5-pinba/Makefile +++ b/devel/php5-pinba/Makefile @@ -3,7 +3,7 @@ PORTNAME= pinba PORTVERSION= 2012.03.20 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= devel PKGNAMEPREFIX= ${PHP_PKGNAMEPREFIX} @@ -22,7 +22,8 @@ GH_ACCOUNT= tony2001 GH_PROJECT= pinba_extension GH_TAGNAME= f76b673 -USES= php:ext +USES= compiler:c++11-lang php:ext +USE_CXXSTD= c++11 IGNORE_WITH_PHP= 70 71 72 73 .include <bsd.port.mk> diff --git a/devel/protobuf-c/Makefile b/devel/protobuf-c/Makefile index 2d7bd71c8716..250f81c104a9 100644 --- a/devel/protobuf-c/Makefile +++ b/devel/protobuf-c/Makefile @@ -3,6 +3,7 @@ PORTNAME= protobuf-c PORTVERSION= 1.3.1 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= devel diff --git a/devel/protobuf/Makefile b/devel/protobuf/Makefile index e354143ea278..c6b16b922eeb 100644 --- a/devel/protobuf/Makefile +++ b/devel/protobuf/Makefile @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= protobuf -PORTVERSION= 3.5.2 +PORTVERSION= 3.6.1 DISTVERSIONPREFIX= v -PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel @@ -19,19 +18,23 @@ BROKEN_sparc64= fails to compile: no atomic ops available TEST_DEPENDS= googlemock>=0:devel/googlemock \ googletest>=0:devel/googletest +USES= autoreconf compiler:c++11-lang gmake libtool localbase pathfix pkgconfig + CFLAGS+= -DGOOGLE_PROTOBUF_NO_RTTI -I${WRKSRC}/src -CONFIGURE_ENV= CC_FOR_BUILD="${CC}" CFLAGS_FOR_BUILD="${CFLAGS}" \ +CONFIGURE_ENV= CC_FOR_BUILD="${CC}" \ + CFLAGS_FOR_BUILD="${CFLAGS}" \ CPPFLAGS_FOR_BUILD="${CPPFLAGS}" \ - CXX_FOR_BUILD="${CXX}" CXXFLAGS_FOR_BUILD="${CXXFLAGS}" \ + CXX_FOR_BUILD="${CXX}" \ + CXXFLAGS_FOR_BUILD="${CXXFLAGS}" \ LDFLAGS_FOR_BUILD="${LDFLAGS}" GNU_CONFIGURE= yes INSTALL_TARGET= install-strip TEST_ARGS= ${MAKE_ARGS} ${_MAKE_JOBS} TEST_TARGET= check -USES= autoreconf compiler:c++11-lang gmake libtool localbase pathfix pkgconfig +USE_CXXSTD= c++11 USE_LDCONFIG= yes -GH_ACCOUNT= google +GH_ACCOUNT= protocolbuffers USE_GITHUB= yes post-patch: diff --git a/devel/protobuf/distinfo b/devel/protobuf/distinfo index 2d64f44e6939..94c8bdb98698 100644 --- a/devel/protobuf/distinfo +++ b/devel/protobuf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1523095599 -SHA256 (google-protobuf-v3.5.2_GH0.tar.gz) = 4ffd420f39f226e96aebc3554f9c66a912f6cad6261f39f194f16af8a1f6dab2 -SIZE (google-protobuf-v3.5.2_GH0.tar.gz) = 4584659 +TIMESTAMP = 1535569873 +SHA256 (protocolbuffers-protobuf-v3.6.1_GH0.tar.gz) = 3d4e589d81b2006ca603c1ab712c9715a76227293032d05b26fca603f90b3f5b +SIZE (protocolbuffers-protobuf-v3.6.1_GH0.tar.gz) = 4485582 diff --git a/devel/protobuf/files/patch-src-google-protobuf-stubs-atomicops.h b/devel/protobuf/files/patch-src-google-protobuf-stubs-atomicops.h deleted file mode 100644 index ff62c2c46cf4..000000000000 --- a/devel/protobuf/files/patch-src-google-protobuf-stubs-atomicops.h +++ /dev/null @@ -1,11 +0,0 @@ ---- src/google/protobuf/stubs/atomicops.h.orig 2017-08-15 23:39:12 UTC -+++ src/google/protobuf/stubs/atomicops.h -@@ -198,6 +198,8 @@ Atomic64 Release_Load(volatile const Ato - #elif defined(__GNUC__) - #if defined(GOOGLE_PROTOBUF_ARCH_IA32) || defined(GOOGLE_PROTOBUF_ARCH_X64) - #include <google/protobuf/stubs/atomicops_internals_x86_gcc.h> -+#elif defined(GOOGLE_PROTOBUF_ARCH_ARM) && defined(__FreeBSD__) -+#include <google/protobuf/stubs/atomicops_internals_generic_gcc.h> - #elif defined(GOOGLE_PROTOBUF_ARCH_ARM) && defined(__linux__) - #if (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)) - #include <google/protobuf/stubs/atomicops_internals_generic_gcc.h> diff --git a/devel/protobuf/files/patch-src-google-protobuf-stubs-common.h b/devel/protobuf/files/patch-src-google-protobuf-stubs-common.h new file mode 100644 index 000000000000..efee095dc5ab --- /dev/null +++ b/devel/protobuf/files/patch-src-google-protobuf-stubs-common.h @@ -0,0 +1,11 @@ +--- src/google/protobuf/stubs/common.h.orig 2018-07-27 20:30:28 UTC ++++ src/google/protobuf/stubs/common.h +@@ -206,7 +206,7 @@ LIBPROTOBUF_EXPORT void OnShutdownRun(vo + + template <typename T> + T* OnShutdownDelete(T* p) { +- OnShutdownRun([](const void* p) { delete static_cast<const T*>(p); }, p); ++ OnShutdownRun([](const void* pp) { delete static_cast<const T*>(pp); }, p); + return p; + } + diff --git a/devel/protobuf/files/patch-src_Makefile.am b/devel/protobuf/files/patch-src_Makefile.am deleted file mode 100644 index 0b29e87e9f48..000000000000 --- a/devel/protobuf/files/patch-src_Makefile.am +++ /dev/null @@ -1,11 +0,0 @@ ---- src/Makefile.am.bak 2018-10-27 21:56:16.784704000 +0200 -+++ src/Makefile.am 2018-10-27 22:01:47.564751000 +0200 -@@ -518,7 +518,7 @@ - # to build the js_embed binary using $(CXX_FOR_BUILD) so that it is executable - # on the build machine in a cross-compilation setup. - js_embed$(EXEEXT): $(srcdir)/google/protobuf/compiler/js/embed.cc -- $(CXX_FOR_BUILD) -o $@ $< -+ $(CXX_FOR_BUILD) ${CXXFLAGS} -o $@ $< - js_well_known_types_sources = \ - google/protobuf/compiler/js/well_known_types/any.js \ - google/protobuf/compiler/js/well_known_types/struct.js \ diff --git a/devel/protobuf/pkg-descr b/devel/protobuf/pkg-descr index ddf4508ab800..b14a56985574 100644 --- a/devel/protobuf/pkg-descr +++ b/devel/protobuf/pkg-descr @@ -2,4 +2,4 @@ Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. Google uses Protocol Buffers for almost all of its internal RPC protocols and file formats. -WWW: https://github.com/google/protobuf +WWW: https://github.com/protocolbuffers/protobuf diff --git a/devel/protobuf/pkg-plist b/devel/protobuf/pkg-plist index 08fda7674106..421c513efe9a 100644 --- a/devel/protobuf/pkg-plist +++ b/devel/protobuf/pkg-plist @@ -15,7 +15,6 @@ include/google/protobuf/compiler/csharp/csharp_names.h include/google/protobuf/compiler/importer.h include/google/protobuf/compiler/java/java_generator.h include/google/protobuf/compiler/java/java_names.h -include/google/protobuf/compiler/javanano/javanano_generator.h include/google/protobuf/compiler/js/js_generator.h include/google/protobuf/compiler/js/well_known_types_embed.h include/google/protobuf/compiler/objectivec/objectivec_generator.h @@ -45,6 +44,8 @@ include/google/protobuf/generated_message_reflection.h include/google/protobuf/generated_message_table_driven.h include/google/protobuf/generated_message_util.h include/google/protobuf/has_bits.h +include/google/protobuf/implicit_weak_message.h +include/google/protobuf/inlined_string_field.h include/google/protobuf/io/coded_stream.h include/google/protobuf/io/gzip_stream.h include/google/protobuf/io/printer.h @@ -72,20 +73,6 @@ include/google/protobuf/source_context.pb.h include/google/protobuf/source_context.proto include/google/protobuf/struct.pb.h include/google/protobuf/struct.proto -include/google/protobuf/stubs/atomic_sequence_num.h -include/google/protobuf/stubs/atomicops.h -include/google/protobuf/stubs/atomicops_internals_arm64_gcc.h -include/google/protobuf/stubs/atomicops_internals_arm_gcc.h -include/google/protobuf/stubs/atomicops_internals_arm_qnx.h -include/google/protobuf/stubs/atomicops_internals_generic_c11_atomic.h -include/google/protobuf/stubs/atomicops_internals_generic_gcc.h -include/google/protobuf/stubs/atomicops_internals_mips_gcc.h -include/google/protobuf/stubs/atomicops_internals_power.h -include/google/protobuf/stubs/atomicops_internals_ppc_gcc.h -include/google/protobuf/stubs/atomicops_internals_solaris.h -include/google/protobuf/stubs/atomicops_internals_tsan.h -include/google/protobuf/stubs/atomicops_internals_x86_gcc.h -include/google/protobuf/stubs/atomicops_internals_x86_msvc.h include/google/protobuf/stubs/bytestream.h include/google/protobuf/stubs/callback.h include/google/protobuf/stubs/casts.h @@ -98,14 +85,11 @@ include/google/protobuf/stubs/mutex.h include/google/protobuf/stubs/once.h include/google/protobuf/stubs/platform_macros.h include/google/protobuf/stubs/port.h -include/google/protobuf/stubs/scoped_ptr.h -include/google/protobuf/stubs/shared_ptr.h include/google/protobuf/stubs/singleton.h include/google/protobuf/stubs/status.h include/google/protobuf/stubs/stl_util.h include/google/protobuf/stubs/stringpiece.h include/google/protobuf/stubs/template_util.h -include/google/protobuf/stubs/type_traits.h include/google/protobuf/text_format.h include/google/protobuf/timestamp.pb.h include/google/protobuf/timestamp.proto @@ -127,15 +111,15 @@ include/google/protobuf/wrappers.pb.h include/google/protobuf/wrappers.proto lib/libprotobuf-lite.a lib/libprotobuf-lite.so -lib/libprotobuf-lite.so.15 -lib/libprotobuf-lite.so.15.0.1 +lib/libprotobuf-lite.so.17 +lib/libprotobuf-lite.so.17.0.0 lib/libprotobuf.a lib/libprotobuf.so -lib/libprotobuf.so.15 -lib/libprotobuf.so.15.0.1 +lib/libprotobuf.so.17 +lib/libprotobuf.so.17.0.0 lib/libprotoc.a lib/libprotoc.so -lib/libprotoc.so.15 -lib/libprotoc.so.15.0.1 +lib/libprotoc.so.17 +lib/libprotoc.so.17.0.0 libdata/pkgconfig/protobuf-lite.pc libdata/pkgconfig/protobuf.pc diff --git a/dns/dnsdist/Makefile b/dns/dnsdist/Makefile index 958e10fbc930..965af070f174 100644 --- a/dns/dnsdist/Makefile +++ b/dns/dnsdist/Makefile @@ -3,7 +3,7 @@ PORTNAME= dnsdist DISTVERSION= 1.3.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= dns net MASTER_SITES= https://downloads.powerdns.com/releases/ \ LOCAL/cpm diff --git a/dns/knot-resolver/Makefile b/dns/knot-resolver/Makefile index d18724cf2438..b9883e275b8e 100644 --- a/dns/knot-resolver/Makefile +++ b/dns/knot-resolver/Makefile @@ -3,6 +3,7 @@ PORTNAME= knot-resolver DISTVERSION= 3.1.0 +PORTREVISION= 1 CATEGORIES= dns ipv6 MASTER_SITES= https://secure.nic.cz/files/knot-resolver/ \ https://dns.company/downloads/knot-resolver/ diff --git a/dns/powerdns-recursor/Makefile b/dns/powerdns-recursor/Makefile index 8e96e8b3bf0b..954b561a0583 100644 --- a/dns/powerdns-recursor/Makefile +++ b/dns/powerdns-recursor/Makefile @@ -3,6 +3,7 @@ PORTNAME= recursor DISTVERSION= 4.1.7 +PORTREVISION= 1 CATEGORIES= dns ipv6 MASTER_SITES= http://downloads.powerdns.com/releases/ PKGNAMEPREFIX= powerdns- diff --git a/dns/powerdns-recursor40/Makefile b/dns/powerdns-recursor40/Makefile index 33398841b101..b79c06284b6b 100644 --- a/dns/powerdns-recursor40/Makefile +++ b/dns/powerdns-recursor40/Makefile @@ -3,7 +3,7 @@ PORTNAME= recursor DISTVERSION= 4.0.9 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= dns ipv6 MASTER_SITES= http://downloads.powerdns.com/releases/ PKGNAMEPREFIX= powerdns- diff --git a/dns/powerdns/Makefile b/dns/powerdns/Makefile index 3e29470a9d7e..2e54a22ac9ec 100644 --- a/dns/powerdns/Makefile +++ b/dns/powerdns/Makefile @@ -2,6 +2,7 @@ PORTNAME= powerdns DISTVERSION= 4.1.5 +PORTREVISION= 1 CATEGORIES= dns ipv6 MASTER_SITES= http://downloads.powerdns.com/releases/ DISTNAME= pdns-${DISTVERSION} diff --git a/games/cockatrice/Makefile b/games/cockatrice/Makefile index 8f291322c2a5..ce2c0696ea8f 100644 --- a/games/cockatrice/Makefile +++ b/games/cockatrice/Makefile @@ -3,7 +3,7 @@ PORTNAME= Cockatrice PORTVERSION= 2.6.1.g2018.07.17 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MAINTAINER= sbruno@FreeBSD.org diff --git a/games/pink-pony/Makefile b/games/pink-pony/Makefile index f2fd9ea0eafd..508d15a9116c 100644 --- a/games/pink-pony/Makefile +++ b/games/pink-pony/Makefile @@ -3,7 +3,7 @@ PORTNAME= pink-pony PORTVERSION= 1.4.1 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= games MAINTAINER= amdmi3@FreeBSD.org diff --git a/games/pokerth/Makefile b/games/pokerth/Makefile index d254a5a0ebee..e964bb92e302 100644 --- a/games/pokerth/Makefile +++ b/games/pokerth/Makefile @@ -3,7 +3,7 @@ PORTNAME= pokerth PORTVERSION= 1.1.2 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= games MASTER_SITES= SF @@ -26,7 +26,8 @@ LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ BUILD_DEPENDS= ${LOCALBASE}/include/libircclient.h:irc/libircclient \ protoc:devel/protobuf -USES= iconv gmake qmake qt:4 sqlite ssl +USES= compiler:c++11-lang iconv gmake qmake qt:4 sqlite ssl +USE_CXXSTD= c++11 USE_QT= gui corelib network sql sql-sqlite3 \ moc_build rcc_build uic_build USE_SDL= mixer diff --git a/graphics/caffe/Makefile b/graphics/caffe/Makefile index 071a41cd8e00..90a82efff1a4 100644 --- a/graphics/caffe/Makefile +++ b/graphics/caffe/Makefile @@ -2,7 +2,7 @@ PORTNAME= caffe PORTVERSION= 1.0 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= graphics MAINTAINER= eric@camachat.org @@ -36,8 +36,9 @@ RUN_DEPENDS= ${PYNUMPY} \ ${PYTHON_PKGNAMEPREFIX}matplotlib>=1.1:math/py-matplotlib@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}PyWavelets>=0.4:math/py-PyWavelets@${PY_FLAVOR} +USES= compiler:c++11-lib fortran gmake pkgconfig python:2.7 +USE_CXXSTD= c++11 USE_LDCONFIG= yes -USES= gmake python:2.7 fortran compiler:c++11-lib pkgconfig USE_PYTHON= flavors cython CXXFLAGS+= -DGTEST_USE_OWN_TR1_TUPLE=1 diff --git a/graphics/opencv/Makefile b/graphics/opencv/Makefile index 72e7479b0c72..bb29c3a4f761 100644 --- a/graphics/opencv/Makefile +++ b/graphics/opencv/Makefile @@ -3,7 +3,7 @@ PORTNAME= opencv PORTVERSION= 3.4.1 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= graphics MAINTAINER= ports@FreeBSD.org diff --git a/graphics/osgearth/Makefile b/graphics/osgearth/Makefile index 980134167d1b..642bdc67e898 100644 --- a/graphics/osgearth/Makefile +++ b/graphics/osgearth/Makefile @@ -4,7 +4,7 @@ PORTNAME= osgearth PORTVERSION= 2.9 DISTVERSIONPREFIX= ${PORTNAME}- -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics geography MAINTAINER= lbartoletti@tuxfamily.org @@ -22,11 +22,12 @@ LIB_DEPENDS= libosg.so:graphics/osg \ libprotoc.so:devel/protobuf \ librocksdb.so:databases/rocksdb -USES= cmake pkgconfig sqlite +USES= cmake compiler:c++11-lang pkgconfig sqlite USE_GITHUB= yes GH_ACCOUNT= gwaldron +USE_CXXSTD= c++11 USE_LDCONFIG= yes USE_GL+= gl glu PLIST_SUB= OSGVERSION=3.4.0 diff --git a/japanese/mozc-server/Makefile b/japanese/mozc-server/Makefile index 6eaf7332da7e..fe35bdc204a9 100644 --- a/japanese/mozc-server/Makefile +++ b/japanese/mozc-server/Makefile @@ -4,7 +4,7 @@ PORTNAME= mozc PORTVERSION= 2.20.2677.102.02 DISTVERSIONPREFIX= v -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= japanese MAINTAINER= hrs@FreeBSD.org diff --git a/multimedia/vlc3/Makefile b/multimedia/vlc3/Makefile index e6d1e1e9b4f0..d83d4283aaf3 100644 --- a/multimedia/vlc3/Makefile +++ b/multimedia/vlc3/Makefile @@ -3,7 +3,7 @@ PORTNAME= vlc DISTVERSION= 3.0.4 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 4 CATEGORIES= multimedia audio ipv6 net www MASTER_SITES= http://download.videolan.org/pub/videolan/${PORTNAME}/${DISTVERSION:S/a$//}/ \ diff --git a/net-im/ricochet/Makefile b/net-im/ricochet/Makefile index e95ca40aed4c..c4f18250b5b1 100644 --- a/net-im/ricochet/Makefile +++ b/net-im/ricochet/Makefile @@ -4,7 +4,7 @@ PORTNAME= ricochet PORTVERSION= 1.1.4 DISTVERSIONPREFIX= v -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= net-im net-p2p MAINTAINER= yuri@FreeBSD.org diff --git a/net-mgmt/collectd5/Makefile b/net-mgmt/collectd5/Makefile index 3033e26bad28..d8e2e5c14e63 100644 --- a/net-mgmt/collectd5/Makefile +++ b/net-mgmt/collectd5/Makefile @@ -3,6 +3,7 @@ PORTNAME= collectd PORTVERSION= 5.8.1 +PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= https://storage.googleapis.com/collectd-tarballs/ PKGNAMESUFFIX= 5 diff --git a/net-p2p/bitcoin/Makefile b/net-p2p/bitcoin/Makefile index 7800c2df8180..8697c9cdf1ba 100644 --- a/net-p2p/bitcoin/Makefile +++ b/net-p2p/bitcoin/Makefile @@ -3,7 +3,7 @@ PORTNAME= bitcoin PORTVERSION= 0.17.0 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= net-p2p finance MASTER_SITES= https://bitcoincore.org/bin/bitcoin-core-${PORTVERSION}/:DEFAULT \ LOCAL/swills:icon diff --git a/net-p2p/litecoin/Makefile b/net-p2p/litecoin/Makefile index 4b11ac72dbef..a793248a32ea 100644 --- a/net-p2p/litecoin/Makefile +++ b/net-p2p/litecoin/Makefile @@ -3,6 +3,7 @@ PORTNAME= litecoin PORTVERSION= 0.16.3 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= net-p2p finance diff --git a/net-p2p/namecoin/Makefile b/net-p2p/namecoin/Makefile index 309488c8ba39..00dd8c5951d3 100644 --- a/net-p2p/namecoin/Makefile +++ b/net-p2p/namecoin/Makefile @@ -3,6 +3,7 @@ PORTNAME= namecoin PORTVERSION= 0.17.0 +PORTREVISION= 1 DISTVERSIONPREFIX= nc PORTEPOCH= 1 CATEGORIES= net-p2p dns diff --git a/net-p2p/qtum/Makefile b/net-p2p/qtum/Makefile index 464953375c3b..664ab39598d1 100644 --- a/net-p2p/qtum/Makefile +++ b/net-p2p/qtum/Makefile @@ -3,6 +3,7 @@ PORTNAME= qtum PORTVERSION= 0.16.1 +PORTREVISION= 1 DISTVERSIONPREFIX= mainnet-ignition-v CATEGORIES= net-p2p finance diff --git a/net-p2p/zetacoin/Makefile b/net-p2p/zetacoin/Makefile index 0c5e1dde9b07..cdb140e11b23 100644 --- a/net-p2p/zetacoin/Makefile +++ b/net-p2p/zetacoin/Makefile @@ -4,7 +4,7 @@ PORTNAME= zetacoin PORTVERSION= 0.11.2.3 DISTVERSIONPREFIX= v -PORTREVISION= 22 +PORTREVISION= 23 CATEGORIES= net-p2p finance MAINTAINER= daniel@morante.net @@ -14,7 +14,8 @@ LICENSE= MIT LIB_DEPENDS= libboost_date_time.so:devel/boost-libs -USES+= autoreconf compiler:c++0x gmake libtool pkgconfig:build ssl +USES+= autoreconf compiler:c++11-lang gmake libtool pkgconfig:build ssl +USE_CXXSTD= c++11 CFLAGS+= -I${OPENSSLINC} LDFLAGS+= -L${OPENSSLLIB} diff --git a/net/eternalterminal/Makefile b/net/eternalterminal/Makefile index 19b132e8fbb1..2ba413d8c75d 100644 --- a/net/eternalterminal/Makefile +++ b/net/eternalterminal/Makefile @@ -3,6 +3,7 @@ PORTNAME= eternalterminal DISTVERSIONPREFIX= et-v DISTVERSION= 4.2.1 +PORTREVISION= 1 CATEGORIES= net MAINTAINER= trevis@silencedpoet.com diff --git a/net/mosh/Makefile b/net/mosh/Makefile index 5fbbc086049c..134571db4d6a 100644 --- a/net/mosh/Makefile +++ b/net/mosh/Makefile @@ -3,7 +3,7 @@ PORTNAME= mosh PORTVERSION= 1.3.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net MASTER_SITES= http://mosh.mit.edu/ \ ZI @@ -23,7 +23,8 @@ CONFIGURE_ARGS= --with-utempter --without-ncurses CONFIGURE_ENV+= CRYPTO_CFLAGS="-I${OPENSSLINC}" CRYPTO_LIBS="-L${OPENSSLLIB} -lssl -lcrypto" \ TINFO_CFLAGS="-I/usr/include" INSTALL_TARGET= install-strip -USES= autoreconf ncurses perl5 pkgconfig ssl +USES= autoreconf compiler:c++11-lang ncurses perl5 pkgconfig ssl +USE_CXXSTD= c++11 CONFLICTS_INSTALL= mosh-0.[2-9].* diff --git a/net/ostinato/Makefile b/net/ostinato/Makefile index 159858db3e0b..a689bb9d4032 100644 --- a/net/ostinato/Makefile +++ b/net/ostinato/Makefile @@ -3,7 +3,7 @@ PORTNAME= ostinato PORTVERSION= 0.8 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= net security MASTER_SITES= https://bintray.com/artifact/download/pstavirs/ostinato/ DISTNAME= ${PORTNAME}-src-${PORTVERSION} @@ -19,6 +19,7 @@ EXPIRATION_DATE= 2019-03-15 LIB_DEPENDS= libprotobuf.so:devel/protobuf USES= compiler:c++11-lang qmake qt:4 +USE_CXXSTD= c++11 USE_QT= corelib gui moc_build rcc_build uic_build network script \ xml diff --git a/net/spoofer/Makefile b/net/spoofer/Makefile index 17078525fc41..7113e1da4599 100644 --- a/net/spoofer/Makefile +++ b/net/spoofer/Makefile @@ -3,7 +3,7 @@ PORTNAME= spoofer PORTVERSION= 1.2.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= net MASTER_SITES= http://www.caida.org/projects/spoofer/downloads/ diff --git a/science/lm/Makefile b/science/lm/Makefile index 743fa7f1a5b5..e7566605701e 100644 --- a/science/lm/Makefile +++ b/science/lm/Makefile @@ -2,7 +2,7 @@ PORTNAME= lm DISTVERSION= 2.3.0 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONSUFFIX= -src CATEGORIES= science MASTER_SITES= http://scs.illinois.edu/schulten/${PORTNAME}/download/${PORTNAME}${DISTVERSION:R:S/.//}/ @@ -21,11 +21,12 @@ LIB_DEPENDS= libhdf5.so:science/hdf5 \ libprotobuf.so:devel/protobuf \ libsz.so:science/szip -USES= gettext-runtime gmake +USES= compiler:c++11-lang gettext-runtime gmake WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} CXXFLAGS+= -DLINUX MAKE_ENV= BUILD_DIR=${WRKSRC} PROTOBUF_DIR=${LOCALBASE} +USE_CXXSTD= c++11 OPTIONS_DEFINE= MPI PYTHON VMD OPTIONS_DEFAULT= MPI PYTHON # VMD can't be default because VMD requires manual tarball fetch diff --git a/science/paraview/Makefile b/science/paraview/Makefile index 576305dbc217..602e3a6497ea 100644 --- a/science/paraview/Makefile +++ b/science/paraview/Makefile @@ -3,7 +3,7 @@ PORTNAME= paraview DISTVERSION= 5.5.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= science graphics MASTER_SITES= http://www.paraview.org/files/v${VERMAJORMINOR}/ DISTNAME= ParaView-v${PORTVERSION} diff --git a/security/certificate-transparency/Makefile b/security/certificate-transparency/Makefile index 15cc9872fe2a..22d0fd9e6b08 100644 --- a/security/certificate-transparency/Makefile +++ b/security/certificate-transparency/Makefile @@ -3,7 +3,7 @@ PORTNAME= certificate-transparency PORTVERSION= 20161015 -PORTREVISION= 29 +PORTREVISION= 30 CATEGORIES= security MAINTAINER= ports@FreeBSD.org diff --git a/sysutils/zbackup/Makefile b/sysutils/zbackup/Makefile index 43e293b87f47..10bdaa47d338 100644 --- a/sysutils/zbackup/Makefile +++ b/sysutils/zbackup/Makefile @@ -2,7 +2,7 @@ PORTNAME= zbackup PORTVERSION= 1.4.4 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= sysutils MAINTAINER= ports@FreeBSD.org @@ -14,6 +14,7 @@ LIB_DEPENDS= libprotobuf.so:devel/protobuf \ liblzo2.so:archivers/lzo2 USES= alias cmake compiler:c++11-lang ssl +USE_CXXSTD= c++11 USE_GITHUB= yes OPTIONS_DEFINE= DOCS diff --git a/www/mod_pagespeed/Makefile b/www/mod_pagespeed/Makefile index cd0f6e1cf578..350919d06272 100644 --- a/www/mod_pagespeed/Makefile +++ b/www/mod_pagespeed/Makefile @@ -2,7 +2,7 @@ PORTNAME= mod_pagespeed PORTVERSION= 1.12.34.2 -PORTREVISION= 15 +PORTREVISION= 16 PORTEPOCH= 1 CATEGORIES= www devel MASTER_SITES= LOCAL/mmokhi:boringssl,chromium_base,chromium_build,googleurl,gflags_arch,gflags_src,libjpeg_turbo_src,yasm_patched,libwebp,modpb64 \ |