From owner-svn-ports-all@freebsd.org Sun Sep 23 04:38:25 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2251010AD398; Sun, 23 Sep 2018 04:38:25 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B97578FC02; Sun, 23 Sep 2018 04:38:24 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A8EEC25B5D; Sun, 23 Sep 2018 04:38:24 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8N4cOSk080090; Sun, 23 Sep 2018 04:38:24 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8N4cN65080082; Sun, 23 Sep 2018 04:38:23 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201809230438.w8N4cN65080082@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sun, 23 Sep 2018 04:38:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480451 - in head: databases/ldb12 games/powder-toy graphics/maim net/haproxy-devel www/davix www/mod_security3 X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head: databases/ldb12 games/powder-toy graphics/maim net/haproxy-devel www/davix www/mod_security3 X-SVN-Commit-Revision: 480451 X-SVN-Commit-Repository: ports 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.27 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: Sun, 23 Sep 2018 04:38:25 -0000 Author: linimon Date: Sun Sep 23 04:38:22 2018 New Revision: 480451 URL: https://svnweb.freebsd.org/changeset/ports/480451 Log: Adjust USES to fix builds on gcc-bases archs. While here, pet portlint. Tested on powerpc64 and amd64. Approved by: portmgr (tier-2 blanket) Modified: head/databases/ldb12/Makefile head/games/powder-toy/Makefile head/graphics/maim/Makefile head/net/haproxy-devel/Makefile head/www/davix/Makefile head/www/mod_security3/Makefile Modified: head/databases/ldb12/Makefile ============================================================================== --- head/databases/ldb12/Makefile Sun Sep 23 01:56:55 2018 (r480450) +++ head/databases/ldb12/Makefile Sun Sep 23 04:38:22 2018 (r480451) @@ -31,7 +31,7 @@ CONFLICTS_INSTALL= ldb-1.1.* ldb13-1.3.* #nopython_CONFLICTS= ldb #default_CONFLICTS= ldb-nopython -USES= compiler pkgconfig waf +USES= compiler:c++11-lang pkgconfig waf USE_LDCONFIG= yes WAF_CMD= buildtools/bin/waf CONFIGURE_LOG= bin/config.log Modified: head/games/powder-toy/Makefile ============================================================================== --- head/games/powder-toy/Makefile Sun Sep 23 01:56:55 2018 (r480450) +++ head/games/powder-toy/Makefile Sun Sep 23 04:38:22 2018 (r480451) @@ -19,7 +19,7 @@ USE_GITHUB= yes GH_ACCOUNT= ThePowderToy GH_PROJECT= The-Powder-Toy -USES= scons localbase:ldflags lua:51 pkgconfig +USES= compiler:c++11-lang scons localbase:ldflags lua:51 pkgconfig USE_SDL= sdl USE_XORG= x11 Modified: head/graphics/maim/Makefile ============================================================================== --- head/graphics/maim/Makefile Sun Sep 23 01:56:55 2018 (r480450) +++ head/graphics/maim/Makefile Sun Sep 23 04:38:22 2018 (r480451) @@ -17,7 +17,7 @@ LIB_DEPENDS= libImlib2.so:graphics/imlib2 \ libpng.so:graphics/png \ libslopy.so:x11/slop -USES= cmake jpeg +USES= cmake compiler:c++11-lang jpeg USE_GITHUB= yes GH_ACCOUNT= naelstrof USE_GL= gl glut Modified: head/net/haproxy-devel/Makefile ============================================================================== --- head/net/haproxy-devel/Makefile Sun Sep 23 01:56:55 2018 (r480450) +++ head/net/haproxy-devel/Makefile Sun Sep 23 04:38:22 2018 (r480451) @@ -16,7 +16,7 @@ LICENSE_COMB= multi CONFLICTS_INSTALL= haproxy-[0-9]* haproxy17-[0-9]* -USES= cpe gmake +USES= compiler:c++11-lang cpe gmake USE_RC_SUBR= haproxy MAKE_ARGS= TARGET=freebsd DEFINE=-DFREEBSD_PORTS USE_GETADDRINFO=1 \ Modified: head/www/davix/Makefile ============================================================================== --- head/www/davix/Makefile Sun Sep 23 01:56:55 2018 (r480450) +++ head/www/davix/Makefile Sun Sep 23 04:38:22 2018 (r480451) @@ -15,7 +15,7 @@ LIB_DEPENDS= libuuid.so:misc/e2fsprogs-libuuid PORTSCOUT= limit:^.*\.[0-9]+$$ -USES= cmake localbase ssl +USES= cmake compiler:c++11-lang localbase ssl USE_GITHUB= yes GH_ACCOUNT= cern-it-sdc-id USE_GNOME= libxml2 Modified: head/www/mod_security3/Makefile ============================================================================== --- head/www/mod_security3/Makefile Sun Sep 23 01:56:55 2018 (r480450) +++ head/www/mod_security3/Makefile Sun Sep 23 04:38:22 2018 (r480451) @@ -17,7 +17,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ libyajl.so:devel/yajl \ libGeoIP.so:net/GeoIP -USES= gmake autoreconf libtool pkgconfig:build +USES= autoreconf compiler:c++11-lang gmake libtool pkgconfig:build USE_GNOME= libxml2 # GCC because of https://github.com/SpiderLabs/ModSecurity/issues/1411 USE_GCC= yes