removed libpng-1.4 option added patch to prevent chalk/krita crashing when loading PNGs it has savedmaster
parent
d6d0cad778
commit
142b4e3d0f
@ -1,7 +1,14 @@
|
||||
libpng14 is an optional build requirement for koffice.
|
||||
Chalk/krita will crash trying to load PNGs it saved if it is built with libpng-1.6.
|
||||
|
||||
The source will be downloaded if selected with the koffice build, and on-line.
|
||||
The patch included with the SlackBuild is a workaround until koffice issue 20 has been fixed.
|
||||
|
||||
Otherwise, download to the 'src' directory:
|
||||
https://downloads.sourceforge.net/project/libpng/libpng14/1.4.22/libpng-1.4.22.tar.xz
|
||||
If it is necessary to convert the image to the RGB working space, there are a number of profiles installed with {chalk,krita} in <TDE-installation-directory>/share/apps/{chalk,krita}/profiles/ which can be installed with Imagemagick's 'convert', or GraphicsMagick's 'gm convert'
|
||||
|
||||
Example:
|
||||
"""""""
|
||||
in=<path-to>/original.png
|
||||
out=<path-to>/converted.png
|
||||
profile=<TDE-installation-directory>/share/apps/{chalk,krita}/profiles/srgb_color_space_profile.icm
|
||||
convert='gm convert'
|
||||
($convert $in -profile $profile $out)
|
||||
|
||||
|
@ -1,90 +0,0 @@
|
||||
#!/bin/sh
|
||||
# Copyright 2015-2017 tde-slackbuilds project on GitHub
|
||||
# All rights reserved.
|
||||
#
|
||||
# Permission to use, copy, modify, and distribute this software for
|
||||
# any purpose with or without fee is hereby granted, provided that
|
||||
# the above copyright notice and this permission notice appear in all
|
||||
# copies.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
|
||||
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
# IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
|
||||
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
||||
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
||||
# OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
# SUCH DAMAGE.
|
||||
|
||||
PRGNAM=libpng
|
||||
VERSION=1.4.22
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-}
|
||||
|
||||
ARCHIVE_TYPE="tar.xz"
|
||||
SRCURL="https://downloads.sourceforge.net/project/libpng/libpng14/$VERSION/libpng-$VERSION.$ARCHIVE_TYPE"
|
||||
|
||||
source ../../get-source.sh
|
||||
getsource_fn
|
||||
|
||||
untar_fn
|
||||
|
||||
## exit the build here as only the headers are required for the koffice [chalk/krita] build
|
||||
## but retain this script in case libpng14 is dropped from aaa_libraries in future
|
||||
## and libpng14.so.14.22.0 needs to be built.
|
||||
## Set a dummy package to remain compatible with the build system
|
||||
touch $LIBPNG_TMP/libpng-1.4.22-x86_64-${BUILD:-1}.txz
|
||||
exit
|
||||
|
||||
listdocs_fn
|
||||
|
||||
chown_fn
|
||||
|
||||
cd_builddir_fn
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CC=$COMPILER \
|
||||
../configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib$LIBDIRSUFFIX \
|
||||
--includedir=/usr/include \
|
||||
--mandir=/usr/man \
|
||||
--disable-static
|
||||
|
||||
make_fn
|
||||
|
||||
installdocs_fn
|
||||
|
||||
INSTALL_TDE=/usr
|
||||
mangzip_fn
|
||||
|
||||
strip_fn
|
||||
|
||||
mkdir_install_fn
|
||||
|
||||
echo "
|
||||
# HOW TO EDIT THIS FILE:
|
||||
# The 'handy ruler' below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
$PRGNAM: libpng (Portable Network Graphics library)
|
||||
$PRGNAM:
|
||||
$PRGNAM: PNG (Portable Network Graphics) is an extensible file format for the
|
||||
$PRGNAM: lossless, portable, well-compressed storage of raster images. PNG
|
||||
$PRGNAM: provides a patent-free replacement for GIF and can also replace many
|
||||
$PRGNAM: common uses of TIFF. Indexed-color, grayscale, and truecolor images
|
||||
$PRGNAM: are supported, plus an optional alpha channel. Sample depths range
|
||||
$PRGNAM: from 1 to 16 bits.
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
" > $PKG/install/slack-desc
|
||||
|
||||
makepkg_fn
|
Loading…
Reference in new issue