From: Stephan Witt Date: Fri, 16 Dec 2022 15:10:34 +0000 (+0100) Subject: Add missing parts for the creation of the resolution independent multi-image TIFF... X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=12e22708aabf706451b8435c501190dc35ca30e3;p=features.git Add missing parts for the creation of the resolution independent multi-image TIFF as disk image background. --- diff --git a/development/LyX-Mac-binary-release.sh b/development/LyX-Mac-binary-release.sh index d2503ec341..f2683fec44 100644 --- a/development/LyX-Mac-binary-release.sh +++ b/development/LyX-Mac-binary-release.sh @@ -1012,15 +1012,18 @@ EOF # The image was made with with inkscape and tiffutil from dmg-background.svgz make_image() { INKSCAPE=/Applications/Inkscape.app/Contents/MacOS/inkscape - cd "${LyxSourceDir}"/development/MacOSX - ${INKSCAPE} --export-type=png -w 560 -o dmg-background.png dmg-background.svgz - ${INKSCAPE} --export-type=png -w 1120 -o dmg-background@2x.png dmg-background.svgz - tiffutil -cathidpicheck dmg-background.png dmg-background@2x.png -out dmg-background.tiff + ( + cd "${LyxSourceDir}"/development/MacOSX + test -x ${INKSCAPE} && ${INKSCAPE} --export-type=png -w 560 -o dmg-background.png dmg-background.svgz + test -x ${INKSCAPE} && ${INKSCAPE} --export-type=png -w 1120 -o dmg-background@2x.png dmg-background.svgz + tiffutil -cathidpicheck dmg-background.png dmg-background@2x.png -out dmg-background.tiff + ) } make_dmg() { cd "${1}" + test -f "${DmgBackground}" || make_image BGSIZE=$(file "$DmgBackground" | awk -F , '/TIFF/{ print $10 $4 ;}/PNG/{ print $2; }'|sed -e 's/width=//' -e 's/height=//' -e 's/x//') BG_W=$(echo ${BGSIZE} | awk '{print $1 }') BG_H=$(echo ${BGSIZE} | awk '{print $2 }') diff --git a/development/MacOSX/Makefile.am b/development/MacOSX/Makefile.am index 2dfb970ada..ba8b29f51b 100644 --- a/development/MacOSX/Makefile.am +++ b/development/MacOSX/Makefile.am @@ -10,7 +10,7 @@ nodist_bundle_DATA = Info.plist dist_bin_SCRIPTS = lyxeditor maxima inkscape lilypond lilypond-book -dist_pkgdata_DATA = COPYING LyXapp.icns LyX.icns LyX.sdef dmg-background.png +dist_pkgdata_DATA = COPYING LyXapp.icns LyX.icns LyX.sdef dmg-background.png dmg-background@2x.png dmg-background.svgz nodist_pkgdata_DATA = lyxrc.dist