svn commit: r439415 - in head/graphics: . perceptualdiff

Maxim Sobolev sobomax at FreeBSD.org
Tue Apr 25 19:05:01 UTC 2017


Author: sobomax
Date: Tue Apr 25 19:04:59 2017
New Revision: 439415
URL: https://svnweb.freebsd.org/changeset/ports/439415

Log:
  Add perceptualdiff, a program that compares two images using a perceptually
  based image metric.
  
  We find it pretty useful for automated installation media testing.

Added:
  head/graphics/perceptualdiff/
  head/graphics/perceptualdiff/Makefile   (contents, props changed)
  head/graphics/perceptualdiff/distinfo   (contents, props changed)
  head/graphics/perceptualdiff/pkg-descr   (contents, props changed)
Modified:
  head/graphics/Makefile

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Tue Apr 25 19:04:31 2017	(r439414)
+++ head/graphics/Makefile	Tue Apr 25 19:04:59 2017	(r439415)
@@ -763,6 +763,7 @@
     SUBDIR += pecomato
     SUBDIR += pencil
     SUBDIR += peps
+    SUBDIR += perceptualdiff
     SUBDIR += pfscalibration
     SUBDIR += pfstmo
     SUBDIR += pfstools

Added: head/graphics/perceptualdiff/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/perceptualdiff/Makefile	Tue Apr 25 19:04:59 2017	(r439415)
@@ -0,0 +1,23 @@
+# Created by: sobomax
+# $FreeBSD$
+
+PORTNAME=	perceptualdiff
+PORTVERSION=	2.1
+CATEGORIES=	graphics
+
+MAINTAINER=	sobomax at FreeBSD.org
+COMMENT=	Program that compares two images
+
+LICENSE=	GPLv2
+
+LIB_DEPENDS=	libfreeimage.so:graphics/freeimage
+
+PLIST_FILES=	bin/perceptualdiff
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	myint
+GH_TAGNAME=	v${PORTVERSION}
+
+USES=		cmake
+
+.include <bsd.port.mk>

Added: head/graphics/perceptualdiff/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/perceptualdiff/distinfo	Tue Apr 25 19:04:59 2017	(r439415)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1493138500
+SHA256 (myint-perceptualdiff-2.1-v2.1_GH0.tar.gz) = 0dea51046601e4d23dc45a3ec342f1a305baf3bf3328e9ccdae115fe1942f041
+SIZE (myint-perceptualdiff-2.1-v2.1_GH0.tar.gz) = 860932

Added: head/graphics/perceptualdiff/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/perceptualdiff/pkg-descr	Tue Apr 25 19:04:59 2017	(r439415)
@@ -0,0 +1,3 @@
+A program that compares two images using a perceptually based image metric.
+
+WWW: https://github.com/myint/perceptualdiff/


More information about the svn-ports-head mailing list