mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
This reverts commit c7292eb0fa
per
maintainer request. Re-do distinfo with timestamp so it can be
committed.
PR: 277665
13 lines
280 B
Bash
13 lines
280 B
Bash
#!/bin/sh
|
|
|
|
PATH_TO_WISH='%%WISH%%'
|
|
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
|