svn commit: r447174 - in head/graphics: . openicc-config

Boris Samorodov bsam at FreeBSD.org
Wed Aug 2 19:24:56 UTC 2017


Author: bsam
Date: Wed Aug  2 19:24:54 2017
New Revision: 447174
URL: https://svnweb.freebsd.org/changeset/ports/447174

Log:
  The OpenICC configuration data base allows to store, share and
  manipulate colour management informations.
  
  Part of that is a file format based on JSON and a implementation
  of an according library for easy access.
  
  Features:
    *  access to OpenICC device JSON DB
  
  WWW: https://github.com/OpenICC/config

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

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Wed Aug  2 19:23:51 2017	(r447173)
+++ head/graphics/Makefile	Wed Aug  2 19:24:54 2017	(r447174)
@@ -633,6 +633,7 @@
     SUBDIR += opencv-java
     SUBDIR += opendx
     SUBDIR += opengl-man
+    SUBDIR += openicc-config
     SUBDIR += openimageio
     SUBDIR += openjpeg
     SUBDIR += openjpeg15

Added: head/graphics/openicc-config/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/openicc-config/Makefile	Wed Aug  2 19:24:54 2017	(r447174)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME=	openicc-config
+PORTVERSION=	0.1.0
+CATEGORIES=	graphics
+
+MAINTAINER=	bsam at FreeBSD.org
+COMMENT=	Color configuration data base management
+
+LICENSE=	MIT
+
+LIB_DEPENDS=	libyajl.so:devel/yajl
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	OpenICC
+GH_PROJECT=	config
+USES=		cmake gettext iconv:build pkgconfig
+USE_LDCONFIG=	yes
+
+.include <bsd.port.mk>

Added: head/graphics/openicc-config/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/openicc-config/distinfo	Wed Aug  2 19:24:54 2017	(r447174)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1482706306
+SHA256 (OpenICC-config-0.1.0_GH0.tar.gz) = 461e567bbb9913b0731914be5efe2992158e169b69783956513f35a0f931ec51
+SIZE (OpenICC-config-0.1.0_GH0.tar.gz) = 193974

Added: head/graphics/openicc-config/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/openicc-config/pkg-descr	Wed Aug  2 19:24:54 2017	(r447174)
@@ -0,0 +1,10 @@
+The OpenICC configuration data base allows to store, share and
+manipulate colour management informations.
+
+Part of that is a file format based on JSON and a implementation
+of an according library for easy access.
+
+Features:
+  *  access to OpenICC device JSON DB
+
+WWW: https://github.com/OpenICC/config

Added: head/graphics/openicc-config/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/openicc-config/pkg-plist	Wed Aug  2 19:24:54 2017	(r447174)
@@ -0,0 +1,16 @@
+bin/openicc-device
+include/openicc/openicc_config.h
+include/openicc/openicc_db.h
+include/openicc/openicc_version.h
+lib/cmake/openicc/OpenIccConfig.cmake
+lib/libOpenICC.so
+lib/libOpenICC.so.0
+lib/libOpenICC.so.0.1.0
+lib/libopenicc-static.a
+libdata/pkgconfig/openicc.pc
+share/locale/cs/LC_MESSAGES/OpenICC.mo
+share/locale/de/LC_MESSAGES/OpenICC.mo
+share/locale/eo/LC_MESSAGES/OpenICC.mo
+share/locale/eu/LC_MESSAGES/OpenICC.mo
+share/locale/fr/LC_MESSAGES/OpenICC.mo
+share/locale/ru/LC_MESSAGES/OpenICC.mo


More information about the svn-ports-all mailing list