From owner-svn-ports-branches@freebsd.org Sat Apr 22 14:48:45 2017 Return-Path: Delivered-To: svn-ports-branches@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 BFAAED4A37C; Sat, 22 Apr 2017 14:48:45 +0000 (UTC) (envelope-from riggs@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 8C4C62B9; Sat, 22 Apr 2017 14:48:45 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v3MEmiwK033831; Sat, 22 Apr 2017 14:48:44 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v3MEmiNK033830; Sat, 22 Apr 2017 14:48:44 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201704221448.v3MEmiNK033830@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 22 Apr 2017 14:48:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r439177 - in branches/2017Q2/multimedia/subtitleeditor: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Apr 2017 14:48:45 -0000 Author: riggs Date: Sat Apr 22 14:48:44 2017 New Revision: 439177 URL: https://svnweb.freebsd.org/changeset/ports/439177 Log: MFH: r439176 Fix build after dependencies enforce C++11 Approved by: ports-secteam (build fix blanket) Added: branches/2017Q2/multimedia/subtitleeditor/files/ - copied from r439176, head/multimedia/subtitleeditor/files/ Modified: branches/2017Q2/multimedia/subtitleeditor/Makefile Directory Properties: branches/2017Q2/ (props changed) Modified: branches/2017Q2/multimedia/subtitleeditor/Makefile ============================================================================== --- branches/2017Q2/multimedia/subtitleeditor/Makefile Sat Apr 22 14:44:11 2017 (r439176) +++ branches/2017Q2/multimedia/subtitleeditor/Makefile Sat Apr 22 14:48:44 2017 (r439177) @@ -17,7 +17,7 @@ LIB_DEPENDS= libglademm-2.4.so:devel/lib libenchant.so:textproc/enchant RUN_DEPENDS:= ${BUILD_DEPENDS} -USES= desktop-file-utils gettext gmake libtool pkgconfig +USES= compiler:c++11-lang desktop-file-utils gettext gmake libtool pkgconfig USE_GNOME= gtkmm24 intltool USE_GSTREAMER= good mm GNU_CONFIGURE= yes @@ -25,6 +25,7 @@ INSTALL_TARGET= install-strip INSTALLS_ICONS= yes CPPFLAGS+= -I${LOCALBASE}/include +CXXFLAGS+= -std=c++11 LDFLAGS+= -L${LOCALBASE}/lib OPTIONS_DEFINE= NLS OPENGL