From owner-svn-ports-all@FreeBSD.ORG Sat Mar 29 14:53:40 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D21D34EE; Sat, 29 Mar 2014 14:53:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 B35E7A67; Sat, 29 Mar 2014 14:53:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2TErePY026215; Sat, 29 Mar 2014 14:53:40 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2TErdGn026211; Sat, 29 Mar 2014 14:53:39 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201403291453.s2TErdGn026211@svn.freebsd.org> From: Steve Wills Date: Sat, 29 Mar 2014 14:53:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r349528 - in head/print: . rubygem-pdf-core 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.17 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, 29 Mar 2014 14:53:41 -0000 Author: swills Date: Sat Mar 29 14:53:39 2014 New Revision: 349528 URL: http://svnweb.freebsd.org/changeset/ports/349528 QAT: https://qat.redports.org/buildarchive/r349528/ Log: PDF::Core is a pure Ruby library to render PDF documents. It supports several PDF features, such as among others: * low-level annotation * istream objects and stream filters * NameTree * object repository * object serialization * indirect objects * page geometries It is used internally by Prawn (provided in the rubygems-prawn package), a Ruby PDF generation library. WWW: http://prawnpdf.org/ PR: ports/187987 Submitted by: Michael Moll Added: head/print/rubygem-pdf-core/ head/print/rubygem-pdf-core/Makefile (contents, props changed) head/print/rubygem-pdf-core/distinfo (contents, props changed) head/print/rubygem-pdf-core/pkg-descr (contents, props changed) Modified: head/print/Makefile Modified: head/print/Makefile ============================================================================== --- head/print/Makefile Sat Mar 29 14:51:31 2014 (r349527) +++ head/print/Makefile Sat Mar 29 14:53:39 2014 (r349528) @@ -266,6 +266,7 @@ SUBDIR += rubygem-afm SUBDIR += rubygem-color SUBDIR += rubygem-colortools + SUBDIR += rubygem-pdf-core SUBDIR += rubygem-pdf-reader SUBDIR += rubygem-pdfwriter SUBDIR += rubygem-prawn Added: head/print/rubygem-pdf-core/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/rubygem-pdf-core/Makefile Sat Mar 29 14:53:39 2014 (r349528) @@ -0,0 +1,16 @@ +# Created by: Michael Moll +# $FreeBSD$ + +PORTNAME= pdf-core +PORTVERSION= 0.2.5 +CATEGORIES= print rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Ruby library to render PDF documents + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/print/rubygem-pdf-core/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/rubygem-pdf-core/distinfo Sat Mar 29 14:53:39 2014 (r349528) @@ -0,0 +1,2 @@ +SHA256 (rubygem/pdf-core-0.2.5.gem) = c722b89f261b381235b8e322a1d8a7fe7fcdd88e517e0da13ffce7ef07cc7c1d +SIZE (rubygem/pdf-core-0.2.5.gem) = 40960 Added: head/print/rubygem-pdf-core/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/rubygem-pdf-core/pkg-descr Sat Mar 29 14:53:39 2014 (r349528) @@ -0,0 +1,15 @@ +PDF::Core is a pure Ruby library to render PDF documents. + +It supports several PDF features, such as among others: + * low-level annotation + * istream objects and stream filters + * NameTree + * object repository + * object serialization + * indirect objects + * page geometries + +It is used internally by Prawn (provided in the rubygems-prawn package), +a Ruby PDF generation library. + +WWW: http://prawnpdf.org/