converts MSWord Documents to ASCII Text and PostScript Changes 0.30-0.31 ----------------- Bug fixes: - Bug in the "Show hidden (by Word) text" feature fixed - Bug reported by David Aspinwall <aspinwall@timesten.com> fixed - Bug reported by Robert Steinmetz <rob@steinmetznet.com> fixed Old features: - The -g and -c options are no longer supported. The -c option was default and is now used automatically (Unix only) New features: - Ability to show part of the images. - Ability to use landscape mode (Unix only; PostScript version only) - Support for all ISO-8859 character sets plus KOI8 and some code pages (Unix only; text version only) - Antiword will now give a warning if the given Postscript papersize is unsupported. Thanks to Greg Robinson <Greg.Robinson@dsto.defence.gov.au> - Moved from Postscript version 1 to version 2 - Antiword now returns 1 if no Word document is found among the files given on the command-line. As suggested by Jens Schleusener <Jens.Schleusener@dlr.de> - Takes the right margin into account. - The PostScript part now supports the AvantGarde, Bookman, Helvetica-Narrow, NewCenturySchlbk and Palatino font (Unix only) - More accurate fontnames translation table - Initial scale factor is now configurable (RISC OS only)
41 lines
1.2 KiB
Makefile
41 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.4 2001/02/17 22:44:28 obecian Exp $
|
|
|
|
DISTNAME= antiword-0.31
|
|
CATEGORIES= textproc
|
|
NEED_VERSION= 1.336
|
|
MASTER_SITES= http://www.winfield.demon.nl/linux/
|
|
|
|
HOMEPAGE= http://www.winfield.demon.nl/
|
|
|
|
MAINTAINER= Mark Grimes <obecian@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MAKE_FLAGS= CC="${CC}" CFLAGS="${CFLAGS} -Wall -pedantic -DNDEBUG" \
|
|
LD="${CC}"
|
|
|
|
WRKDIST= ${WRKDIR}/antiword.0.31
|
|
|
|
DOC= ChangeLog FAQ History Netscape QandA ReadMe
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/antiword ${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/Unix-only/KDE-only/kantiword.sh \
|
|
${PREFIX}/bin/antiword-kde-dnd.sh
|
|
${INSTALL_MAN} ${WRKSRC}/Docs/antiword.1 ${PREFIX}/man/man1
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/antiword
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/antiword
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/antiword/kde
|
|
.for file in ${DOC}
|
|
${INSTALL_DATA} ${WRKSRC}/Docs/${file} ${PREFIX}/share/doc/antiword
|
|
.endfor
|
|
${INSTALL_DATA} ${WRKSRC}/Unix-only/KDE-only/Antiword.kdelnk.* \
|
|
${PREFIX}/share/antiword/kde
|
|
${INSTALL_DATA} ${WRKSRC}/Unix-only/KDE-only/antiword.xpm \
|
|
${PREFIX}/share/antiword
|
|
|
|
.include <bsd.port.mk>
|