Date: Tue, 9 Dec 2014 21:47:04 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374432 - in head: archivers/file-roller deskutils/gnote graphics/evince www/webkit-gtk3 Message-ID: <201412092147.sB9Ll4Qg018497@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: antoine Date: Tue Dec 9 21:47:03 2014 New Revision: 374432 URL: https://svnweb.freebsd.org/changeset/ports/374432 QAT: https://qat.redports.org/buildarchive/r374432/ Log: Mark BROKEN on freebsd 8, fail to build Reported by: pkg-fallout Modified: head/archivers/file-roller/Makefile head/deskutils/gnote/Makefile head/graphics/evince/Makefile head/www/webkit-gtk3/Makefile Modified: head/archivers/file-roller/Makefile ============================================================================== --- head/archivers/file-roller/Makefile Tue Dec 9 21:39:32 2014 (r374431) +++ head/archivers/file-roller/Makefile Tue Dec 9 21:47:03 2014 (r374432) @@ -45,6 +45,10 @@ post-patch: .include <bsd.port.options.mk> +.if ${OSVERSION} < 900000 +BROKEN= Fails to build +.endif + post-install: .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: head/deskutils/gnote/Makefile ============================================================================== --- head/deskutils/gnote/Makefile Tue Dec 9 21:39:32 2014 (r374431) +++ head/deskutils/gnote/Makefile Tue Dec 9 21:47:03 2014 (r374432) @@ -38,6 +38,10 @@ DOCS= AUTHORS ChangeLog NEWS README TOD .include <bsd.port.options.mk> +.if ${OSVERSION} < 900000 +BROKEN= Fails to build +.endif + PLIST_SUB+= VERSION=${PORTVERSION} post-install: Modified: head/graphics/evince/Makefile ============================================================================== --- head/graphics/evince/Makefile Tue Dec 9 21:39:32 2014 (r374431) +++ head/graphics/evince/Makefile Tue Dec 9 21:47:03 2014 (r374432) @@ -51,6 +51,10 @@ XPS_DESC= XPS support .include <bsd.port.options.mk> +.if ${OSVERSION} < 900000 +BROKEN= Fails to build +.endif + .if ${PORT_OPTIONS:MDVI} || ${PORT_OPTIONS:MT1LIB} USE_TEX= latex Modified: head/www/webkit-gtk3/Makefile ============================================================================== --- head/www/webkit-gtk3/Makefile Tue Dec 9 21:39:32 2014 (r374431) +++ head/www/webkit-gtk3/Makefile Tue Dec 9 21:47:03 2014 (r374432) @@ -90,6 +90,9 @@ CXXFLAGS+= -Wno-c++11-extensions -Qunuse CONFIGURE_ARGS+=--enable-webkit2 # We need clang + libc++ or gcc 4.7+. gcc has libstdc++ conflict between # gcc port and base. This originates from icu +.if ${OSVERSION} < 900000 +BROKEN= Fails to build +.endif .if ${OSVERSION}<1000019 CXXFLAGS+= -stdlib=libc++ -I${LOCALBASE}/include/c++/v1 LDFLAGS+= -stdlib=libc++
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412092147.sB9Ll4Qg018497>