eab53ae8a7
Changelog: librevenge 0.0.4 - Fix possible crash in raw generators for unbalanced open/close calls. - Fix build in C++11 mode. - Fix gdb pretty printers and make them compatible with Python 3. - Fix RVNGString::Iter::last(), which only worked correctly for strings containing only ASCII characters. - Document the difference between RVNGString::len() and RVNGString::size(). - Considerably improve performance of RVNGString iterator (a crude measurement shows at least 45% improvement).
33 lines
1,014 B
Makefile
33 lines
1,014 B
Makefile
# $NetBSD: Makefile,v 1.9 2016/03/08 18:56:00 ryoon Exp $
|
|
|
|
DISTNAME= librevenge-0.0.4
|
|
CATEGORIES= converters
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libwpd/}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://sourceforge.net/projects/libwpd/
|
|
COMMENT= Base library for writing document import filters
|
|
LICENSE= mpl-2.0
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake pkg-config
|
|
GNU_CONFIGURE= yes
|
|
# Do not use -Werror, or configure will fail.
|
|
CONFIGURE_ARGS+= --disable-werror
|
|
# needs doxygen (heavy dependency); in case someone is interested
|
|
# in this, make it a package option
|
|
CONFIGURE_ARGS+= --without-docs
|
|
|
|
PKGCONFIG_OVERRIDE+= librevenge-generators.pc.in
|
|
PKGCONFIG_OVERRIDE+= librevenge-stream.pc.in
|
|
PKGCONFIG_OVERRIDE+= librevenge.pc.in
|
|
|
|
PTHREAD_AUTO_VARS= yes
|
|
|
|
.include "../../devel/boost-libs/buildlink3.mk"
|
|
.include "../../devel/cppunit/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|