From owner-svn-ports-all@FreeBSD.ORG Tue Dec 9 21:47:05 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5DDE4F3; Tue, 9 Dec 2014 21:47:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 30D67A9D; Tue, 9 Dec 2014 21:47:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sB9Ll5er018504; Tue, 9 Dec 2014 21:47:05 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sB9Ll4Qg018497; Tue, 9 Dec 2014 21:47:04 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201412092147.sB9Ll4Qg018497@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 9 Dec 2014 21:47:04 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Dec 2014 21:47:05 -0000 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 +.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 +.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 +.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++