a53ef5a428
maintainership (all this okayed by the old maintainer, Jeremy C. Reed). Changes from 0.9.2 include (apart from various bugfixes): - WPX_SEEK_END for WPXMemoryInputStream (Laurent Alonso) - Metadata for wpd2html (David Hislop) - Change source code layout so that public headers be in inc/ and its subdirectories - libwpd.h and libwpd-stream.h are not generated headers anymore - Change the way we get version from libwpd build - Improvements to WPXOLEStream class - Added MPL2+ to the licenses libwpd is released under - Revert an accidental ABI change in WPXPropertyList - Link the Windows static libraries with DLL runtimes - libwpd-stream: Add experimental support for ZIP storages - libwpd-stream: Add WPX_SEEK_END to the WPXSeekType enum (Be sure that you are at offset 0 using it and check return value in order to be compatible with lower versions of libwpd) - New Visual Studio 2008 and Visual Studio 2010 build files - Don't output points as integer. This solves some rounding issues along with possibility of writing 10.5 point font size (Fridrich) - General improvement of code quality by buiding with -Weffc++ option (Fridrich) - Improvement of textbox code (Laurent Alonso) - Improvement of arabic charset mapping (Smokey Ardisson) - Build system rewrite and improvement (Tomas Chvatal) - Cleanup of return values (Thomas Klausner) - Conversion of extended characters in WP 42 parser (Fridrich)
26 lines
686 B
Makefile
26 lines
686 B
Makefile
# $NetBSD: Makefile,v 1.28 2013/08/24 21:50:24 jaapb Exp $
|
|
|
|
DISTNAME= libwpd-0.9.9
|
|
CATEGORIES= converters
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libwpd/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= jaapb@NetBSD.org
|
|
HOMEPAGE= http://libwpd.sourceforge.net/
|
|
COMMENT= Library for importing and exporting WordPerfect(tm) documents
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake pkg-config
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --without-docs
|
|
PKGCONFIG_OVERRIDE+= libwpd-0.9.pc.in libwpd-stream-0.9.pc.in
|
|
|
|
.include "../../mk/compiler.mk"
|
|
|
|
.if !empty(PKGSRC_COMPILER:Mclang)
|
|
_WRAP_EXTRA_ARGS.CXX+= -Wno-unused-private-field
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|