mirror of
https://git.freebsd.org/ports.git
synced 2025-06-04 04:16:27 -04:00
Simple shell utility to convert html to pdf using a custom static build
of qt and the webkit rendering engine. Features of the static version: * Convert web pages into PDF documents using webkit * Adding headers and footers * TOC generation * Batch mode conversions * XServer is not required (however the X11 client libs must be installed) WWW: http://code.google.com/p/wkhtmltopdf/
This commit is contained in:
parent
d6fa7a4544
commit
5b6e7b0549
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=271420
6 changed files with 126 additions and 0 deletions
|
@ -147,6 +147,7 @@
|
|||
SUBDIR += uudx
|
||||
SUBDIR += uulib
|
||||
SUBDIR += vda2fbd
|
||||
SUBDIR += wkhtmltopdf
|
||||
SUBDIR += xdeview
|
||||
SUBDIR += ytnef
|
||||
SUBDIR += zbase32
|
||||
|
|
86
converters/wkhtmltopdf/Makefile
Normal file
86
converters/wkhtmltopdf/Makefile
Normal file
|
@ -0,0 +1,86 @@
|
|||
# New ports collection makefile for: tnef
|
||||
# Date created: 21 March 2010
|
||||
# Whom: Martin Matuska <mm@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= wkhtmltopdf
|
||||
DISTVERSION= 0.10.0_rc2
|
||||
CATEGORIES= converters
|
||||
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}:wkhtmltopdf \
|
||||
${MASTER_SITE_LOCAL}
|
||||
MASTER_SITE_SUBDIR= mm
|
||||
DISTFILES= ${DISTNAME}.tar.bz2:wkhtmltopdf \
|
||||
wkhtml2pdf-wkhtmltopdf-qt-${WKQTVERSION}.tar.bz2
|
||||
|
||||
MAINTAINER= mm@FreeBSD.org
|
||||
COMMENT= HTML to PDF converter
|
||||
|
||||
LIB_DEPENDS+= fontconfig:${PORTSDIR}/x11-fonts/fontconfig \
|
||||
freetype:${PORTSDIR}/print/freetype2 \
|
||||
jpeg:${PORTSDIR}/graphics/jpeg \
|
||||
png:${PORTSDIR}/graphics/png \
|
||||
mng:${PORTSDIR}/graphics/libmng \
|
||||
tiff:${PORTSDIR}/graphics/tiff
|
||||
|
||||
WRKSRC= ${WRKDIR}/qt-${PORTNAME}-qt
|
||||
INSTALL_WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION}
|
||||
|
||||
WKQTVERSION= 1806ef3b
|
||||
USE_XORG= x11 xext xrender
|
||||
USE_PERL5_BUILD= yes
|
||||
USE_LDCONFIG= yes
|
||||
USE_GMAKE= yes
|
||||
HAS_CONFIGURE= yes
|
||||
MAKE_JOBS_SAFE= yes
|
||||
|
||||
OPTIONS= BUNDLED_LIBS "Use Qt-bundled jpeg, mng, png and tiff" off
|
||||
|
||||
CONFIGURE_ARGS= -prefix ${WRKDIR}/wkqt \
|
||||
-release -static -fast -exceptions -no-accessibility -no-stl \
|
||||
-no-sql-ibase -no-sql-mysql -no-sql-odbc -no-sql-psql -no-sql-sqlite \
|
||||
-no-sql-sqlite2 -no-qt3support -xmlpatterns -no-phonon \
|
||||
-no-phonon-backend -webkit -no-scripttools -no-mmx -no-3dnow -no-sse \
|
||||
-no-sse2 -system-zlib -qt-gif \
|
||||
-graphicssystem raster -opensource -confirm-license \
|
||||
-nomake tools -nomake examples -nomake demos -nomake docs \
|
||||
-nomake translations -no-opengl -no-dbus -no-multimedia -openssl \
|
||||
-no-declarative -largefile -rpath -no-nis -no-cups -no-iconv -no-pch \
|
||||
-no-gtkstyle -no-nas-sound -no-sm -no-xshape -no-xinerama -no-xcursor \
|
||||
-no-xfixes -no-xrandr -no-mitshm -no-xinput -no-xkb -no-glib -no-openvg \
|
||||
-no-opengl -no-xsync -no-audio-backend -no-sse3 -no-ssse3 -no-sse4.1 \
|
||||
-no-sse4.2
|
||||
|
||||
MAKE_ARGS+= INSTALL_ROOT="${PREFIX}"
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if defined(WITH_BUNDLED_LIBS)
|
||||
CONFIGURE_ARGS+= -qt-libtiff -qt-libpng -qt-libmng -qt-libjpeg
|
||||
.else
|
||||
LIB_DEPENDS+= jpeg:${PORTSDIR}/graphics/jpeg \
|
||||
png:${PORTSDIR}/graphics/png \
|
||||
mng:${PORTSDIR}/graphics/libmng \
|
||||
tiff:${PORTSDIR}/graphics/tiff
|
||||
CONFIGURE_ARGS+= -system-libtiff -system-libpng -system-libmng \
|
||||
-system-libjpeg
|
||||
.endif
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|/usr/X11R6/include|${LOCALBASE}/include/X11|g' \
|
||||
-e 's|/usr/X11R6/lib|${LOCALBASE}/lib|g' \
|
||||
${WRKSRC}/mkspecs/freebsd-g++/qmake.conf
|
||||
|
||||
post-build:
|
||||
@cd ${WRKSRC} && \
|
||||
${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET} \
|
||||
INSTALL_ROOT=
|
||||
@cd ${WRKDIR}/${PORTNAME}-${DISTVERSION} && ${WRKDIR}/wkqt/bin/qmake && \
|
||||
${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET}
|
||||
|
||||
post-install:
|
||||
@${STRIP_CMD} ${PREFIX}/bin/wkhtmltopdf ${PREFIX}/bin/wkhtmltoimage
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
|
||||
.include <bsd.port.post.mk>
|
4
converters/wkhtmltopdf/distinfo
Normal file
4
converters/wkhtmltopdf/distinfo
Normal file
|
@ -0,0 +1,4 @@
|
|||
SHA256 (wkhtmltopdf-0.10.0_rc2.tar.bz2) = 3df9a81f0b4823ab3b0ba60e218b206a264bcf810b078fd543e266295b577a5a
|
||||
SIZE (wkhtmltopdf-0.10.0_rc2.tar.bz2) = 107680
|
||||
SHA256 (wkhtml2pdf-wkhtmltopdf-qt-1806ef3b.tar.bz2) = 044dc96e6da5827d25f41f7a916fc52aa87aff9b5cd33bed0b7b75d386a5b08b
|
||||
SIZE (wkhtml2pdf-wkhtmltopdf-qt-1806ef3b.tar.bz2) = 122812086
|
11
converters/wkhtmltopdf/pkg-descr
Normal file
11
converters/wkhtmltopdf/pkg-descr
Normal file
|
@ -0,0 +1,11 @@
|
|||
Simple shell utility to convert html to pdf using a custom static build
|
||||
of qt and the webkit rendering engine.
|
||||
|
||||
Features of the static version:
|
||||
* Convert web pages into PDF documents using webkit
|
||||
* Adding headers and footers
|
||||
* TOC generation
|
||||
* Batch mode conversions
|
||||
* XServer is not required (however the X11 client libs must be installed)
|
||||
|
||||
WWW: http://code.google.com/p/wkhtmltopdf/
|
3
converters/wkhtmltopdf/pkg-message
Normal file
3
converters/wkhtmltopdf/pkg-message
Normal file
|
@ -0,0 +1,3 @@
|
|||
|
||||
For proper functionality you may need to install the following port(s):
|
||||
x11-fonts/webfonts
|
21
converters/wkhtmltopdf/pkg-plist
Normal file
21
converters/wkhtmltopdf/pkg-plist
Normal file
|
@ -0,0 +1,21 @@
|
|||
bin/wkhtmltopdf
|
||||
bin/wkhtmltoimage
|
||||
include/wkhtmltox/converter.hh
|
||||
include/wkhtmltox/dllbegin.inc
|
||||
include/wkhtmltox/dllend.inc
|
||||
include/wkhtmltox/image.h
|
||||
include/wkhtmltox/imageconverter.hh
|
||||
include/wkhtmltox/imagesettings.hh
|
||||
include/wkhtmltox/loadsettings.hh
|
||||
include/wkhtmltox/multipageloader.hh
|
||||
include/wkhtmltox/pdf.h
|
||||
include/wkhtmltox/pdfconverter.hh
|
||||
include/wkhtmltox/pdfsettings.hh
|
||||
include/wkhtmltox/settings.hh
|
||||
include/wkhtmltox/utilities.hh
|
||||
include/wkhtmltox/websettings.hh
|
||||
lib/libwkhtmltox.so
|
||||
lib/libwkhtmltox.so.0
|
||||
lib/libwkhtmltox.so.0.10
|
||||
lib/libwkhtmltox.so.0.10.0
|
||||
@dirrm include/wkhtmltox
|
Loading…
Add table
Reference in a new issue