From owner-svn-ports-all@FreeBSD.ORG Sat Feb 16 11:56:49 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 2EDEAB41; Sat, 16 Feb 2013 11:56:49 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id F1C4C785; Sat, 16 Feb 2013 11:56:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1GBum7x068169; Sat, 16 Feb 2013 11:56:48 GMT (envelope-from bsam@svn.freebsd.org) Received: (from bsam@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1GBum5h068165; Sat, 16 Feb 2013 11:56:48 GMT (envelope-from bsam@svn.freebsd.org) Message-Id: <201302161156.r1GBum5h068165@svn.freebsd.org> From: Boris Samorodov Date: Sat, 16 Feb 2013 11:56:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r312341 - in head/x11: . xcm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Feb 2013 11:56:49 -0000 Author: bsam Date: Sat Feb 16 11:56:47 2013 New Revision: 312341 URL: http://svnweb.freebsd.org/changeset/ports/312341 Log: Tools based on libXcm, a library for colour management on X: . xcmddc requests EDID from a monitor over the i2c bus; . xcmedid is for parsing EDID data blocks; . xcmevents observes X11 colour management events. Added: head/x11/xcm/ head/x11/xcm/Makefile (contents, props changed) head/x11/xcm/distinfo (contents, props changed) head/x11/xcm/pkg-descr (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Sat Feb 16 11:50:42 2013 (r312340) +++ head/x11/Makefile Sat Feb 16 11:56:47 2013 (r312341) @@ -333,6 +333,7 @@ SUBDIR += xclick SUBDIR += xclip SUBDIR += xclipboard + SUBDIR += xcm SUBDIR += xcmd SUBDIR += xcmiscproto SUBDIR += xcmsdb Added: head/x11/xcm/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xcm/Makefile Sat Feb 16 11:56:47 2013 (r312341) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= xcm +PORTVERSION= 0.5.2 +CATEGORIES= x11 +MASTER_SITES= SF/oyranos/Xcm + +MAINTAINER= bsam@FreeBSD.org +COMMENT= X Color Management tools + +LIB_DEPENDS= Xcm:${PORTSDIR}/x11/libXcm + +XORG_CAT= app +# xcm should be added to XORG_MODULES at /usr/ports/Mk/bsd.xorg.mk +# and LIB_DEPENDS is replaced by the following line: +#USE_XORG= xcm + +PLIST_FILES= bin/xcm bin/xcmedid bin/xcmevents + +MAN1= xcm.1 xcmddc.1 xcmedid.1 xcmevents.1 + +.include Added: head/x11/xcm/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xcm/distinfo Sat Feb 16 11:56:47 2013 (r312341) @@ -0,0 +1,2 @@ +SHA256 (xorg/app/xcm-0.5.2.tar.bz2) = 5a848797c8ef8e8f82dc18cc037b893a9d3df8e07420a1da2ba8ea41d1b9ff3e +SIZE (xorg/app/xcm-0.5.2.tar.bz2) = 259665 Added: head/x11/xcm/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xcm/pkg-descr Sat Feb 16 11:56:47 2013 (r312341) @@ -0,0 +1,4 @@ +Tools based on libXcm, a library for colour management on X: +. xcmddc requests EDID from a monitor over the i2c bus; +. xcmedid is for parsing EDID data blocks; +. xcmevents observes X11 colour management events.