Skip to content

Commit 026c7f8

Browse files
- self compiled Ghostscript 9.26 with patches
1 parent e82cb6e commit 026c7f8

7 files changed

+137
-16
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
**2019-02-24 - v1.3.1**
2+
3+
* integrated a self compiled version of Ghostscript 9.26 with actual patches from
4+
https://github.com/alpinelinux/aports/tree/8e262865b06f0d565f7c1ed0b4d8f43bf18b0d68/main/ghostscript
5+
* should fix the issue [#789 Uploading PDF results in Calibre Web restarting [Docker]](https://github.com/janeczku/calibre-web/issues/789)
6+
17
**2019-02-17 - v1.3.0**
28

39
* new base image [technosoft2000/alpine-base:3.9-1](https://hub.docker.com/r/technosoft2000/alpine-base/) based on Alpine 3.9

Dockerfile

+55-16
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
FROM technosoft2000/alpine-base:3.9-1
22
MAINTAINER Technosoft2000 <[email protected]>
3-
LABEL image.version="1.3.0" \
3+
LABEL image.version="1.3.1" \
44
image.description="Docker image for Calibre Web, based on docker image of Alpine" \
5-
image.date="2019-02-17" \
5+
image.date="2019-02-24" \
66
url.docker="https://hub.docker.com/r/technosoft2000/calibre-web" \
77
url.github="https://github.com/Technosoft2000/docker-calibre-web" \
88
url.support="https://cytec.us/forum"
99

1010
# Set basic environment settings
1111
ENV \
1212
# - VERSION: the docker image version (corresponds to the above LABEL image.version)
13-
VERSION="1.3.0" \
13+
VERSION="1.3.1" \
1414

1515
# - LANG, LANGUAGE, LC_ALL: language dependent settings (Default: en_US.UTF-8)
1616
LANG="en_US.UTF-8" \
@@ -41,15 +41,23 @@ ENV \
4141
CALIBRE_PATH="/books" \
4242

4343
# - PKG_*: the needed applications for installation
44-
PKG_DEV="make gcc g++ python-dev openssl-dev libffi-dev libxml2-dev libxslt-dev" \
44+
PKG_DEV="build-base python-dev openssl-dev libffi-dev libxml2-dev libxslt-dev" \
4545
PKG_PYTHON="ca-certificates py-pip python py-libxml2 py-libxslt py-lxml libev" \
4646
# WARNING: Wand supports only ImageMagick 6 at the moment and Alpine delivers already ImageMagick 7
4747
# PKG_IMAGES="imagemagick imagemagick-doc imagemagick-dev" \
4848
# need to build ImageMagick 6 from source
49-
PKG_IMAGES_DEV="curl file fontconfig-dev freetype-dev ghostscript-dev lcms2-dev \
49+
PKG_IMAGES_DEV="curl file fontconfig-dev freetype-dev lcms2-dev \
5050
libjpeg-turbo-dev libpng-dev libtool libwebp-dev perl-dev tiff-dev xz zlib-dev" \
51-
PKG_IMAGES="fontconfig freetype ghostscript lcms2 libjpeg-turbo libltdl libpng \
52-
libwebp libxml2 tiff zlib" \
51+
PKG_IMAGES="fontconfig freetype lcms2 libjpeg-turbo libltdl libpng \
52+
libwebp libxml2 tiff zlib" \
53+
# WARNING: The current Ghosscript 9.26 has a bug which results into a SEGMENTATION FAULT
54+
# and therefore we need to build our own Ghosscript 9.26 from source with additional patches
55+
# PKG_IMAGES_DEV="ghostscript-dev"
56+
# PKG_IMAGES="ghostscript"
57+
PKG_GS_DEV="libjpeg-turbo-dev libpng-dev jasper-dev expat-dev \
58+
zlib-dev tiff-dev freetype-dev lcms2-dev gtk+3.0-dev \
59+
cups-dev libtool jbig2dec-dev openjpeg-dev" \
60+
PKG_GS="jasper expat jbig2dec openjpeg" \
5361

5462
# - MAGICK_HOME: the ImageMagick home especially for Wand
5563
# see at: http://docs.wand-py.org/en/latest/guide/install.html#explicit-link
@@ -100,19 +108,18 @@ RUN \
100108
"$ALPINE_GLIBC_BIN_PACKAGE_FILENAME" \
101109
"$ALPINE_GLIBC_I18N_PACKAGE_FILENAME"
102110

111+
COPY ghostscript /init/ghostscript/
103112
RUN \
104-
# update the package list
113+
echo "--- Update the package list ------------------------------------------------" && \
105114
apk -U upgrade && \
106115

107-
# install the needed applications
108-
apk -U add --no-cache $PKG_DEV $PKG_PYTHON $PKG_IMAGES_DEV $PKG_IMAGES && \
116+
echo "--- Install applications via package manager -------------------------------" && \
117+
apk -U add --no-cache $PKG_DEV $PKG_PYTHON $PKG_IMAGES_DEV $PKG_IMAGES $PKG_GS_DEV $PKG_GS && \
109118

110-
# upgrade pip to the latest version
111-
echo "--- Upgrade pip ------------------------------------------------------------" && \
119+
echo "--- Upgrade pip to the latest version --------------------------------------" && \
112120
pip install --upgrade pip && \
113121

114-
# install additional python packages:
115-
echo "--- Install python packages ------------------------------------------------" && \
122+
echo "--- Install python packages via pip ----------------------------------------" && \
116123
pip --no-cache-dir install --upgrade \
117124
setuptools \
118125
pyopenssl \
@@ -161,7 +168,36 @@ RUN \
161168
Flask-Dance \
162169
&& \
163170

164-
# get actual ImageMagic 6 version info
171+
### Ghostscript ###
172+
echo "--- Get Ghostscript 9.26 and build it --------------------------------------" && \
173+
174+
# create temporary build directory for Ghostscript
175+
mkdir -p /tmp/ghostscript && \
176+
177+
# download Ghostscript
178+
curl -o /tmp/ghostscript-src.tar.gz -L "https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs926/ghostscript-9.26.tar.gz" && \
179+
180+
# unpack Ghostscript
181+
tar xf /tmp/ghostscript-src.tar.gz -C /tmp/ghostscript --strip-components=1 && \
182+
183+
# patch & configure Ghostscript
184+
cp /init/ghostscript/* /tmp/ghostscript && \
185+
cd /tmp/ghostscript && \
186+
patch cups/gdevcups.c fix-sprintf.patch && \
187+
patch base/gdevsclass.c fix-put_image-methode.patch && \
188+
patch base/stdio_.h fix-stdio.patch && \
189+
patch base/lib.mak ghostscript-system-zlib.patch && \
190+
./configure && \
191+
192+
# compile Ghostscript
193+
make so all && \
194+
195+
# install Ghostscript
196+
make soinstall && \
197+
make install && \
198+
199+
### ImageMagic ###
200+
echo "--- Get ImageMagic 6 and build it ------------------------------------------" && \
165201
IMAGEMAGICK_VER=$(curl --silent http://www.imagemagick.org/download/digest.rdf \
166202
| grep ImageMagick-6.*tar.xz | sed 's/\(.*\).tar.*/\1/' | sed 's/^.*ImageMagick-/ImageMagick-/') && \
167203

@@ -200,7 +236,10 @@ RUN \
200236

201237
# install ImageMagic
202238
make install && \
203-
find / -name '.packlist' -o -name 'perllocal.pod' -o -name '*.bs' -delete
239+
find / -name '.packlist' -o -name 'perllocal.pod' -o -name '*.bs' -delete && \
240+
241+
# cleanup temporary files
242+
rm -rf /tmp/*
204243

205244
# Install calibre binary
206245
# enhancement from jim3ma/docker-calibre-web

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,12 @@ And if you are interested in the original __Calibre__ ebook management tool then
3838

3939
## Updates ##
4040

41+
**2019-02-24 - v1.3.1**
42+
43+
* integrated a self compiled version of Ghostscript 9.26 with actual patches from
44+
https://github.com/alpinelinux/aports/tree/8e262865b06f0d565f7c1ed0b4d8f43bf18b0d68/main/ghostscript
45+
* should fix the issue [#789 Uploading PDF results in Calibre Web restarting [Docker]](https://github.com/janeczku/calibre-web/issues/789)
46+
4147
**2019-02-17 - v1.3.0**
4248

4349
* new base image [technosoft2000/alpine-base:3.9-1](https://hub.docker.com/r/technosoft2000/alpine-base/) based on Alpine 3.9
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
https://bugs.ghostscript.com/show_bug.cgi?id=700315
2+
http://git.ghostscript.com/?p=ghostpdl.git;a=commitdiff;h=fae21f1668d2b44b18b84cf0923a1d5f3008a696
3+
4+
subclassing devices - fix put_image method:
5+
6+
The subclassing devices need to change the 'memory device' parameter to
7+
be the child device, when its the same as the subclassing device.
8+
9+
Otherwise we end up trying to access the child device's memory pointers
10+
in the subclassing device, which may not contain valid copies of
11+
those pointers.
12+
-----------------------
13+
--- a/base/gdevsclass.c
14+
+++ b/base/gdevsclass.c
15+
@@ -797,7 +797,10 @@ int default_subclass_put_image(gx_device *dev, gx_device *mdev, const byte **buf
16+
int alpha_plane_index, int tag_plane_index)
17+
{
18+
if (dev->child)
19+
- return dev_proc(dev->child, put_image)(dev->child, mdev, buffers, num_chan, x, y, width, height, row_stride, alpha_plane_index, tag_plane_index);
20+
+ if (dev == mdev)
21+
+ return dev_proc(dev->child, put_image)(dev->child, dev->child, buffers, num_chan, x, y, width, height, row_stride, alpha_plane_index, tag_plane_index);
22+
+ else
23+
+ return dev_proc(dev->child, put_image)(dev->child, mdev, buffers, num_chan, x, y, width, height, row_stride, alpha_plane_index, tag_plane_index);
24+
25+
return 0;
26+
}

ghostscript/fix-sprintf.patch

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
diff --git a/cups/gdevcups.c b/cups/gdevcups.c
2+
index c00e758..35b4035 100644
3+
--- a/cups/gdevcups.c
4+
+++ b/cups/gdevcups.c
5+
@@ -4353,10 +4353,10 @@ cups_set_color_info(gx_device *pdev) /* I - Device info */
6+
*/
7+
8+
if (pdev->HWResolution[0] != pdev->HWResolution[1])
9+
- sprintf(resolution, "%.0fx%.0fdpi", pdev->HWResolution[0],
10+
+ snprintf(resolution, sizeof(resolution), "%.0fx%.0fdpi", pdev->HWResolution[0],
11+
pdev->HWResolution[1]);
12+
else
13+
- sprintf(resolution, "%.0fdpi", pdev->HWResolution[0]);
14+
+ snprintf(resolution, sizeof(resolution), "%.0fdpi", pdev->HWResolution[0]);
15+
16+
for (i = 0, profile = cups->PPD->profiles;
17+
i < cups->PPD->num_profiles;

ghostscript/fix-stdio.patch

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
--- stdio_.h
2+
+++ stdio_.h.patched
3+
@@ -84,9 +84,9 @@
4+
/* only *really* required for floating point conversions */
5+
#include "gssprintf.h"
6+
7+
-#ifndef sprintf
8+
-#define sprintf DO_NOT_USE_SPRINTF
9+
-#endif
10+
+//#ifndef sprintf
11+
+//#define sprintf DO_NOT_USE_SPRINTF
12+
+//#endif
13+
14+
15+
#ifndef fopen
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
--- a/base/lib.mak
2+
+++ b/base/lib.mak
3+
@@ -617,7 +617,9 @@ srlx_h=$(GLSRC)srlx.h
4+
sstring_h=$(GLSRC)sstring.h
5+
strimpl_h=$(GLSRC)strimpl.h $(scommon_h) $(gstypes_h) $(gsstruct_h)
6+
szlibx_h=$(GLSRC)szlibx.h
7+
+ifneq ($(SHARE_ZLIB),1)
8+
zlib_h=$(ZSRCDIR)$(D)zlib.h
9+
+endif
10+
# We have two of the following, for shared zlib (_1)
11+
# and 'local' zlib (_0)
12+
szlibxx_h_1=$(GLSRC)szlibxx.h $(szlibx_h)

0 commit comments

Comments
 (0)