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 <kvedulv at kvedulv.de>
This commit is contained in:
Steve Wills 2014-03-29 14:53:39 +00:00
parent 0457768a05
commit b5020a733f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=349528
4 changed files with 34 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,16 @@
# Created by: Michael Moll <kvedulv at kvedulv.de>
# $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 <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (rubygem/pdf-core-0.2.5.gem) = c722b89f261b381235b8e322a1d8a7fe7fcdd88e517e0da13ffce7ef07cc7c1d
SIZE (rubygem/pdf-core-0.2.5.gem) = 40960

View File

@ -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/