Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 14 Oct 2013 13:33:04 +0000 (UTC)
From:      Rusmir Dusko <nemysis@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r330319 - in head/graphics: . ampasACES-container
Message-ID:  <201310141333.r9EDX4EF018508@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nemysis
Date: Mon Oct 14 13:33:03 2013
New Revision: 330319
URL: http://svnweb.freebsd.org/changeset/ports/330319

Log:
  ACES Container Reference Implementation
  
  This folder contains a reference implementation for an ACES container
  file writer intended to be used with the Academy Color Encoding System (ACES).
  The resulting file is compliant with the ACES container specification
  (SMPTE S2065-4). However, there are a few things that are not demonstrated by
  this reference implementation.
  
      Stereo channels
      EndOfFileFiller
      Arbitrary attributes and naming validations
      half type attributes
      keycode value validations
  
  WWW: https://github.com/ampas/aces_container
  
  Approved by:	wg/pawel (mentors)

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

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Mon Oct 14 13:28:14 2013	(r330318)
+++ head/graphics/Makefile	Mon Oct 14 13:33:03 2013	(r330319)
@@ -39,6 +39,7 @@
     SUBDIR += agg
     SUBDIR += alpng
     SUBDIR += amide
+    SUBDIR += ampasACES-container
     SUBDIR += ampasCTL
     SUBDIR += animorph
     SUBDIR += aoi

Added: head/graphics/ampasACES-container/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/ampasACES-container/Makefile	Mon Oct 14 13:33:03 2013	(r330319)
@@ -0,0 +1,33 @@
+# Created by: Rusmir Dusko <nemysis@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	ampasACES-container
+PORTVERSION=	1.0.0
+CATEGORIES=	graphics devel
+
+MAINTAINER=	nemysis@FreeBSD.org
+COMMENT=	ACES Container Reference Implementation
+
+LICENSE=	BSD
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	ampas
+GH_PROJECT=	aces_container
+GH_TAGNAME=	${GH_COMMIT}
+GH_COMMIT=	d028c19
+
+USES=		cmake pkgconfig
+USE_LDCONFIG=	yes
+
+PORTDOCS=	README.md
+
+post-patch:
+	@${REINPLACE_CMD} -e 's|lib/pkgconfig|libdata/pkgconfig|' \
+		-e 's|lib/CMake|lib/cmake|' \
+		${WRKSRC}/CMakeLists.txt
+
+post-install:
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
+
+.include <bsd.port.mk>

Added: head/graphics/ampasACES-container/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/ampasACES-container/distinfo	Mon Oct 14 13:33:03 2013	(r330319)
@@ -0,0 +1,2 @@
+SHA256 (ampasACES-container-1.0.0.tar.gz) = d1edcef37076e01c37bd42a75c4d6315dae8d240d7256b249c86d3a5346e4f6c
+SIZE (ampasACES-container-1.0.0.tar.gz) = 26411

Added: head/graphics/ampasACES-container/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/ampasACES-container/pkg-descr	Mon Oct 14 13:33:03 2013	(r330319)
@@ -0,0 +1,15 @@
+ACES Container Reference Implementation
+
+This folder contains a reference implementation for an ACES container
+file writer intended to be used with the Academy Color Encoding System (ACES).
+The resulting file is compliant with the ACES container specification
+(SMPTE S2065-4). However, there are a few things that are not demonstrated by
+this reference implementation.
+
+    Stereo channels
+    EndOfFileFiller
+    Arbitrary attributes and naming validations
+    half type attributes
+    keycode value validations
+
+WWW: https://github.com/ampas/aces_container

Added: head/graphics/ampasACES-container/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/ampasACES-container/pkg-plist	Mon Oct 14 13:33:03 2013	(r330319)
@@ -0,0 +1,21 @@
+include/aces/aces_Writer.h
+include/aces/aces_attributestructs.h
+include/aces/aces_errors.h
+include/aces/aces_formatter.h
+include/aces/aces_genericWriter.h
+include/aces/aces_iostat.h
+include/aces/aces_items.h
+include/aces/aces_log.h
+include/aces/aces_timing.h
+include/aces/aces_types.h
+include/aces/aces_typesAndRationals.h
+include/aces/aces_writeattributes.h
+lib/cmake/AcesContainer/AcesContainerConfig.cmake
+lib/cmake/AcesContainer/AcesContainerConfigVersion.cmake
+lib/cmake/AcesContainer/AcesContainerTargets-release.cmake
+lib/cmake/AcesContainer/AcesContainerTargets.cmake
+lib/libAcesContainer.so
+libdata/pkgconfig/AcesContainer.pc
+@dirrmtry lib/cmake/AcesContainer
+@dirrmtry lib/cmake
+@dirrm include/aces



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