From owner-svn-ports-head@freebsd.org Mon Jul 11 20:18:31 2016 Return-Path: Delivered-To: svn-ports-head@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 125BEB92083; Mon, 11 Jul 2016 20:18:31 +0000 (UTC) (envelope-from pawel@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 CA1E51BBF; Mon, 11 Jul 2016 20:18:30 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6BKIUlc057923; Mon, 11 Jul 2016 20:18:30 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6BKITeu057919; Mon, 11 Jul 2016 20:18:29 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201607112018.u6BKITeu057919@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Mon, 11 Jul 2016 20:18:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418404 - in head/graphics: . imv X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jul 2016 20:18:31 -0000 Author: pawel Date: Mon Jul 11 20:18:29 2016 New Revision: 418404 URL: https://svnweb.freebsd.org/changeset/ports/418404 Log: imv is a command line image viewer intended for use with tiling window managers. It supports over 30 different image file formats including: Photoshop PSD files, animated GIFS, and various RAW formats. WWW: https://github.com/eXeC64/imv/ PR: 210951 Submitted by: Tobias Kortkamp Added: head/graphics/imv/ head/graphics/imv/Makefile (contents, props changed) head/graphics/imv/distinfo (contents, props changed) head/graphics/imv/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Mon Jul 11 20:14:30 2016 (r418403) +++ head/graphics/Makefile Mon Jul 11 20:18:29 2016 (r418404) @@ -365,6 +365,7 @@ SUBDIR += imlib2 SUBDIR += imlib2_loaders SUBDIR += impressive + SUBDIR += imv SUBDIR += inkscape SUBDIR += intel-backlight SUBDIR += intergif Added: head/graphics/imv/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/imv/Makefile Mon Jul 11 20:18:29 2016 (r418404) @@ -0,0 +1,39 @@ +# Created by: Tobias Kortkamp +# $FreeBSD$ + +PORTNAME= imv +PORTVERSION= 2.1.2 +DISTVERSIONPREFIX= v +CATEGORIES= graphics + +MAINTAINER= t@tobik.me +COMMENT= Simple image viewer + +LICENSE= GPLv2 + +LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ + libfreeimage.so:graphics/freeimage + +USES= desktop-file-utils gmake +USE_SDL= sdl2 ttf2 + +USE_GITHUB= yes +GH_ACCOUNT= eXeC64 + +ALL_TARGET= imv + +MAKE_ARGS= V=1 + +PLIST_FILES= bin/imv \ + man/man1/imv.1.gz \ + share/applications/imv.desktop + +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/build/imv \ + ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/files/imv.desktop \ + ${STAGEDIR}${PREFIX}/share/applications + ${INSTALL_MAN} ${WRKSRC}/doc/imv.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 + +.include Added: head/graphics/imv/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/imv/distinfo Mon Jul 11 20:18:29 2016 (r418404) @@ -0,0 +1,3 @@ +TIMESTAMP = 1468102451 +SHA256 (eXeC64-imv-v2.1.2_GH0.tar.gz) = 7bb264c23d55795234556b98d63aa17afadbda87cc5a38d684e3a735cb12c135 +SIZE (eXeC64-imv-v2.1.2_GH0.tar.gz) = 27137 Added: head/graphics/imv/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/imv/pkg-descr Mon Jul 11 20:18:29 2016 (r418404) @@ -0,0 +1,5 @@ +imv is a command line image viewer intended for use with tiling window +managers. It supports over 30 different image file formats including: +Photoshop PSD files, animated GIFS, and various RAW formats. + +WWW: https://github.com/eXeC64/imv/