From owner-svn-ports-all@freebsd.org Mon Mar 27 20:42:06 2017 Return-Path: Delivered-To: svn-ports-all@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 6B0F9D20E14; Mon, 27 Mar 2017 20:42:06 +0000 (UTC) (envelope-from rakuco@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 2D04C3DD; Mon, 27 Mar 2017 20:42:06 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2RKg5G8079091; Mon, 27 Mar 2017 20:42:05 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2RKg5IM079090; Mon, 27 Mar 2017 20:42:05 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201703272042.v2RKg5IM079090@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Mon, 27 Mar 2017 20:42:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r437084 - head/audio/amarok-kde4/files 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.23 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: Mon, 27 Mar 2017 20:42:06 -0000 Author: rakuco Date: Mon Mar 27 20:42:05 2017 New Revision: 437084 URL: https://svnweb.freebsd.org/changeset/ports/437084 Log: Unbreak after r436971. Ensure libloudmouth-1.so is always passed with a full path to the linker. PR: 212558 Added: head/audio/amarok-kde4/files/patch-cmake_modules_FindLoudmouth.cmake (contents, props changed) Added: head/audio/amarok-kde4/files/patch-cmake_modules_FindLoudmouth.cmake ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/amarok-kde4/files/patch-cmake_modules_FindLoudmouth.cmake Mon Mar 27 20:42:05 2017 (r437084) @@ -0,0 +1,27 @@ +Always use find_path() and find_library() to find Loudmouth so that the full +paths are always used in the compiler and linker. +--- cmake/modules/FindLoudmouth.cmake.orig 2017-03-27 19:37:41 UTC ++++ cmake/modules/FindLoudmouth.cmake +@@ -13,13 +13,6 @@ if (LOUDMOUTH_INCLUDE_DIRS AND LOUDMOUTH + SET(LOUDMOUTH_FOUND TRUE) + + else (LOUDMOUTH_INCLUDE_DIRS AND LOUDMOUTH_LIBRARIES) +- if(NOT WIN32) +- # use pkg-config to get the directories and then use these values +- # in the FIND_PATH() and FIND_LIBRARY() calls +- find_package(PkgConfig) +- PKG_SEARCH_MODULE(LOUDMOUTH loudmouth-1.0) +- +- else(NOT WIN32) + + FIND_PATH(LOUDMOUTH_INCLUDE_DIRS loudmouth/loudmouth.h /usr/local/include/loudmouth-1.0 + ${_LOUDMOUTHIncDir} +@@ -30,8 +23,6 @@ else (LOUDMOUTH_INCLUDE_DIRS AND LOUDMOU + ${_LOUDMOUTHLinkDir} + ) + +- endif(NOT WIN32) +- + if (LOUDMOUTH_INCLUDE_DIRS AND LOUDMOUTH_LIBRARIES) + SET(LOUDMOUTH_FOUND TRUE) + else (LOUDMOUTH_INCLUDE_DIRS AND LOUDMOUTH_LIBRARIES)