Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 Jul 2016 20:18:29 +0000 (UTC)
From:      Pawel Pekala <pawel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r418404 - in head/graphics: . imv
Message-ID:  <201607112018.u6BKITeu057919@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <t@tobik.me>

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 <t@tobik.me>
+# $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 <bsd.port.mk>

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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607112018.u6BKITeu057919>