From owner-svn-ports-all@freebsd.org Fri Nov 27 05:53:41 2015 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 17242A3AA29; Fri, 27 Nov 2015 05:53:41 +0000 (UTC) (envelope-from grog@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 B98F61D1D; Fri, 27 Nov 2015 05:53:40 +0000 (UTC) (envelope-from grog@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAR5rdhh005723; Fri, 27 Nov 2015 05:53:39 GMT (envelope-from grog@FreeBSD.org) Received: (from grog@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAR5rdXV005721; Fri, 27 Nov 2015 05:53:39 GMT (envelope-from grog@FreeBSD.org) Message-Id: <201511270553.tAR5rdXV005721@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: grog set sender to grog@FreeBSD.org using -f From: Greg Lehey Date: Fri, 27 Nov 2015 05:53:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402471 - in head/graphics/hugin: . 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.20 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: Fri, 27 Nov 2015 05:53:41 -0000 Author: grog (src committer) Date: Fri Nov 27 05:53:39 2015 New Revision: 402471 URL: https://svnweb.freebsd.org/changeset/ports/402471 Log: Depend on sqlite3 Not found by: port test Find a more general way to determine the python path. Approved by: edwin@ (mentor) MFC after: 3 weeks Modified: head/graphics/hugin/Makefile head/graphics/hugin/files/patch-src__hugin_script_interface__CMakeLists.txt Modified: head/graphics/hugin/Makefile ============================================================================== --- head/graphics/hugin/Makefile Fri Nov 27 03:51:32 2015 (r402470) +++ head/graphics/hugin/Makefile Fri Nov 27 05:53:39 2015 (r402471) @@ -3,7 +3,7 @@ PORTNAME= hugin PORTVERSION= 2015.0.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION:R} @@ -16,6 +16,7 @@ LIB_DEPENDS= libIlmImf.so:${PORTSDIR}/gr libexiv2.so:${PORTSDIR}/graphics/exiv2 \ liblensfun.so:${PORTSDIR}/graphics/lensfun \ libpano13.so:${PORTSDIR}/graphics/libpano13 \ + libsqlite3.so:${PORTSDIR}/databases/sqlite3 \ libvigraimpex.so:${PORTSDIR}/graphics/vigra \ libpng.so:${PORTSDIR}/graphics/png \ libtiff.so:${PORTSDIR}/graphics/tiff Modified: head/graphics/hugin/files/patch-src__hugin_script_interface__CMakeLists.txt ============================================================================== --- head/graphics/hugin/files/patch-src__hugin_script_interface__CMakeLists.txt Fri Nov 27 03:51:32 2015 (r402470) +++ head/graphics/hugin/files/patch-src__hugin_script_interface__CMakeLists.txt Fri Nov 27 05:53:39 2015 (r402471) @@ -1,11 +1,11 @@ --- src/hugin_script_interface/CMakeLists.txt~ 2015-07-18 02:44:01.000000000 +1000 -+++ src/hugin_script_interface/CMakeLists.txt 2015-11-23 13:02:39.000000000 +1100 ++++ src/hugin_script_interface/CMakeLists.txt 2015-11-24 12:49:59.000000000 +1100 @@ -201,7 +201,7 @@ # Linux/MacOS # install Python related files into folder depending on used Python version - EXECUTE_PROCESS( COMMAND ${PYTHON_EXECUTABLE} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))" -+ EXECUTE_PROCESS( COMMAND ${PYTHON_EXECUTABLE} -c "import string; from distutils.sysconfig import get_python_lib; print(string.replace (get_python_lib(1), \"/usr/local/\", \"\"))" ++ EXECUTE_PROCESS( COMMAND ${PYTHON_EXECUTABLE} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1).replace(\"/usr/local/\", \"\"))" OUTPUT_VARIABLE pyinstalldir OUTPUT_STRIP_TRAILING_WHITESPACE)