Date: Sun, 9 Sep 2018 16:57:52 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479295 - in head/graphics: . charls Message-ID: <201809091657.w89GvqgB010423@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sun Sep 9 16:57:52 2018 New Revision: 479295 URL: https://svnweb.freebsd.org/changeset/ports/479295 Log: Add charls 2.0.0 CharLS is a C++ implementation of the JPEG-LS standard for lossless and near-lossless image compression and decompression. JPEG-LS is a low-complexity image compression standard that matches JPEG 2000 compression ratios. Features: - C++14 library implementation with a binary C interface for maximum interoperability. - Supports Windows, Linux and Solaris in 32 bit and 64 bit. - Includes an adapter assembly for .NET based languages. - Excellent compression and decompression performance. WWW: https://github.com/team-charls/charls Added: head/graphics/charls/ head/graphics/charls/Makefile (contents, props changed) head/graphics/charls/distinfo (contents, props changed) head/graphics/charls/pkg-descr (contents, props changed) head/graphics/charls/pkg-plist (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sun Sep 9 16:18:13 2018 (r479294) +++ head/graphics/Makefile Sun Sep 9 16:57:52 2018 (r479295) @@ -95,6 +95,7 @@ SUBDIR += cegui SUBDIR += cenon SUBDIR += cfdg + SUBDIR += charls SUBDIR += chbg SUBDIR += cimg SUBDIR += cinepaint Added: head/graphics/charls/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/charls/Makefile Sun Sep 9 16:57:52 2018 (r479295) @@ -0,0 +1,22 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= charls +PORTVERSION= 2.0.0 +CATEGORIES= graphics + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= C++ JPEG-LS library implementation + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/License.txt + +USES= cmake compiler:c++14-lang + +CMAKE_ON= BUILD_SHARED_LIBS BUILD_TESTING +USE_LDCONFIG= yes + +GH_ACCOUNT= team-charls +USE_GITHUB= yes + +.include <bsd.port.mk> Added: head/graphics/charls/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/charls/distinfo Sun Sep 9 16:57:52 2018 (r479295) @@ -0,0 +1,3 @@ +TIMESTAMP = 1526222411 +SHA256 (team-charls-charls-2.0.0_GH0.tar.gz) = 528c6a3cc168a44e73f2890d8f4a35104a54d752eba3d6a643f050b72dd67cfa +SIZE (team-charls-charls-2.0.0_GH0.tar.gz) = 4962771 Added: head/graphics/charls/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/charls/pkg-descr Sun Sep 9 16:57:52 2018 (r479295) @@ -0,0 +1,12 @@ +CharLS is a C++ implementation of the JPEG-LS standard for lossless and +near-lossless image compression and decompression. JPEG-LS is a low-complexity +image compression standard that matches JPEG 2000 compression ratios. + +Features: +- C++14 library implementation with a binary C interface for maximum + interoperability. +- Supports Windows, Linux and Solaris in 32 bit and 64 bit. +- Includes an adapter assembly for .NET based languages. +- Excellent compression and decompression performance. + +WWW: https://github.com/team-charls/charls Added: head/graphics/charls/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/charls/pkg-plist Sun Sep 9 16:57:52 2018 (r479295) @@ -0,0 +1,5 @@ +include/CharLS/charls.h +include/CharLS/publictypes.h +lib/libCharLS.so +lib/libCharLS.so.2 +lib/libCharLS.so.2.0
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809091657.w89GvqgB010423>