Date: Thu, 18 May 2017 17:40:29 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r441188 - in head/graphics/simpleviewer: . files Message-ID: <201705181740.v4IHeTAH042201@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Thu May 18 17:40:29 2017 New Revision: 441188 URL: https://svnweb.freebsd.org/changeset/ports/441188 Log: - Update `graphics/simpleviewer' to version 2.92, the latest to date - Explain why the DISTNAME lacks embedded ${PORTNAME} and hence the need for using DIST_SUBDIR (common case for Bitbucket-hosted projects) - Remove patches: all of them were integrated or reworked upstream - Enable OpenEXR support; there's no way to disable the check, thus doing so prevents unregistered dependency if user has it is installed already - Add missing `xinerama' to USE_XORG (notified by `stage-qa' check) - Minor wording improvement in the port description text while I'm here Deleted: head/graphics/simpleviewer/files/ Modified: head/graphics/simpleviewer/Makefile head/graphics/simpleviewer/distinfo head/graphics/simpleviewer/pkg-descr Modified: head/graphics/simpleviewer/Makefile ============================================================================== --- head/graphics/simpleviewer/Makefile Thu May 18 17:21:07 2017 (r441187) +++ head/graphics/simpleviewer/Makefile Thu May 18 17:40:29 2017 (r441188) @@ -2,19 +2,19 @@ # $FreeBSD$ PORTNAME= simpleviewer -PORTVERSION= 2.88 -PORTREVISION= 1 +PORTVERSION= 2.92 CATEGORIES= graphics MASTER_SITES= https://bitbucket.org/andreyu/simple-viewer-gl/get/ -DISTNAME= v${PORTVERSION} -DIST_SUBDIR= ${PORTNAME} +DISTNAME= v${PORTVERSION} # version tag, thus no embedded ${PORTNAME} +DIST_SUBDIR= ${PORTNAME} # and hence the need for ${DIST_SUBDIR} MAINTAINER= ports@FreeBSD.org COMMENT= Small and simple OpenGL image viewer with transparency support LICENSE= GPLv2 -LIB_DEPENDS= libImlib2.so:graphics/imlib2 \ +LIB_DEPENDS= libIlmImf.so:graphics/OpenEXR \ + libImlib2.so:graphics/imlib2 \ libexif.so:graphics/libexif \ libfreetype.so:print/freetype2 \ libgif.so:graphics/giflib \ @@ -26,9 +26,9 @@ LIB_DEPENDS= libImlib2.so:graphics/imlib USES= cmake compiler:c++11-lang jpeg pkgconfig tar:bzip2 USE_GL= glu -USE_XORG= ice sm x11 xcursor xext xrandr xxf86vm +USE_XORG= ice sm x11 xcursor xext xinerama xrandr xxf86vm -WRKSRC= ${WRKDIR}/andreyu-simple-viewer-gl-b9266979237d +WRKSRC= ${WRKDIR}/andreyu-simple-viewer-gl-b3bd8710e176 PLIST_FILES= bin/sviewgl Modified: head/graphics/simpleviewer/distinfo ============================================================================== --- head/graphics/simpleviewer/distinfo Thu May 18 17:21:07 2017 (r441187) +++ head/graphics/simpleviewer/distinfo Thu May 18 17:40:29 2017 (r441188) @@ -1,3 +1,3 @@ -TIMESTAMP = 1487875449 -SHA256 (simpleviewer/v2.88.tar.bz2) = 4d3835ae008b8a7cdd9379f82e72d338a9d5e3d0cb4ef491d888697727c92c56 -SIZE (simpleviewer/v2.88.tar.bz2) = 238105 +TIMESTAMP = 1494869203 +SHA256 (simpleviewer/v2.92.tar.bz2) = 9d8ff147a932da3f1e627a6e30f63609921b707642c560368396ce7e7b11f91c +SIZE (simpleviewer/v2.92.tar.bz2) = 290889 Modified: head/graphics/simpleviewer/pkg-descr ============================================================================== --- head/graphics/simpleviewer/pkg-descr Thu May 18 17:21:07 2017 (r441187) +++ head/graphics/simpleviewer/pkg-descr Thu May 18 17:40:29 2017 (r441188) @@ -3,7 +3,7 @@ Simple Viewer is small and simple OpenGL - Lightweight and fast: utilizes hardware-accelerated video card - GIF animation, embedded ICC profiles, and Exif tags support - Very simple interface, minimum dependencies - - Suitable for default image viewer of desktop + - Suitable as default (general-purpose) desktop image viewer - Desktop independent: does not require any specific desktop environment - Open source, licensed under GNU GPLv2
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201705181740.v4IHeTAH042201>