From owner-freebsd-ports@FreeBSD.ORG Wed May 20 06:06:39 2009 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0EF01106568E for ; Wed, 20 May 2009 06:06:39 +0000 (UTC) (envelope-from dpd@dpdtech.com) Received: from vx1.dpdtech.com (vx1.dpdtech.com [63.246.9.153]) by mx1.freebsd.org (Postfix) with ESMTP id DFF5E8FC13 for ; Wed, 20 May 2009 06:06:38 +0000 (UTC) (envelope-from dpd@dpdtech.com) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=dk20080427b; d=dpdtech.com; h=Received:Message-Id:From:To:Content-Type:Content-Transfer-Encoding:Mime-Version:Subject:Date:Cc:X-Mailer:X-Exiscan; b=NwN9DeXDKs8fQnl+69nZpxh0oLa+ErQ4yN0ht/x7ThMFJPRWiG57HUOUnJcT0IaQTgrVkhxNXF2tuRA9G0BLocljeM95Z0UlvTCBH7u7fIeqV8Usb8cOLfhdiHqP2lux; Received: from [173.8.158.134] (port=52785 helo=[192.168.2.125]) by vx1.dpdtech.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1M6eu1-000Axq-Ab; Wed, 20 May 2009 01:03:45 -0500 Message-Id: <706B7AE4-ECC8-40FA-ABF6-91FECB64C177@dpdtech.com> From: "David P. Discher" To: bsdkaffee@gmail.com Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v935.3) Date: Tue, 19 May 2009 23:06:36 -0700 X-Mailer: Apple Mail (2.935.3) X-Exiscan: Passed Cc: ports@FreeBSD.org Subject: FreeBSD Port: libmusicbrainz3-3.0.2_1 - FindNeon.cmake hard codes /usr/local X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 May 2009 06:06:39 -0000 libmusicbrainz3 FindNeon.cmake file hard codes '/usr/local' instead of respecting LOCALBASE or PREFIX. This is being passed to cmake, Apparently a reversed diff, but the patch is as follows : > diff -u cmake/modules/FindNeon.cmake cmake/modules/ FindNeon.cmake.orig --- cmake/modules/FindNeon.cmake 2009-05-19 22:59:07.000000000 -0700 +++ cmake/modules/FindNeon.cmake.orig 2009-05-19 22:58:01.000000000 -0700 @@ -4,13 +4,13 @@ FIND_PATH(NEON_INCLUDE_DIR ne_request.h ${_NeonIncDir} /usr/include/neon - ${CMAKE_INSTALL_PREFIX}/include/neon + /usr/local/include/neon ) FIND_LIBRARY(NEON_LIBRARIES neon ${_NeonLinkDir} /usr/lib - ${CMAKE_INSTALL_PREFIX}/lib + /usr/local/lib ) IF (NEON_INCLUDE_DIR AND NEON_LIBRARIES) ----------------------------------------------------------------------- David P. Discher * * C: 408.368.3725 * AIM: DavidDPD | Y!M: daviddpdz * H: 408.541.0159 -----------------------------------------------------------------------