svn commit: r478317 - head/www/bookmarkbridge

Tobias Kortkamp tobik at FreeBSD.org
Tue Aug 28 13:55:35 UTC 2018


Author: tobik
Date: Tue Aug 28 13:55:34 2018
New Revision: 478317
URL: https://svnweb.freebsd.org/changeset/ports/478317

Log:
  www/bookmarkbridge: Fix build with Clang 6
  
  xbelwrite.cpp:90:7: error: declaration of variable 'QString' with deduced type 'auto' requires an initializer
          auto    QString tempstr;
                  ^
  
  http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/bookmarkbridge-0.76_6.log
  
  - Deprecate it.  It is doubtful this works correctly with modern
    browsers anymore.

Modified:
  head/www/bookmarkbridge/Makefile

Modified: head/www/bookmarkbridge/Makefile
==============================================================================
--- head/www/bookmarkbridge/Makefile	Tue Aug 28 13:48:01 2018	(r478316)
+++ head/www/bookmarkbridge/Makefile	Tue Aug 28 13:55:34 2018	(r478317)
@@ -13,7 +13,11 @@ COMMENT=	Synchronize bookmarks between multiple browse
 LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
+DEPRECATED=	Unmaintained. Unlikely to work correctly with modern browsers
+EXPIRATION_DATE=	2018-09-15
+
 USES=		autoreconf gmake perl5 pkgconfig qt:4 shebangfix
+USE_CXXSTD=	gnu++98
 SHEBANG_FILES=	bookmarkbridge/docs/autodocs.pl
 USE_XORG=	x11 ice xext
 USE_QT=		corelib gui qt3support moc_build rcc_build uic_build


More information about the svn-ports-head mailing list