Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 12 Oct 2019 08:19:18 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r514323 - in head/graphics: . avir
Message-ID:  <201910120819.x9C8JIcU041955@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sat Oct 12 08:19:18 2019
New Revision: 514323
URL: https://svnweb.freebsd.org/changeset/ports/514323

Log:
  New port: graphics/avir: High-quality image resizing/scaling C++ library

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

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Sat Oct 12 07:37:02 2019	(r514322)
+++ head/graphics/Makefile	Sat Oct 12 08:19:18 2019	(r514323)
@@ -60,6 +60,7 @@
     SUBDIR += autopano-sift-c
     SUBDIR += autotrace
     SUBDIR += aview
+    SUBDIR += avir
     SUBDIR += azpainter
     SUBDIR += backfract
     SUBDIR += barbecue

Added: head/graphics/avir/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/avir/Makefile	Sat Oct 12 08:19:18 2019	(r514323)
@@ -0,0 +1,29 @@
+# $FreeBSD$
+
+PORTNAME=	avir
+DISTVERSION=	2.4
+CATEGORIES=	graphics
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	High-quality image resizing/scaling C++ library
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	avaneev
+
+NO_BUILD=	yes
+NO_ARCH=	yes
+
+PLIST_FILES=	include/avir/avir.h \
+		include/avir/avir_dil.h \
+		include/avir/avir_float4_sse.h \
+		include/avir/avir_float8_avx.h \
+		include/avir/lancir.h
+
+do-install:
+	${MKDIR} ${STAGEDIR}${PREFIX}/include/avir
+	${INSTALL_DATA} ${WRKSRC}/*.h ${STAGEDIR}${PREFIX}/include/avir/
+
+.include <bsd.port.mk>

Added: head/graphics/avir/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/avir/distinfo	Sat Oct 12 08:19:18 2019	(r514323)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1570867160
+SHA256 (avaneev-avir-2.4_GH0.tar.gz) = 0b6f13f715a1b9d6336c60b7753b9dbb48493813807367e91efe6adb11c0835d
+SIZE (avaneev-avir-2.4_GH0.tar.gz) = 2834974

Added: head/graphics/avir/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/avir/pkg-descr	Sat Oct 12 08:19:18 2019	(r514323)
@@ -0,0 +1,9 @@
+High-quality pro image resizing / scaling C++ library, image resize.
+
+This library features routines for both down- and upsizing of 8- and 16-bit,
+1 to 4-channel images. Image resizing routines were implemented in
+multi-platform C++ code, and have a high level of optimality. Beside resizing,
+this library offers a sub-pixel shift operation. Built-in sRGB gamma correction
+is available.
+
+WWW: https://github.com/avaneev/avir



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