From owner-svn-ports-all@freebsd.org Sun May 6 18:49:51 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 31E53FC2AE7; Sun, 6 May 2018 18:49:51 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D70787EFEB; Sun, 6 May 2018 18:49:50 +0000 (UTC) (envelope-from tcberner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CD3781084C; Sun, 6 May 2018 18:49:50 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w46InopA032946; Sun, 6 May 2018 18:49:50 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w46Ino3u032941; Sun, 6 May 2018 18:49:50 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201805061849.w46Ino3u032941@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sun, 6 May 2018 18:49:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r469244 - in head/graphics: . photoqt X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head/graphics: . photoqt X-SVN-Commit-Revision: 469244 X-SVN-Commit-Repository: ports 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.25 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: Sun, 06 May 2018 18:49:51 -0000 Author: tcberner Date: Sun May 6 18:49:50 2018 New Revision: 469244 URL: https://svnweb.freebsd.org/changeset/ports/469244 Log: New port: graphics/photoqt -- a simple image viewer. * Based on a version submitted by Andrew Romanenko. PR: 221482 Submitted by: Andrew Romanenko (initial version) Added: head/graphics/photoqt/ head/graphics/photoqt/Makefile (contents, props changed) head/graphics/photoqt/distinfo (contents, props changed) head/graphics/photoqt/pkg-descr (contents, props changed) head/graphics/photoqt/pkg-plist (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sun May 6 18:14:42 2018 (r469243) +++ head/graphics/Makefile Sun May 6 18:49:50 2018 (r469244) @@ -808,6 +808,7 @@ SUBDIR += pho SUBDIR += photivo SUBDIR += photopc + SUBDIR += photoqt SUBDIR += phototonic SUBDIR += php-facedetect SUBDIR += php-gdal Added: head/graphics/photoqt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/photoqt/Makefile Sun May 6 18:49:50 2018 (r469244) @@ -0,0 +1,37 @@ +# $FreeBSD$ + +PORTNAME= photoqt +DISTVERSIONPREFIX= v +DISTVERSION= 1.6 +CATEGORIES= graphics + +MAINTAINER= melanhit@gmail.com +COMMENT= Simple, powerful and good looking QT5 image viewer + +LICENSE= GPLv2 + +USES= cmake:outsource compiler:c++11-lib desktop-file-utils \ + localbase:ldflags +USE_QT5= core graphicaleffects gui multimedia network qml quick \ + quickcontrols sql svg widgets xml \ + buildtools_build linguisttools_build qmake_build + +USE_GITHUB= yes +GH_ACCOUNT= luspi + +OPTIONS_DEFINE= EXIV2 RAW GM +OPTIONS_DEFAULT=EXIV2 + +EXIV2_CMAKE_BOOL= EXIV2 +EXIV2_DESC= Metadata editing +EXIV2_LIB_DEPENDS= libexiv2.so:graphics/exiv2 + +RAW_CMAKE_BOOL= RAW +RAW_DESC= Raw image support +RAW_LIB_DEPENDS= libraw.so:graphics/libraw + +GM_CMAKE_BOOL= GM +GM_DESC= GraphicsMagick image processing +GM_LIB_DEPENDS= libGraphicsMagick.so:graphics/GraphicsMagick + +.include Added: head/graphics/photoqt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/photoqt/distinfo Sun May 6 18:49:50 2018 (r469244) @@ -0,0 +1,3 @@ +TIMESTAMP = 1525630998 +SHA256 (luspi-photoqt-v1.6_GH0.tar.gz) = 34f30ee07d535a227db325219a59f81e9f21a6918510e225a3e7310f6fde569d +SIZE (luspi-photoqt-v1.6_GH0.tar.gz) = 1119296 Added: head/graphics/photoqt/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/photoqt/pkg-descr Sun May 6 18:49:50 2018 (r469244) @@ -0,0 +1,4 @@ +PhotoQt is a simple, yet powerful and good looking image viewer, +written in C++/Qt + +WWW: http://photoqt.org/ Added: head/graphics/photoqt/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/photoqt/pkg-plist Sun May 6 18:49:50 2018 (r469244) @@ -0,0 +1,8 @@ +bin/photoqt +share/appdata/photoqt.appdata.xml +share/applications/photoqt.desktop +share/icons/hicolor/128x128/apps/photoqt.png +share/icons/hicolor/16x16/apps/photoqt.png +share/icons/hicolor/32x32/apps/photoqt.png +share/icons/hicolor/48x48/apps/photoqt.png +share/icons/hicolor/64x64/apps/photoqt.png