freebsd-ports/devel/xlslib/Makefile
Emanuel Haupt 4cafe7bc37 Add xlslib, a C++ library for generation of Excel(TM) files
xlsLib is a multiplatform, C++ developed, library for dynamically
generating Excel(TM) files (*.xls). It allows the generation of Excel(TM)
compatible files without the need of any other external software.

    * Easy to use, fully object oriented, API.
    * Excel 95 (TM) format spreadsheets.
    * Multiple worksheets.
    * All standard font's styles and colors.
    * All standard cell's styles, colors and properties.
    * All standard cell's border-styles and colors.
    * Three basic type of cells:
          o Blank.
          o Label. The text in labels can be formated in all standard styles.
          o Number. All standard number-formats are supported.
    * Merged cells.
    * Handling of cells using ranges.

PR:		89933
Submitted by:	Sergey Prikhodko <sergey@network-asp.biz>
2005-12-13 13:39:47 +00:00

30 lines
748 B
Makefile

# New ports collection makefile for: xlslib
# Date created: 13 December 2005
# Whom: Sergey Prikhodko<sergey@network-asp.biz>
#
# $FreeBSD$
#
PORTNAME= xlslib
PORTVERSION= 0.2.1
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= sergey@network-asp.biz
COMMENT= A C++ library for generation of Excel(TM) files
GNU_CONFIGURE= yes
INSTALLS_SHLIB= yes
USE_REINPLACE= yes
USE_GCC= 3.4+
post-patch:
@${REINPLACE_CMD} -e 's|^\(SUBDIRS.*src\).*|\1|' \
${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e 's|^\(CXXFLAGS\).*|\1 = @CXXFLAGS@|' \
${WRKSRC}/src/Makefile.in
@${REINPLACE_CMD} -e 's|\(.*class\)\ xlslib_core::\(range\)|\1 \2|' \
${WRKSRC}/src/xlslib/common.h
.include <bsd.port.mk>