diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2002-05-11 08:23:24 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2002-05-11 08:23:24 +0000 |
commit | 0b8a8f085ab0b07ff22d803baf27e89e825ebdbf (patch) | |
tree | bfee7e0df8db750dad124d7eb317290d86d66f70 /print | |
parent | 4d6e5d2a2b620b2d36a76b9619a87328cedd094b (diff) | |
download | ports-0b8a8f085ab0b07ff22d803baf27e89e825ebdbf.tar.gz ports-0b8a8f085ab0b07ff22d803baf27e89e825ebdbf.zip |
Unbreak the build by putting back the do-build and do-install targets
which were mysteriously removed in the previous revision.
Pointy hat to: ijliao
Notes
Notes:
svn path=/head/; revision=58898
Diffstat (limited to 'print')
-rw-r--r-- | print/py-reportlab/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/print/py-reportlab/Makefile b/print/py-reportlab/Makefile index a093274f3e23..1a58357fd797 100644 --- a/print/py-reportlab/Makefile +++ b/print/py-reportlab/Makefile @@ -31,6 +31,14 @@ EXAMPLEDIR= ${PREFIX}/share/examples/reportlab post-patch: ${MV} ${WRKSRC}/lib/setup.py ${WRKDIR} +do-build: + @(cd ${WRKDIR}; \ + ${PYTHON_CMD} setup.py build) + +do-install: + @(cd ${WRKDIR}; \ + ${PYTHON_CMD} setup.py install -c -O1 --prefix="${PREFIX}") + post-install: ${MKDIR} ${REPORTLABDIR}/fonts .for fontfile in LeERC___.AFM LeERC___.PFB |