123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- Summary: HTML to PDF/Image generation application
- Summary(ja): HTMLからPDFまたは画像を生成するアプリケーション
- Name: wkhtmltopdf
- Version: 0.12.3.2
- Release: 1%{?_dist_release}
- License: GPLv3
- Group: System Environment/Libraries
- Url: http://wkhtmltopdf.org/
- Source0: wkhtmltopdf-%{version}.tar.gz
- Source1: patched-qt.tar.xz
- Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root
- BuildRequires: fontconfig-devel
- BuildRequires: libjpeg-turbo-devel
- BuildRequires: libpng-devel
- BuildRequires: libX11-devel
- BuildRequires: libXext-devel
- BuildRequires: libXrender-devel
- BuildRequires: openssl-devel
- BuildRequires: pkgconfig
- BuildRequires: python
- BuildRequires: zlib-devel
- %description
- Simple utility to convert html to pdf or image using the webkit
- rendering engine, and QT.
- This package includes following command.
- - wkhtmltopdf
- - wkhtmltoimage
- %package devel
- Summary: Development files for wkhtmltopdf
- Summary(ja): wkhtmltopdf の開発ファイル
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- %description devel
- Development files for wkhtmltox.
- %prep
- %setup -q -n %{name}-%{version}
- tar xvf %{SOURCE1}
- # libdir handling.. better handling needed
- sed -i.lib -e \
- '/INSTALLBASE/s|lib|%{_lib}|' \
- src/lib/lib.pro
- # Remove BOM
- sed -i.bom -e 's|\xEF\xBB\xBF||' AUTHORS
- touch -r AUTHORS{.bom,}
- rm -f AUTHORS.bom
- %build
- pushd qt
- ./configure \
- -confirm-license \
- -opensource \
- -prefix ../wkqt \
- -fast \
- -release \
- -static \
- -graphicssystem raster \
- -webkit \
- -exceptions \
- -xmlpatterns \
- -no-rpath \
- -reduce-relocations \
- -fontconfig \
- -openssl-linked \
- -system-zlib \
- -system-libpng \
- -system-libjpeg \
- -no-libmng \
- -no-libtiff \
- -no-accessibility \
- -no-stl \
- -no-qt3support \
- -no-phonon \
- -no-phonon-backend \
- -no-opengl \
- -no-declarative \
- -no-scripttools \
- -no-sql-ibase \
- -no-sql-mysql \
- -no-sql-odbc \
- -no-sql-psql \
- -no-sql-sqlite \
- -no-sql-sqlite2 \
- -no-mmx \
- -no-3dnow \
- -no-sse \
- -no-sse2 \
- -no-multimedia \
- -nomake demos,docs,examples,tools,tests,translations
- # -no-script
- make %{?_smp_mflags}
- make install
- popd
- ./wkqt/bin/qmake
- make %{?_smp_mflags}
- #%{_qt4_qmake}
- #make %{?_smp_mflags}
- %install
- rm -rf %{buildroot}
- make install INSTALL_ROOT=%{buildroot}/%{_prefix}
- # remove unneeded scripts
- rm -rf scripts/test*
- %clean
- rm -rf %{buildroot}
- %post
- /sbin/ldconfig
- %postun
- /sbin/ldconfig
- %files
- %doc AUTHORS
- %doc CHANGELOG.md
- %doc CHANGELOG-OLD
- %doc LICENSE
- %doc README.md
- %{_bindir}/*
- %{_libdir}/*.so.*
- %{_mandir}/man1/wkhtmltoimage.1*
- %{_mandir}/man1/wkhtmltopdf.1*
- %files devel
- %doc examples
- %{_libdir}/*.so
- %{_includedir}/*
- %changelog
- * Mon May 2 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.12.3.2-1
- - new upstream release.
- - built with patched qt.
- * Sat Aug 29 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.12.2.1-1
- - new upstream release.
- * Mon Dec 10 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.11.0-0.rc1
- - initial build for Vine Linux
|