diff options
author | pgollucci <pgollucci@FreeBSD.org> | 2010-12-17 11:47:02 +0800 |
---|---|---|
committer | pgollucci <pgollucci@FreeBSD.org> | 2010-12-17 11:47:02 +0800 |
commit | e7ec899cc157d0fa8e132a943eea408e820e81b5 (patch) | |
tree | 7c9c5e8ac3181981a6ba84218e1093a253419888 /print | |
parent | 92b1d43182e2149ef98b09815d09db7b6a7bd500 (diff) | |
download | freebsd-ports-gnome-e7ec899cc157d0fa8e132a943eea408e820e81b5.tar.gz freebsd-ports-gnome-e7ec899cc157d0fa8e132a943eea408e820e81b5.tar.zst freebsd-ports-gnome-e7ec899cc157d0fa8e132a943eea408e820e81b5.zip |
An extension to Prawn that provides flexible table support, that means be able
to create tables with rowspan and colspan attributes for each cell
WWW: https://github.com/blaxter/prawn-flexible-table
Diffstat (limited to 'print')
-rw-r--r-- | print/Makefile | 1 | ||||
-rw-r--r-- | print/rubygem-prawn-flexible-table/Makefile | 21 | ||||
-rw-r--r-- | print/rubygem-prawn-flexible-table/distinfo | 2 | ||||
-rw-r--r-- | print/rubygem-prawn-flexible-table/pkg-descr | 4 |
4 files changed, 28 insertions, 0 deletions
diff --git a/print/Makefile b/print/Makefile index 3b91fbecfa82..6003ca19b713 100644 --- a/print/Makefile +++ b/print/Makefile @@ -316,6 +316,7 @@ SUBDIR += rubygem-pdfwriter SUBDIR += rubygem-prawn SUBDIR += rubygem-prawn-core + SUBDIR += rubygem-prawn-flexible-table SUBDIR += rubygem-prawn-format SUBDIR += rubygem-prawn-layout SUBDIR += rubygem-prawn-security diff --git a/print/rubygem-prawn-flexible-table/Makefile b/print/rubygem-prawn-flexible-table/Makefile new file mode 100644 index 000000000000..dc829253a47a --- /dev/null +++ b/print/rubygem-prawn-flexible-table/Makefile @@ -0,0 +1,21 @@ +# Ports collection makefile for: rubygem-prawn-flexible-table +# Date created: December 16, 2010 +# Whom: Philip M. Gollucci <pgollucci@p6m7g8.com> +# +# $FreeBSD$ + +PORTNAME= prawn-flexible-table +PORTVERSION= 0.1.2 +CATEGORIES= print rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Create tables with *span attributes for each cell with Prawn + +RUN_DEPENDS= rubygem-prawn>=0:${PORTSDIR}/print/rubygem-prawn + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/print/rubygem-prawn-flexible-table/distinfo b/print/rubygem-prawn-flexible-table/distinfo new file mode 100644 index 000000000000..d377ab5851a4 --- /dev/null +++ b/print/rubygem-prawn-flexible-table/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/prawn-flexible-table-0.1.2.gem) = 36c3101fb679437f76ff749d542b987b4e48677f6fd4d9c00bcb4bb1b50a89eb +SIZE (rubygem/prawn-flexible-table-0.1.2.gem) = 27136 diff --git a/print/rubygem-prawn-flexible-table/pkg-descr b/print/rubygem-prawn-flexible-table/pkg-descr new file mode 100644 index 000000000000..542e2a11068e --- /dev/null +++ b/print/rubygem-prawn-flexible-table/pkg-descr @@ -0,0 +1,4 @@ +An extension to Prawn that provides flexible table support, that means be able +to create tables with rowspan and colspan attributes for each cell + +WWW: https://github.com/blaxter/prawn-flexible-table |