c567676136
Release 21.06.0: core: * Fix rendering of some extended latin1 characters in annotations. Issue #1070 * Support some not so well formed documents with password. Issue #1083 * Add API to get notified if the xref is reconstructed * Add somewhat fancier left/right signature visual representation * Fix crashes in malformed files * Minor code improvements qt6: * Change some functions to return std::unique_ptr qt5/qt6: * Add API to get notified if the xref is reconstructed * Add somewhat fancier left/right signature visual representation * Don't assert when trying to invert singular matrices build system: * make boost opt-out if building splash - Add dependency on boost to enable the splash backend. PR: 256370 Exp-run by: antoine
33 lines
917 B
Makefile
33 lines
917 B
Makefile
# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
|
|
PORTNAME= textmail
|
|
PORTVERSION= 20070803
|
|
PORTREVISION= 27
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://raf.org/textmail/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Converts e-mail attachments to plain-text
|
|
|
|
RUN_DEPENDS= antiword:textproc/antiword \
|
|
catdoc:textproc/catdoc \
|
|
xls2csv:textproc/catdoc \
|
|
lynx:www/lynx \
|
|
pdftotext:graphics/poppler-utils
|
|
|
|
USES= perl5 shebangfix
|
|
SHEBANG_FILES= ${PORTNAME}
|
|
PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
|
|
NO_WRKSUBDIR= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '3s|^|\${.newline}$$ENV{'PATH'} = "${LOCALBASE}/libexec/xpdf:$$ENV{'PATH'}";\${.newline}|' ${WRKSRC}/${PORTNAME}
|
|
|
|
do-build:
|
|
@cd ${WRKSRC}/&&pod2man ${PORTNAME}>${PORTNAME}.1
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|