#!/bin/bash # only going to make xpdf-tools, not xpdf-reader. So not making all of xpdf package=gs-xpdf version=-4.00 progname=$0 source ../cascade-make/lib/cascade-lib.bash GEXT_XPDFTOOLS ../.. $* # GEXT XDFTOOLS INSTALLED location is this GEXT's GSDLOS subdir prefix=$GEXTXPDFTOOLS_INSTALLED # Use C/CPP/CXX FLAGS and LDFLAGS for setting up # libpng and libz for compiling xpdftools export CFLAGS="$CFLAGS -I$GEXTXPDFTOOLS_INSTALLED/include -I$GEXTXPDFTOOLS_INSTALLED/include/libpng15" export CPPFLAGS="$CPPFLAGS -I$GEXTXPDFTOOLS_INSTALLED/include -I$GEXTXPDFTOOLS_INSTALLED/include/libpng15" export CXXFLAGS="$CXXFLAGS -I$GEXTXPDFTOOLS_INSTALLED/include -I$GEXTXPDFTOOLS_INSTALLED/include/libpng15" export LDFLAGS="$LDFLAGS -L$GEXTXPDFTOOLS_INSTALLED/lib" #echo GSDLOS = $GSDLOS opt_run_untar $force_untar $auto_untar $package $version # Whether force_config is set for this package depends on CMake test # to see if 'release' directory has been created or not if [ $auto_config = "1" ] ; then if [ ! -d $package$version/release ] ; then force_config=1 fi fi echo "Using cmake: " echo `which cmake` ##exit 0 # IGNORE: See xpdf-tools src' INSTALL instructions: need to create a 'build' dir # cd there and then run cmake from there, providing the xpdf-tools src dir # ACTUALLY: doing the above breaks the way cascade-lib.bash does it. It wants # a 'release' directory, so do it the cascade-make way as that works. # TO AVOID building xpdf(reader), turn off finding Qt libs with the cmake flags below if [ $force_config = "1" ] ; then echo "[pushd $package$version]" ( cd $package$version ; \ if [ ! -d release ] ; then \ echo "Creating 'release' directory" ; \ mkdir release ; \ fi ; \ cd release ; \ if [ ! -f Makefile ] ; then \ #cmake -D CMAKE_BUILD_TYPE=RELEASE \ # -D CMAKE_INSTALL_PREFIX=$prefix ..; cmake -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=$prefix \ -DZLIB_LIBRARY=$prefix/lib/libz.a \ -DPNG_LIBRARY=$prefix/lib/libpng15.a \ -DFREETYPE_LIBRARY=$prefix/lib/libfreetype.a \ -DCMAKE_DISABLE_FIND_PACKAGE_Qt4=1 \ -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Widgets=1 \ -DCMAKE_C_FLAGS="$CFLAGS" \ -DCMAKE_CXX_FLAGS="$CXXFLAGS" \ -DCMAKE_EXE_LINKER_FLAGS="$LDFLAGS" \ -DPNG_LINK_FLAGS="-lpng15" \ $GEXT_XPDFTOOLS/packages/$package$version fi ; \ PKG_CONFIG_PATH=$prefix/lib/pkgconfig:${PKG_CONFIG_PATH}; \ export PKG_CONFIG_PATH; \ ) if [ $? != 0 ] ; then echo " Error encountered running *configure* stage of $progname" exit 1 fi echo "[popd]" opt_run_cmake $compile $package $version "release" opt_run_cmake $install $package $version "release" "install" else if [ $auto_config = "1" ] ; then echo "Found top-level for ${progname%.*} => no need to run configure/initialize CMake" fi fi ## The -DFREETYPE_DIR to be used in place of -DFREETYPE_LIBRARY above ## this will help it find the "libfreetype.so" (no versioning at end) in our gs ext ## But -DZLIB_DIR and -DPNG_DIR are ignored and unrecognised, whereas ## -DZLIB_LIBRARY and -DPNG_LIBRARY are recognised & supposedly used when compiling ## but weren't really used as seen when running ldd on the xpdf-tools binaries: # -DZLIB_DIR=$prefix \ # -DPNG_DIR=$prefix \ # -DFREETYPE_DIR=$prefix \ ## When specified this way, all 3 lines are recognised (freetype, zlib, png) ## but weren't really used as seen when running ldd on the xpdf-tools binaries: # -DZLIB_LIBRARY=$prefix/lib/libz.so.1.2.7 \ # -DPNG_LIBRARY=$prefix/lib/libpng15.so.15.30.0 \ # -DFREETYPE_LIBRARY=$prefix/lib/libfreetype.so.6.3.20 \ # If compilation was successful, then we don't need cmake binaries anymore when # packaging up xpdf-tools