Sisyphus repositório
Última atualização: 1 outubro 2023 | SRPMs: 18631 | Visitas: 37426744
en ru br
ALT Linux repositórios
S:1.3.0-alt3.rc1
5.0: 1.3.0-alt2.rc1
4.1: 1.3.0-alt1.rc1

Group :: Gráficos
RPM: aview

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs e FR  Repocop 

Patch: 02_tmp_creation.patch
Download


diff -Nur -x '*.orig' -x '*~' aview-1.3.0rc1/asciiview aview-1.3.0rc1.new/asciiview
--- aview-1.3.0rc1/asciiview	2008-09-01 12:33:29.000000000 +0200
+++ aview-1.3.0rc1.new/asciiview	2008-09-01 12:33:36.000000000 +0200
@@ -3,11 +3,11 @@
 clear()
 {
   kill $! 2>/dev/null
-  rm -f /tmp/aview$$.pgm 2>/dev/null
+  rm -rf $tmpdir 2>/dev/null
 }
 myconvert()
 {
-   if anytopnm "$1" >/tmp/aview$$.pgm 2>/dev/null ; then
+   if anytopnm "$1" >"$2" 2>/dev/null ; then
      exit
    elif convert -colorspace gray "$1" pgm:- 2>/dev/null ; then
      exit
@@ -53,8 +53,9 @@
   esac
 done
 trap clear 0
-mkfifo /tmp/aview$$.pgm
-outfile=/tmp/aview$$.pgm
+tmpdir=`mktemp -t -d`
+outfile=$tmpdir/aview.pgm
+mkfifo $outfile
 while [ $counter -gt 0 ]; do
 counter=$(($counter-1))
 name=${filenames[$counter]}
@@ -65,10 +66,10 @@
   aaflip $options "$name"
   ;;
 *)
-  myconvert "$name" >/tmp/aview$$.pgm &
+  myconvert "$name" "$outfile" >"$outfile" &
   pid=$!
   PATH="$PATH:."
-  aview  $options /tmp/aview$$.pgm
+  aview  $options $outfile
   kill $pid 2>/dev/null
 esac
 else
 
projeto & código: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
mantenedor atual: Michael Shigorin
mantenedor da tradução: Fernando Martini aka fmartini © 2009