diff options
author | B Stack <bgstack15@gmail.com> | 2019-06-16 19:08:29 -0400 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2019-06-16 19:08:29 -0400 |
commit | b7690d916e5f6c39db4aa1d57f712f9df11112a4 (patch) | |
tree | cd5d27a900f0d3399745c246668a7092eae8deab /irfanview/irfanview32 | |
parent | irfanview 4.53-2: fix #7 invocation problem for rpm (diff) | |
download | stackrpms-b7690d916e5f6c39db4aa1d57f712f9df11112a4.tar.gz stackrpms-b7690d916e5f6c39db4aa1d57f712f9df11112a4.tar.bz2 stackrpms-b7690d916e5f6c39db4aa1d57f712f9df11112a4.zip |
irfanview 4.53-2 dpkg rc1
Split the calling script like the rpm.
Still need to fix the icon png generation. I suspect the svg just
needs to be rebuilt.
Diffstat (limited to 'irfanview/irfanview32')
-rwxr-xr-x | irfanview/irfanview32 | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/irfanview/irfanview32 b/irfanview/irfanview32 index 7c8218d..15aef14 100755 --- a/irfanview/irfanview32 +++ b/irfanview/irfanview32 @@ -3,13 +3,12 @@ # Locations: symlink /usr/bin/irfanview # Author: bgstack15@gmail.com # Startdate: 2016-01-29 -# Title: Wrapper script for passing files to Irfanview -# Purpose: Converts file paths to a wine format and also handles compressed files +# Title: Wrapper script for passing files to Irfanview # Purpose: Converts file paths to a wine format and also handles compressed files # History: 2016-01-29 Initial quick script written. It used a bunch of sed commands to transform paths to a wine format. # 2019-02-26 remove /etc/default/irfanview file # 2019-06-01 fix invocation for single item with space in name. Cannot call multiple objcts with spaces in filename. # 2019-06-16 remove DEVTTY in favor of just showing on current tty -# 2019-06-16 replace winepath call with wine $WINEPATH_BIN +# 2019-06-16 replace winepath call with wine winepath.exe # 2019-06-16 split into package-arch-specific and common scripts # Usage: irfanview /path/to/image /another/image/file # Reference: @@ -21,7 +20,6 @@ test -z "${IV_WINEPREFIX}" && export IV_WINEPREFIX="$HOME/.wine" test -n "${IV_WINEPREFIX}" && export WINEPREFIX="${IV_WINEPREFIX}" || export WINEPREFIX=$HOME/.wine test -z "${IV_EXEC_NAME}" && export IV_EXEC_NAME="i_view32.exe" test -z "${IV_EXEC_PATH}" && export IV_EXEC_PATH="/usr/share/irfanview32/i_view32.exe" -test -z "${IV_WINEPATH_BIN}" && export IV_WINEPATH_BIN="/usr/lib/wine/fakedlls/winepath.exe" export IV_VALID_CALL=do_not_set_this_manually . irfanview-common "$@" |