the Debian maintainer who is in contact with upstream, which
appearantly is still somewhat alive (but not alive enough to put the
tarbal on the homepage ??)
7 lines
107 B
Bash
7 lines
107 B
Bash
#!/bin/bash
|
|
|
|
if [ -x /usr/bin/xfig-Xaw3d ]; then
|
|
exec xfig-Xaw3d "$@"
|
|
else
|
|
exec xfig-plain "$@"
|
|
fi
|