From owner-svn-ports-head@freebsd.org Thu Dec 7 16:38:44 2017 Return-Path: Delivered-To: svn-ports-head@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 7DE0CE8BECA; Thu, 7 Dec 2017 16:38:44 +0000 (UTC) (envelope-from amdmi3@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 480D56C70B; Thu, 7 Dec 2017 16:38:44 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vB7Gch6c007192; Thu, 7 Dec 2017 16:38:43 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vB7Gch3e007190; Thu, 7 Dec 2017 16:38:43 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201712071638.vB7Gch3e007190@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 7 Dec 2017 16:38:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455737 - in head/audio/gnuspeechsa: . files X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in head/audio/gnuspeechsa: . files X-SVN-Commit-Revision: 455737 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, 07 Dec 2017 16:38:44 -0000 Author: amdmi3 Date: Thu Dec 7 16:38:43 2017 New Revision: 455737 URL: https://svnweb.freebsd.org/changeset/ports/455737 Log: - Remove -march=native; should unbreak aarch64/powerpc64 Modified: head/audio/gnuspeechsa/Makefile head/audio/gnuspeechsa/files/patch-CMakeLists.txt Modified: head/audio/gnuspeechsa/Makefile ============================================================================== --- head/audio/gnuspeechsa/Makefile Thu Dec 7 16:13:25 2017 (r455736) +++ head/audio/gnuspeechsa/Makefile Thu Dec 7 16:38:43 2017 (r455737) @@ -3,7 +3,7 @@ PORTNAME= gnuspeechsa PORTVERSION= 0.1.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= GNU/gnuspeech @@ -13,9 +13,6 @@ COMMENT= Command line, or application-based speech out LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_aarch64= Does not build: the clang compiler does not support -march=native -BROKEN_powerpc64= Does not build: the clang compiler does not support -march=native - USES= cmake compiler:c++11-lib PORTDOCS= README @@ -23,7 +20,7 @@ PORTDOCS= README OPTIONS_DEFINE= DOCS post-install-DOCS-on: - ${MKDIR} ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}/ .include Modified: head/audio/gnuspeechsa/files/patch-CMakeLists.txt ============================================================================== --- head/audio/gnuspeechsa/files/patch-CMakeLists.txt Thu Dec 7 16:13:25 2017 (r455736) +++ head/audio/gnuspeechsa/files/patch-CMakeLists.txt Thu Dec 7 16:38:43 2017 (r455737) @@ -1,5 +1,14 @@ --- CMakeLists.txt.orig 2015-08-23 17:14:40 UTC +++ CMakeLists.txt +@@ -5,7 +5,7 @@ if(UNIX) + if(APPLE) + set(CMAKE_CXX_FLAGS "-std=c++11 -stdlib=libc++") + else() +- set(CMAKE_CXX_FLAGS "-std=c++11 -Wall -Wextra -march=native") ++ set(CMAKE_CXX_FLAGS "-std=c++11 -Wall -Wextra") + endif() + endif() + @@ -137,7 +137,7 @@ if(UNIX AND NOT APPLE) install(DIRECTORY src/ DESTINATION include/gnuspeechsa FILES_MATCHING PATTERN "*.h") install(DIRECTORY data DESTINATION share/gnuspeech/gnuspeechsa)