mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
49 lines
1.3 KiB
Makefile
49 lines
1.3 KiB
Makefile
# Created by: Simon 'corecode' Schubert <corecode@corecode.ath.cx>
|
|
|
|
PORTNAME= html2text
|
|
PORTVERSION= 1.3.2a
|
|
PORTEPOCH= 1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= SUNSITE/apps/www/converters \
|
|
http://www.mbayer.de/html2text/downloads/
|
|
|
|
MAINTAINER= bapt@FreeBSD.org
|
|
COMMENT= Converts HTML documents into plain text
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
HAS_CONFIGURE= yes
|
|
|
|
PORTDOCS= CHANGES CREDITS KNOWN_BUGS README TODO
|
|
PLIST_FILES= bin/html2text man/man1/html2text.1.gz man/man5/html2textrc.5.gz
|
|
|
|
CONFLICTS= py27-html2text-[0-9]*
|
|
|
|
PORTSCOUT= skipb:0 skipv:1.3.2
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/echo=/s/ -e//' ${WRKSRC}/configure
|
|
.for fle in Makefile.in libstd/Makefile.in
|
|
@${REINPLACE_CMD} -e '/^DEBUG/s/^/#/; \
|
|
/^CXXFLAGS/s/=/+=/' ${WRKSRC}/${fle}
|
|
.endfor
|
|
.for fle in Area.h HTMLControl.h Properties.h format.h
|
|
@${REINPLACE_CMD} -e 's/<istream>/<iostream>/' ${WRKSRC}/${fle}
|
|
.endfor
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/html2text ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/html2text.1.gz ${STAGEDIR}${MANPREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/html2textrc.5.gz ${STAGEDIR}${MANPREFIX}/man/man5
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|