mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
325f8178dd
A powerful GUI PostgreSQL database administration tool and toolkit PR: ports/46705 Submitted by: Palle Girgensohn <girgen@pingpong.net>
14 lines
309 B
Bash
14 lines
309 B
Bash
#!/bin/sh
|
|
|
|
PATH_TO_WISH='%%LOCALBASE%%/bin/wish%%TCL_VERSION%%'
|
|
PGACCESS_HOME='%%PREFIX%%/share/postgresql/pgaccess'
|
|
PGLIB='%%LOCALBASE%%/lib'
|
|
PGPORT="${PGPORT:-5432}"
|
|
|
|
export PATH_TO_WISH
|
|
export PGACCESS_HOME
|
|
export PGLIB
|
|
export PGPORT
|
|
|
|
exec "${PATH_TO_WISH}" "${PGACCESS_HOME}/%%PROGRAM%%" "$@" > /dev/null
|