From owner-svn-ports-head@freebsd.org Thu Apr 5 03:01:24 2018 Return-Path: Delivered-To: svn-ports-head@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 218B2F810B3; Thu, 5 Apr 2018 03:01:24 +0000 (UTC) (envelope-from danilo@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 DF02782D59; Thu, 5 Apr 2018 03:01:23 +0000 (UTC) (envelope-from danilo@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 D82FE1CC07; Thu, 5 Apr 2018 03:01:23 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3531Nb2024597; Thu, 5 Apr 2018 03:01:23 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3531NoU024596; Thu, 5 Apr 2018 03:01:23 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201804050301.w3531NoU024596@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Thu, 5 Apr 2018 03:01:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466524 - head/emulators/mame X-SVN-Group: ports-head X-SVN-Commit-Author: danilo X-SVN-Commit-Paths: head/emulators/mame X-SVN-Commit-Revision: 466524 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Apr 2018 03:01:24 -0000 Author: danilo Date: Thu Apr 5 03:01:23 2018 New Revision: 466524 URL: https://svnweb.freebsd.org/changeset/ports/466524 Log: - Use compiler:c++14-lang instead of an if statement - Split USES to a separate block Reported by: jbeich, mat Modified: head/emulators/mame/Makefile Modified: head/emulators/mame/Makefile ============================================================================== --- head/emulators/mame/Makefile Thu Apr 5 02:55:43 2018 (r466523) +++ head/emulators/mame/Makefile Thu Apr 5 03:01:23 2018 (r466524) @@ -19,21 +19,14 @@ LIB_DEPENDS= libFLAC.so:audio/flac \ libfreetype.so:print/freetype2 RUN_DEPENDS= liberation-fonts-ttf>=0:x11-fonts/liberation-fonts-ttf -USES= compiler:c11 gmake jpeg pkgconfig python:2.7,build shebangfix +USES= compiler:c++14-lang gmake jpeg pkgconfig python:2.7,build shebangfix + USE_GITHUB= yes GH_ACCOUNT= mamedev GH_PROJECT= mame # explicit (master port) GH_TAGNAME= mame${PORTVERSION:S/.//} OPTIONS_DEFINE= DEBUG DOCS EXAMPLES - -.include - -.if ${OSVERSION} < 1100055 -BUILD_DEPENDS+= clang50:devel/llvm50 -CC= clang50 -CXX= clang++50 -.endif SHEBANG_FILES= src/devices/cpu/m6502/m6502make.py \ src/devices/cpu/m6809/m6809make.py \