diff options
author | Sergei Kolobov <sergei@FreeBSD.org> | 2004-04-04 13:52:57 +0000 |
---|---|---|
committer | Sergei Kolobov <sergei@FreeBSD.org> | 2004-04-04 13:52:57 +0000 |
commit | 9f1e170da68004f3890333bec8bb07ad20173894 (patch) | |
tree | ac0e076a094780a304bcc92713f35105be302fca /textproc/xmlto/Makefile | |
parent | 35238c4091ea11c2fc44112646d3e193f2b3f53d (diff) |
- Update to 0.0.18
- Teach format/docbook/txt to look in ${LOCALBASE}/bin instead of /usr/bin
This fixes this error: No way to convert HTML to text found.
PR: ports/64952
Submitted by: Koop Mast <kwm@rainbow-runner.nl>
Notes
Notes:
svn path=/head/; revision=106116
Diffstat (limited to 'textproc/xmlto/Makefile')
-rw-r--r-- | textproc/xmlto/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/textproc/xmlto/Makefile b/textproc/xmlto/Makefile index ac23e915a2d3..73d15c012380 100644 --- a/textproc/xmlto/Makefile +++ b/textproc/xmlto/Makefile @@ -9,8 +9,7 @@ # WITH_PASSIVETEX Enable PassiveTex support for DVI/PDF/PS output PORTNAME= xmlto -PORTVERSION= 0.0.17 -PORTREVISION= 2 +PORTVERSION= 0.0.18 CATEGORIES= textproc MASTER_SITES= http://cyberelk.net/tim/data/xmlto/stable/ DISTNAME= ${PORTNAME}-${PORTVERSION:S/.p/pre/} @@ -51,6 +50,10 @@ post-patch: ${REINPLACE_CMD} -e '/format\/fo\//d' ${WRKSRC}/Makefile.in .endif +post-build: + @${REINPLACE_CMD} -e 's,/usr/bin,${LOCALBASE}/bin,g' \ + ${WRKSRC}/format/docbook/txt + .if !defined(NOPORTDOCS) post-install: @${MKDIR} ${DOCSDIR} |