From owner-svn-ports-all@freebsd.org Tue Oct 10 11:16:08 2017 Return-Path: Delivered-To: svn-ports-all@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 EB909E2D27B; Tue, 10 Oct 2017 11:16:08 +0000 (UTC) (envelope-from sunpoet@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 BE6847748D; Tue, 10 Oct 2017 11:16:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9ABG7YO036248; Tue, 10 Oct 2017 11:16:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9ABG7aR036243; Tue, 10 Oct 2017 11:16:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201710101116.v9ABG7aR036243@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 10 Oct 2017 11:16:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r451663 - in head/graphics: . p5-Convert-Color-XTerm X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/graphics: . p5-Convert-Color-XTerm X-SVN-Commit-Revision: 451663 X-SVN-Commit-Repository: ports 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.23 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: Tue, 10 Oct 2017 11:16:09 -0000 Author: sunpoet Date: Tue Oct 10 11:16:07 2017 New Revision: 451663 URL: https://svnweb.freebsd.org/changeset/ports/451663 Log: Add p5-Convert-Color-XTerm 0.05 This subclass of Convert::Color::RGB8 provides lookup of the colors that xterm uses by default. Note that the module is not intelligent enough to actually parse the XTerm configuration on a machine, nor to query a running terminal for its actual colors. It simply implements the colors that are present as defaults in the XTerm source code. It implements the complete 256-color model in XTerm. WWW: http://search.cpan.org/dist/Convert-Color-XTerm/ Added: head/graphics/p5-Convert-Color-XTerm/ head/graphics/p5-Convert-Color-XTerm/Makefile (contents, props changed) head/graphics/p5-Convert-Color-XTerm/distinfo (contents, props changed) head/graphics/p5-Convert-Color-XTerm/pkg-descr (contents, props changed) head/graphics/p5-Convert-Color-XTerm/pkg-plist (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Tue Oct 10 11:16:02 2017 (r451662) +++ head/graphics/Makefile Tue Oct 10 11:16:07 2017 (r451663) @@ -669,6 +669,7 @@ SUBDIR += p5-Color-Rgb SUBDIR += p5-Color-Scheme SUBDIR += p5-Convert-Color + SUBDIR += p5-Convert-Color-XTerm SUBDIR += p5-Data-Google-Visualization-DataSource SUBDIR += p5-Data-Google-Visualization-DataTable SUBDIR += p5-GD Added: head/graphics/p5-Convert-Color-XTerm/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Convert-Color-XTerm/Makefile Tue Oct 10 11:16:07 2017 (r451663) @@ -0,0 +1,24 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Convert-Color-XTerm +PORTVERSION= 0.05 +CATEGORIES= graphics perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Indexed colors used by XTerm + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= p5-Convert-Color>=0.06:graphics/p5-Convert-Color +RUN_DEPENDS:= ${BUILD_DEPENDS} + +NO_ARCH= yes +USE_PERL5= configure +USES= perl5 + +.include Added: head/graphics/p5-Convert-Color-XTerm/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Convert-Color-XTerm/distinfo Tue Oct 10 11:16:07 2017 (r451663) @@ -0,0 +1,3 @@ +TIMESTAMP = 1507627186 +SHA256 (Convert-Color-XTerm-0.05.tar.gz) = eac0939d9677b8e161fb96d087c04a91d5f9041a542822e69209d3f79c8cedb2 +SIZE (Convert-Color-XTerm-0.05.tar.gz) = 12270 Added: head/graphics/p5-Convert-Color-XTerm/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Convert-Color-XTerm/pkg-descr Tue Oct 10 11:16:07 2017 (r451663) @@ -0,0 +1,9 @@ +This subclass of Convert::Color::RGB8 provides lookup of the colors that xterm +uses by default. Note that the module is not intelligent enough to actually +parse the XTerm configuration on a machine, nor to query a running terminal for +its actual colors. It simply implements the colors that are present as defaults +in the XTerm source code. + +It implements the complete 256-color model in XTerm. + +WWW: http://search.cpan.org/dist/Convert-Color-XTerm/ Added: head/graphics/p5-Convert-Color-XTerm/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Convert-Color-XTerm/pkg-plist Tue Oct 10 11:16:07 2017 (r451663) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Convert/Color/XTerm.pm +%%PERL5_MAN3%%/Convert::Color::XTerm.3.gz