From owner-svn-ports-head@freebsd.org Thu Feb 23 13:51:49 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6403BCEB296; Thu, 23 Feb 2017 13:51:49 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3C110D4F; Thu, 23 Feb 2017 13:51:49 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1NDpmOB082261; Thu, 23 Feb 2017 13:51:48 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1NDplAM082256; Thu, 23 Feb 2017 13:51:47 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201702231351.v1NDplAM082256@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 23 Feb 2017 13:51:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434666 - in head/graphics: . cptutils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Feb 2017 13:51:49 -0000 Author: amdmi3 Date: Thu Feb 23 13:51:47 2017 New Revision: 434666 URL: https://svnweb.freebsd.org/changeset/ports/434666 Log: A collection of tools for manipulating colour gradients, in particular for converting between different formats. WWW: http://soliton.vm.bytemark.co.uk/pub/jjg/en/code/cptutils/ Added: head/graphics/cptutils/ head/graphics/cptutils/Makefile (contents, props changed) head/graphics/cptutils/distinfo (contents, props changed) head/graphics/cptutils/pkg-descr (contents, props changed) head/graphics/cptutils/pkg-plist (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Thu Feb 23 13:38:03 2017 (r434665) +++ head/graphics/Makefile Thu Feb 23 13:51:47 2017 (r434666) @@ -107,6 +107,7 @@ SUBDIR += converseen SUBDIR += copperspice SUBDIR += cosmoplayer + SUBDIR += cptutils SUBDIR += crw SUBDIR += cthumb SUBDIR += cuneiform Added: head/graphics/cptutils/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/cptutils/Makefile Thu Feb 23 13:51:47 2017 (r434666) @@ -0,0 +1,48 @@ +# Created by: Dmitry Marakasov +# $FreeBSD$ + +PORTNAME= cptutils +PORTVERSION= 1.68 +DISTVERSIONPREFIX= v +CATEGORIES= graphics +MASTER_SITES= http://soliton.vm.bytemark.co.uk/pub/jjg/src/ + +MAINTAINER= amdmi3@FreeBSD.org +COMMENT= Convert and manipulate colour gradients + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= gengetopt:devel/gengetopt \ + gperf:devel/gperf \ + docbook-xsl>0:textproc/docbook-xsl +LIB_DEPENDS= libjansson.so:devel/jansson \ + libpng.so:graphics/png + +USE_GITHUB= yes +GH_ACCOUNT= jjgreen + +USES= autoreconf bison gmake iconv localbase python shebangfix +SHEBANG_FILES= src/gradient-convert/gradient-convert.py +GNU_CONFIGURE= yes +CONFIGURE_ARGS= ${ICONV_CONFIGURE_ARG} +USE_GNOME= libxml2 libxslt + +PORTDOCS= CHANGELOG CREDITS README.md + +OPTIONS_DEFINE= DOCS TEST + +TEST_CONFIGURE_ENABLE= tests +TEST_BUILD_DEPENDS= bash:shells/bash \ + xml2:textproc/xml2 \ + xml:textproc/xmlstarlet +TEST_LIB_DEPENDS= libcunit.so:devel/cunit +TEST_TEST_TARGET= test unit + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/ +.endfor + +.include Added: head/graphics/cptutils/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/cptutils/distinfo Thu Feb 23 13:51:47 2017 (r434666) @@ -0,0 +1,3 @@ +TIMESTAMP = 1487855554 +SHA256 (jjgreen-cptutils-v1.68_GH0.tar.gz) = 58ea8d6502bed5f771fa5980c4718081a8069955b7c165099c43ade9cdbce867 +SIZE (jjgreen-cptutils-v1.68_GH0.tar.gz) = 400959 Added: head/graphics/cptutils/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/cptutils/pkg-descr Thu Feb 23 13:51:47 2017 (r434666) @@ -0,0 +1,4 @@ +A collection of tools for manipulating colour gradients, in particular +for converting between different formats. + +WWW: http://soliton.vm.bytemark.co.uk/pub/jjg/en/code/cptutils/ Added: head/graphics/cptutils/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/cptutils/pkg-plist Thu Feb 23 13:51:47 2017 (r434666) @@ -0,0 +1,52 @@ +bin/avlcpt +bin/cptcat +bin/cptclip +bin/cptcont +bin/cpthsv +bin/cptinfo +bin/cptpg +bin/cptsvg +bin/gimplut +bin/gimpsvg +bin/gplcpt +bin/gradient-convert +bin/pspsvg +bin/pssvg +bin/svgcpt +bin/svgcss3 +bin/svggimp +bin/svggpt +bin/svgpng +bin/svgpov +bin/svgpsp +bin/svgqgs +bin/svgsao +bin/svgsvg +bin/svgx +bin/xycpt +man/man1/avlcpt.1.gz +man/man1/cptcat.1.gz +man/man1/cptclip.1.gz +man/man1/cptcont.1.gz +man/man1/cpthsv.1.gz +man/man1/cptinfo.1.gz +man/man1/cptpg.1.gz +man/man1/cptsvg.1.gz +man/man1/gimplut.1.gz +man/man1/gimpsvg.1.gz +man/man1/gplcpt.1.gz +man/man1/gradient-convert.1.gz +man/man1/pspsvg.1.gz +man/man1/pssvg.1.gz +man/man1/svgcpt.1.gz +man/man1/svgcss3.1.gz +man/man1/svggimp.1.gz +man/man1/svggpt.1.gz +man/man1/svgpng.1.gz +man/man1/svgpov.1.gz +man/man1/svgpsp.1.gz +man/man1/svgqgs.1.gz +man/man1/svgsao.1.gz +man/man1/svgsvg.1.gz +man/man1/svgx.1.gz +man/man1/xycpt.1.gz