From owner-svn-ports-all@freebsd.org Mon Dec 19 11:19:56 2016 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 E5B39C87BB1; Mon, 19 Dec 2016 11:19:56 +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 9BDD91039; Mon, 19 Dec 2016 11:19:56 +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 uBJBJteo025087; Mon, 19 Dec 2016 11:19:55 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBJBJt6t025085; Mon, 19 Dec 2016 11:19:55 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201612191119.uBJBJt6t025085@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 19 Dec 2016 11:19:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428920 - in head/graphics/photivo: . 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, 19 Dec 2016 11:19:57 -0000 Author: amdmi3 Date: Mon Dec 19 11:19:55 2016 New Revision: 428920 URL: https://svnweb.freebsd.org/changeset/ports/428920 Log: - Add LICENSE_FILE - Fix build on 9.x by specifying proper c++ standard requirement and adding missing include Approved by: portmgr blanket Added: head/graphics/photivo/files/patch-Sources_ptCheck.cpp (contents, props changed) Modified: head/graphics/photivo/Makefile Modified: head/graphics/photivo/Makefile ============================================================================== --- head/graphics/photivo/Makefile Mon Dec 19 11:18:45 2016 (r428919) +++ head/graphics/photivo/Makefile Mon Dec 19 11:19:55 2016 (r428920) @@ -12,6 +12,7 @@ MAINTAINER= danfe@FreeBSD.org COMMENT= Free and open source photo processor LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= liblcms2.so:graphics/lcms2 \ libexiv2.so:graphics/exiv2 \ @@ -20,11 +21,11 @@ LIB_DEPENDS= liblcms2.so:graphics/lcms2 libGraphicsMagick.so:graphics/GraphicsMagick \ libfftw3.so:math/fftw3 -USES= cmake compiler:c++0x desktop-file-utils dos2unix \ +USES= cmake compiler:c++11-lib desktop-file-utils dos2unix \ gettext-runtime jpeg pkgconfig zip USE_GNOME= glib20 USE_QT5= qmake_build buildtools_build core gui network widgets -DOS2UNIX_FILES= Sources/ptImage.cpp +DOS2UNIX_FILES= Sources/ptImage.cpp Sources/ptCheck.cpp WRKSRC= ${WRKDIR}/${PORTNAME} Added: head/graphics/photivo/files/patch-Sources_ptCheck.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/photivo/files/patch-Sources_ptCheck.cpp Mon Dec 19 11:19:55 2016 (r428920) @@ -0,0 +1,10 @@ +--- Sources/ptCheck.cpp.orig 2016-03-22 03:34:55 UTC ++++ Sources/ptCheck.cpp +@@ -27,6 +27,7 @@ + #include "filters/ptCfgItem.h" + #include + ++#include + #include + + //==============================================================================