From owner-svn-ports-all@FreeBSD.ORG Thu Jun 4 07:56:19 2015 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 D86EC6E; Thu, 4 Jun 2015 07:56:19 +0000 (UTC) (envelope-from tijl@FreeBSD.org) 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 C767911C1; Thu, 4 Jun 2015 07:56:19 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t547uJnx005595; Thu, 4 Jun 2015 07:56:19 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t547uJN4005594; Thu, 4 Jun 2015 07:56:19 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201506040756.t547uJN4005594@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Thu, 4 Jun 2015 07:56:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388498 - head/multimedia/dvdstyler 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.20 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: Thu, 04 Jun 2015 07:56:20 -0000 Author: tijl Date: Thu Jun 4 07:56:19 2015 New Revision: 388498 URL: https://svnweb.freebsd.org/changeset/ports/388498 Log: - Remove ACLOCAL_ARGS and AUTOMAKE_ARGS. Not needed with USES=autoreconf. - Replace CXXFLAGS+=-std=c++11 with USE_CXXSTD. Modified: head/multimedia/dvdstyler/Makefile Modified: head/multimedia/dvdstyler/Makefile ============================================================================== --- head/multimedia/dvdstyler/Makefile Thu Jun 4 07:31:58 2015 (r388497) +++ head/multimedia/dvdstyler/Makefile Thu Jun 4 07:56:19 2015 (r388498) @@ -30,12 +30,11 @@ RUN_DEPENDS= zip:${PORTSDIR}/archivers/z growisofs:${PORTSDIR}/sysutils/dvd+rw-tools USES= autoreconf compiler:c++11-lib gettext gmake pkgconfig tar:bzip2 +USE_CXXSTD= gnu++11 USE_WX= 3.0 GNU_CONFIGURE= yes WX_UNICODE= yes WX_CONF_ARGS= absolute -ACLOCAL_ARGS= -I ${WRKSRC} -AUTOMAKE_ARGS= --add-missing --copy --force-missing --foreign CONFIGURE_ENV= ac_cv_path_AVCONV_PATH="" OBJCXX="${CXX}" CPPFLAGS+= -I${LOCALBASE}/include @@ -46,18 +45,12 @@ OPTIONS_DEFINE= DOCS GNOME GNOME_USE= GNOME=libgnomeui GNOME_CONFIGURE_WITH= gnome -.include - .if defined(WITH_DVD_DEVICE) DEFAULT_DVD_DEVICE=${WITH_DVD_DEVICE} .else DEFAULT_DVD_DEVICE=/dev/cd0 .endif -.if ${CHOSEN_COMPILER_TYPE} == "gcc" -CXXFLAGS+= -std=c++11 -.endif - pre-everything:: .if !defined(WITH_DVD_DEVICE) @${ECHO_MSG} "===>" @@ -76,4 +69,4 @@ post-patch: @${REINPLACE_CMD} -e 's|/dev/dvd|${DEFAULT_DVD_DEVICE}|g' \ ${WRKSRC}/src/Config.h -.include +.include