freebsd-ports/print/py-reportlab/Makefile

51 lines
1.2 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: reportlab
# Date created: 17 August 2000
# Whom: Thomas Gellekum <tg@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= reportlab
2002-11-19 17:45:45 +01:00
PORTVERSION= 1.16
CATEGORIES= print python
MASTER_SITES= ftp://ftp.reportlab.com/
2000-10-17 14:12:37 +02:00
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= ReportLab_${PORTVERSION:S/./_/}
EXTRACT_SUFX= .tgz
MAINTAINER= perky@FreeBSD.org
2003-02-25 07:25:35 +01:00
COMMENT= Library to create PDF documents using the Python language
2000-09-12 13:54:11 +02:00
USE_PYTHON= yes
2002-04-29 20:37:38 +02:00
USE_PYDISTUTILS= yes
USE_PYTHON_PREFIX= yes
USE_REINPLACE= yes
NO_WRKSUBDIR= yes
2002-11-19 17:45:45 +01:00
REPORTLABDIR= ${PYTHONPREFIX_SITELIBDIR}/reportlab
DOCDIR= ${PREFIX}/share/doc/reportlab
EXAMPLEDIR= ${PREFIX}/share/examples/reportlab
post-patch:
${MV} ${WRKSRC}/reportlab/lib/setup.py ${WRKDIR}
2002-08-17 12:02:38 +02:00
${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/reportlab/rl_config.py
2002-04-29 20:37:38 +02:00
post-install:
${MKDIR} ${REPORTLABDIR}/fonts
.for fontfile in LeERC___.AFM LeERC___.PFB
(cd ${WRKDIR}/reportlab/fonts; \
${INSTALL_DATA} ${fontfile} ${REPORTLABDIR}/fonts)
.endfor
.if !defined(NOPORTDOCS)
@${MKDIR} ${EXAMPLEDIR}
cd ${WRKSRC}/reportlab/demos; ${TAR} cpf - * | (cd ${EXAMPLEDIR}; ${TAR} xpf -)
@${MKDIR} ${DOCDIR}
${INSTALL_DATA} ${WRKSRC}/reportlab/docs/*.pdf ${DOCDIR}
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>