mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
7f6b3f6fa1
from PR Description: Wingz is an easy-to-use, graphical spreadsheet for business and technical professionals, that allows users to create sophisticated presentations and reports, as well as user interfaces and end-user applications. PR: ports/18794 Submitted by: Mikhail Teterin <mi@aldan.algebra.com>
17 lines
444 B
Bash
17 lines
444 B
Bash
#!/bin/sh
|
|
|
|
# The following combines the effects of ${WINGZ3}/bin/WingzPro
|
|
# and the ${WINGZ3}/bin/wzenv (yes, it does set the LD_RUN_PATH,
|
|
# while exporting the SHLIB_PATH).
|
|
WINGZ3=_X11BASE_/Wingz3
|
|
WZUSER="IISC"
|
|
WZCOMPANY="IISC"
|
|
WZPLATFORM=LINUX
|
|
LD_RUN_PATH=$WINGZ3/lib/$WZPLATFORM:$LD_RUN_PATH
|
|
WZBSDECHO=TRUE
|
|
|
|
export WINGZ3 WZCOMPANY WZUSER WZPLATFORM SHLIB_PATH WZBSDECHO
|
|
|
|
# Invoke the binary directly:
|
|
exec ${WINGZ3}/bin/LINUX/WingzPro "$@"
|