diff options
author | pgollucci <pgollucci@FreeBSD.org> | 2010-12-17 11:48:09 +0800 |
---|---|---|
committer | pgollucci <pgollucci@FreeBSD.org> | 2010-12-17 11:48:09 +0800 |
commit | 3149f32e024cb1cd72960340d24ed78483964eb6 (patch) | |
tree | 7ad8bdd46876e486353d32e27d98bf817eafddd8 /print | |
parent | a8a3951fae400e22a7a003739f5e73988aa3d54e (diff) | |
download | freebsd-ports-gnome-3149f32e024cb1cd72960340d24ed78483964eb6.tar.gz freebsd-ports-gnome-3149f32e024cb1cd72960340d24ed78483964eb6.tar.zst freebsd-ports-gnome-3149f32e024cb1cd72960340d24ed78483964eb6.zip |
An SVG renderer for the Prawn PDF library. This will take an SVG file as
input and render it into your PDF. prawn-svg is in its infancy and does not
support the full SVG specifications.
WWW: https://github.com/mogest/prawn-svg
Diffstat (limited to 'print')
-rw-r--r-- | print/Makefile | 1 | ||||
-rw-r--r-- | print/rubygem-prawn-svg/Makefile | 21 | ||||
-rw-r--r-- | print/rubygem-prawn-svg/distinfo | 2 | ||||
-rw-r--r-- | print/rubygem-prawn-svg/pkg-descr | 5 |
4 files changed, 29 insertions, 0 deletions
diff --git a/print/Makefile b/print/Makefile index ae1832d7d547..e95ee2ab0d38 100644 --- a/print/Makefile +++ b/print/Makefile @@ -322,6 +322,7 @@ SUBDIR += rubygem-prawn-js SUBDIR += rubygem-prawn-layout SUBDIR += rubygem-prawn-security + SUBDIR += rubygem-prawn-svg SUBDIR += scribus SUBDIR += sgf2tex SUBDIR += splix diff --git a/print/rubygem-prawn-svg/Makefile b/print/rubygem-prawn-svg/Makefile new file mode 100644 index 000000000000..bee93e2be131 --- /dev/null +++ b/print/rubygem-prawn-svg/Makefile @@ -0,0 +1,21 @@ +# Ports collection makefile for: rubygem-prawn-svg +# Date created: December 16, 2010 +# Whom: Philip M. Gollucci <pgollucci@p6m7g8.com> +# +# $FreeBSD$ + +PORTNAME= prawn-svg +PORTVERSION= 0.9.1.10 +CATEGORIES= print rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= SVG renderer for Prawn PDF library + +RUN_DEPENDS= rubygem-prawn>=0.8.4:${PORTSDIR}/print/rubygem-prawn + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/print/rubygem-prawn-svg/distinfo b/print/rubygem-prawn-svg/distinfo new file mode 100644 index 000000000000..89d7e4863d44 --- /dev/null +++ b/print/rubygem-prawn-svg/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/prawn-svg-0.9.1.10.gem) = b8baf8d67b76d8054b1ebe6402bb967a48464b7f1b641a2df3a7316c9e1bcd75 +SIZE (rubygem/prawn-svg-0.9.1.10.gem) = 13824 diff --git a/print/rubygem-prawn-svg/pkg-descr b/print/rubygem-prawn-svg/pkg-descr new file mode 100644 index 000000000000..04f3dcc1b59a --- /dev/null +++ b/print/rubygem-prawn-svg/pkg-descr @@ -0,0 +1,5 @@ +An SVG renderer for the Prawn PDF library. This will take an SVG file as +input and render it into your PDF. prawn-svg is in its infancy and does not +support the full SVG specifications. + +WWW: https://github.com/mogest/prawn-svg |