From owner-svn-ports-head@freebsd.org Sat Dec 10 12:17:58 2016 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 DA55CC6E29E; Sat, 10 Dec 2016 12:17:58 +0000 (UTC) (envelope-from jbeich@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 A9EB9177A; Sat, 10 Dec 2016 12:17:58 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBACHv6e034423; Sat, 10 Dec 2016 12:17:57 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBACHv5h034422; Sat, 10 Dec 2016 12:17:57 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201612101217.uBACHv5h034422@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 10 Dec 2016 12:17:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428281 - head/audio/sayonara X-SVN-Group: ports-head 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.23 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: Sat, 10 Dec 2016 12:17:59 -0000 Author: jbeich Date: Sat Dec 10 12:17:57 2016 New Revision: 428281 URL: https://svnweb.freebsd.org/changeset/ports/428281 Log: audio/sayonara: unbreak on 9.x -- Performing Test CXX_CAN_11 -- Performing Test CXX_CAN_11 - Failed -- Performing Test CXX_CAN_0X -- Performing Test CXX_CAN_0X - Failed CMake Error at src/CMakeLists.txt:43 (FATAL_ERROR): Unknown CMake command "FATAL_ERROR". Reported by: pkg-fallout Modified: head/audio/sayonara/Makefile (contents, props changed) Modified: head/audio/sayonara/Makefile ============================================================================== --- head/audio/sayonara/Makefile Sat Dec 10 11:52:30 2016 (r428280) +++ head/audio/sayonara/Makefile Sat Dec 10 12:17:57 2016 (r428281) @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/license.txt LIB_DEPENDS= libtag.so:audio/taglib -USES= cmake execinfo pkgconfig +USES= cmake compiler:c++11-lib execinfo pkgconfig USE_GSTREAMER1= flac mpg123 ogg opus vorbis # XXX: likely incomplete USE_QT5= dbus core gui network sql widgets xml \ buildtools_build qmake_build linguisttools_build @@ -28,5 +28,9 @@ post-patch: ${WRKSRC}/resources/CMakeLists.txt @${REINPLACE_CMD} -e '/DESTINATION/s,/usr/,,' \ ${WRKSRC}/src/GUI/Resources/Icons/CMakeLists.txt +.if !exists(/usr/libdata/pkgconfig/zlib.pc) + @${REINPLACE_CMD} -e '/zlib/s/PKG_CHECK_MODULES/FIND_PACKAGE/' \ + ${WRKSRC}/src/Helper/Compressor/CMakeLists.txt +.endif .include