diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-03-16 16:41:22 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-03-16 16:41:22 +0000 |
commit | a56e791c8a33def39b5dc6505d9c9ac73239fbda (patch) | |
tree | 186ea9f896ad62ac19acc16dcb6feafb75d8191d /textproc | |
parent | c1ae8c0671f0f39a3a88ee1ddb2a42a22f165867 (diff) | |
download | ports-a56e791c8a33def39b5dc6505d9c9ac73239fbda.tar.gz ports-a56e791c8a33def39b5dc6505d9c9ac73239fbda.zip |
Add pear-Spreadsheet_Excel_Writer, a PEAR class for writing Microsoft Excel
spreadsheets.
Notes
Notes:
svn path=/head/; revision=104180
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/pear-Spreadsheet_Excel_Writer/Makefile | 24 | ||||
-rw-r--r-- | textproc/pear-Spreadsheet_Excel_Writer/distinfo | 2 | ||||
-rw-r--r-- | textproc/pear-Spreadsheet_Excel_Writer/pkg-descr | 8 |
4 files changed, 35 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 385b44ead2cd..b58c28743600 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -394,6 +394,7 @@ SUBDIR += par SUBDIR += pardiff SUBDIR += pdftohtml + SUBDIR += pear-Spreadsheet_Excel_Writer SUBDIR += perl2html SUBDIR += ppower4 SUBDIR += pocketreader diff --git a/textproc/pear-Spreadsheet_Excel_Writer/Makefile b/textproc/pear-Spreadsheet_Excel_Writer/Makefile new file mode 100644 index 000000000000..e74e40bc90b7 --- /dev/null +++ b/textproc/pear-Spreadsheet_Excel_Writer/Makefile @@ -0,0 +1,24 @@ +# Ports collection makefile for: pear-Spreadsheet_Excel_Writer +# Date created: 16 March 2004 +# Whom: Pav Lucistnik <pav@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= Spreadsheet_Excel_Writer +PORTVERSION= 0.7 +CATEGORIES= textproc www pear + +MAINTAINER= pav@FreeBSD.org +COMMENT= PEAR class for writing Microsoft Excel files + +BUILD_DEPENDS= ${PEARDIR}/OLE.php:${PORTSDIR}/devel/pear-OLE +RUN_DEPENDS= ${BUILD_DEPENDS} + +CATEGORY= Spreadsheet/Excel +FILES= Writer.php Writer/BIFFwriter.php Writer/Format.php Writer/Parser.php \ + Writer/Validator.php Writer/Workbook.php Writer/Worksheet.php + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common" +.include <bsd.port.post.mk> diff --git a/textproc/pear-Spreadsheet_Excel_Writer/distinfo b/textproc/pear-Spreadsheet_Excel_Writer/distinfo new file mode 100644 index 000000000000..c1ab9dfbc1e2 --- /dev/null +++ b/textproc/pear-Spreadsheet_Excel_Writer/distinfo @@ -0,0 +1,2 @@ +MD5 (PEAR/Spreadsheet_Excel_Writer-0.7.tgz) = 8eb556898db36eb45c6933e1ea0bec83 +SIZE (PEAR/Spreadsheet_Excel_Writer-0.7.tgz) = 55895 diff --git a/textproc/pear-Spreadsheet_Excel_Writer/pkg-descr b/textproc/pear-Spreadsheet_Excel_Writer/pkg-descr new file mode 100644 index 000000000000..38051c47537d --- /dev/null +++ b/textproc/pear-Spreadsheet_Excel_Writer/pkg-descr @@ -0,0 +1,8 @@ +PEAR class for generating Excel spreadsheets. It was born as a port of the +Spreadsheet::WriteExcel Perl module to PHP. It allows writing of Excel +spreadsheets without the need for COM objects. It supports formulas, images +(BMP) and all kinds of formatting for text and cells. It currently supports +the BIFF5 format (Excel 5.0), so functionality appeared in the latest Excel +versions is not yet available. + +WWW: http://pear.php.net/package/Spreadsheet_Excel_Writer |