source: gs2-extensions/xpdf-tools/trunk/src/packages/CASCADE-MAKE.sh@ 32230

Last change on this file since 32230 was 32228, checked in by ak19, 6 years ago

Tried to compile xpdf-tools up statically with CMake, but still not successful. For now committing modifications necessary (including the new additional packages) for compiling xpdf-tools agains dynamically linked libs of libpng and zlib and freetype. Although these 3 packages have been introduced and are successfully compiled up (and I can even get the CMake configure stage of xpdf-tools to 'see' them), the xpdftools binaries upon successful compilation are shown by ldd to still refer to system versions of zlib, libpng and freetype. Some modifications to a single file in the xpdftools src package were necessary to get things to compile again with these changes, so recommitting the xpdftools src package with modications using the usual gs- prefix and a readme.

  • Property svn:executable set to *
File size: 323 bytes
Line 
1#!/bin/bash
2
3source ../cascade-make/lib/cascade-lib.bash GEXT_XPDFTOOLS .. $*
4
5PACKAGES="CMAKE LIBZ LIBPNG FREETYPE XPDFTOOLS"
6
7for d in $PACKAGES ; do
8 echo " Running CASCADE-MAKE/$d.sh"
9
10 ./CASCADE-MAKE/$d.sh $*
11
12 if [ $? != 0 ] ; then
13 echo "Error encountered running CASCADE-MAKE/$d.sh"
14 exit 1
15 fi
16done
Note: See TracBrowser for help on using the repository browser.