From owner-svn-ports-all@freebsd.org Mon Apr 3 11:14:41 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2404FD2B4FF; Mon, 3 Apr 2017 11:14:41 +0000 (UTC) (envelope-from bapt@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 mx1.freebsd.org (Postfix) with ESMTPS id EA1B6C56; Mon, 3 Apr 2017 11:14:40 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v33BEe9F039904; Mon, 3 Apr 2017 11:14:40 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v33BEdB4039902; Mon, 3 Apr 2017 11:14:39 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201704031114.v33BEdB4039902@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Mon, 3 Apr 2017 11:14:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r437614 - in head/graphics: aeskulap gx 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.23 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: Mon, 03 Apr 2017 11:14:41 -0000 Author: bapt Date: Mon Apr 3 11:14:39 2017 New Revision: 437614 URL: https://svnweb.freebsd.org/changeset/ports/437614 Log: Fix build with newer sigc++20 Modified: head/graphics/aeskulap/Makefile head/graphics/gx/Makefile Modified: head/graphics/aeskulap/Makefile ============================================================================== --- head/graphics/aeskulap/Makefile Mon Apr 3 11:12:30 2017 (r437613) +++ head/graphics/aeskulap/Makefile Mon Apr 3 11:14:39 2017 (r437614) @@ -18,8 +18,9 @@ USE_GITHUB= yes GH_ACCOUNT= pipelka GH_TAGNAME= ea0a119 -USES= autoreconf desktop-file-utils gettext gmake libtool localbase \ - pkgconfig +USES= compiler:c++11-lang autoreconf desktop-file-utils gettext gmake \ + libtool localbase pkgconfig +USE_CXXSTD= c++11 USE_GNOME= gconfmm26 gtkmm24 intltool GCONF_SCHEMAS= aeskulap.schemas USE_LDCONFIG= ${PREFIX}/lib/aeskulap Modified: head/graphics/gx/Makefile ============================================================================== --- head/graphics/gx/Makefile Mon Apr 3 11:12:30 2017 (r437613) +++ head/graphics/gx/Makefile Mon Apr 3 11:14:39 2017 (r437614) @@ -15,7 +15,8 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libgnomevfsmm-2.6.so:devel/gnome-vfsmm -USES= desktop-file-utils gettext pkgconfig +USES= compiler:c++11-lang desktop-file-utils gettext pkgconfig +USE_CXXSTD= c++11 USE_GNOME= gconfmm26 gtkmm24 GNU_CONFIGURE= yes