pkgsrc/print/poppler-qt/Makefile
drochner 551dbc985a update to 0.5.3
changes:
-improved Qt bindings
-Cairo backend now supports masked images
-make glib bindings more language binding friendly
-Search now works with ligatures
-glib bindings now has an entry point to render to a cairo_t
-GCC 4.1 and MSVC compilation fixes
-bugfixes and cleanup
2006-05-31 18:13:54 +00:00

37 lines
1.5 KiB
Makefile

# $NetBSD: Makefile,v 1.13 2006/05/31 18:13:54 drochner Exp $
#
.include "../../print/poppler/Makefile.common"
PKGNAME= poppler-qt-${POPPLER_VERS}
COMMENT= PDF rendering library (QT wrapper)
PKGCONFIG_OVERRIDE+= ${WRKSRC}/poppler-qt.pc.in
INCS=-I. -I.. -I../poppler `pkg-config poppler --cflags` -I${QTDIR}/include
do-build:
(cd ${WRKSRC}/qt; \
${LIBTOOL} --tag=CXX --mode=compile ${CXX} ${CXXFLAGS} ${INCS} -c -o poppler-document.lo poppler-document.cc; \
${LIBTOOL} --tag=CXX --mode=compile ${CXX} ${CXXFLAGS} ${INCS} -c -o poppler-page.lo poppler-page.cc; \
${LIBTOOL} --tag=CXX --mode=link ${CXX} ${LDFLAGS} `pkg-config poppler --libs` -L${QTDIR}/lib ${COMPILER_RPATH_FLAG}${QTDIR}/lib -o libpoppler-qt.la -rpath ${PREFIX}/lib poppler-document.lo poppler-page.lo -lqt-mt )
${SED} -e s:@VERSION@:${POPPLER_VERS}: \
-e s:@prefix@:${PREFIX}: \
-e 's:@exec_prefix@:$${prefix}:' \
-e 's:@libdir@:$${exec_prefix}/lib:' \
-e 's:@includedir@:$${prefix}/include:' \
${WRKSRC}/poppler-qt.pc.in > ${WRKSRC}/poppler-qt.pc
do-install:
${LIBTOOL} --mode=install ${INSTALL_LIB} ${WRKSRC}/qt/libpoppler-qt.la ${PREFIX}/lib
${INSTALL_DATA} ${WRKSRC}/qt/poppler-qt.h ${PREFIX}/include/poppler
${INSTALL_DATA} ${WRKSRC}/qt/poppler-page-transition.h \
${PREFIX}/include/poppler
${INSTALL_DATA} ${WRKSRC}/poppler-qt.pc ${PREFIX}/lib/pkgconfig
BUILDLINK_API_DEPENDS.poppler+= poppler>=${POPPLER_VERS}
.include "../../print/poppler/buildlink3.mk"
.include "../../x11/qt3-libs/buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"