diff options
author | pawel <pawel@FreeBSD.org> | 2015-10-30 05:35:01 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2015-10-30 05:35:01 +0800 |
commit | 4a9c6cb1499821fddb600659ad4d0c7fe1b8aeea (patch) | |
tree | edf99b8252ea3e8f00b442dedf9346e8bf55ce2f /print/py-fpdf | |
parent | 80edd47d9e59b9048183cccfab0962fcad26d529 (diff) | |
download | freebsd-ports-gnome-4a9c6cb1499821fddb600659ad4d0c7fe1b8aeea.tar.gz freebsd-ports-gnome-4a9c6cb1499821fddb600659ad4d0c7fe1b8aeea.tar.zst freebsd-ports-gnome-4a9c6cb1499821fddb600659ad4d0c7fe1b8aeea.zip |
PyFPDF is a library for PDF document generation under Python, ported from
PHP (see FPDF "Free"-PDF, a well-known PDFlib-extension replacement with
many examples, scripts and derivatives).
Compared with other PDF libraries, PyFPDF is simple, small and versatile,
with advanced capabilities and easy to learn, extend and maintain.
Features
* Python 2.5 to 2.7 support (with experimental Python3 support)
* Unicode (UTF-8) TrueType font subset embedding
* Barcode I2of5 and code39, QR code coming soon ...
* PNG, GIF and JPG support (including transparency and alpha channel)
* Templates with a visual designer & basic html2pdf
* Exceptions support, other minor fixes, improvements and PEP8 code
cleanups
WWW: https://code.google.com/p/pyfpdf/
PR: 203816
Submitted by: Fabiano Sidler <fabianosidler@swissonline.ch>
Diffstat (limited to 'print/py-fpdf')
-rw-r--r-- | print/py-fpdf/Makefile | 19 | ||||
-rw-r--r-- | print/py-fpdf/distinfo | 2 | ||||
-rw-r--r-- | print/py-fpdf/pkg-descr | 17 |
3 files changed, 38 insertions, 0 deletions
diff --git a/print/py-fpdf/Makefile b/print/py-fpdf/Makefile new file mode 100644 index 000000000000..c38a398c7a9d --- /dev/null +++ b/print/py-fpdf/Makefile @@ -0,0 +1,19 @@ +# Created by: Fabiano Sidler <fabianosidler@swissonline.ch> +# $FreeBSD$ + +PORTNAME= fpdf +PORTVERSION= 1.7.2 +CATEGORIES= print python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= fabianosidler@swissonline.ch +COMMENT= Simple PDF generation for Python + +LICENSE= LGPL3 + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/print/py-fpdf/distinfo b/print/py-fpdf/distinfo new file mode 100644 index 000000000000..b0a2f7d1f77f --- /dev/null +++ b/print/py-fpdf/distinfo @@ -0,0 +1,2 @@ +SHA256 (fpdf-1.7.2.tar.gz) = 125840783289e7d12552b1e86ab692c37322e7a65b96a99e0ea86cca041b6779 +SIZE (fpdf-1.7.2.tar.gz) = 39504 diff --git a/print/py-fpdf/pkg-descr b/print/py-fpdf/pkg-descr new file mode 100644 index 000000000000..28584f497225 --- /dev/null +++ b/print/py-fpdf/pkg-descr @@ -0,0 +1,17 @@ +PyFPDF is a library for PDF document generation under Python, ported from +PHP (see FPDF "Free"-PDF, a well-known PDFlib-extension replacement with +many examples, scripts and derivatives). + +Compared with other PDF libraries, PyFPDF is simple, small and versatile, +with advanced capabilities and easy to learn, extend and maintain. + +Features + * Python 2.5 to 2.7 support (with experimental Python3 support) + * Unicode (UTF-8) TrueType font subset embedding + * Barcode I2of5 and code39, QR code coming soon ... + * PNG, GIF and JPG support (including transparency and alpha channel) + * Templates with a visual designer & basic html2pdf + * Exceptions support, other minor fixes, improvements and PEP8 code + cleanups + +WWW: https://code.google.com/p/pyfpdf/ |