mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 18:16:48 -04:00
latest. Support staging in nip2. Add self-test target to nip2. Although the software is built against GraphicsMagick, some of the tests require ImageMagick's convert and therefor the tests are not (yet) labeled "regression-test". The author is working on the fix.
10 lines
153 B
Bash
10 lines
153 B
Bash
#!/bin/sh
|
|
if [ -z "$VIPSHOME" ]
|
|
then
|
|
export VIPSHOME=%%PREFIX%%
|
|
fi
|
|
if [ -z "$GDK_USE_XFT" ]
|
|
then
|
|
export GDK_USE_XFT=1
|
|
fi
|
|
exec %%PREFIX%%/bin/nip2 "$@"
|