mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
10 lines
253 B
Plaintext
10 lines
253 B
Plaintext
|
#!/bin/sh
|
||
|
[ "x$1" = "x" ] && exit 1
|
||
|
if [ "x$2" = "xPOST-INSTALL" -a -n "$KO_NETSCAPE_INSTALL_CFG" ]; then
|
||
|
CFGLOC=/usr/lib/X11/@LANG@/app-defaults
|
||
|
if [ ! -e $CFGLOC/netscape.cfg ]; then
|
||
|
mkdir -p $CFGLOC
|
||
|
cp @NDIR@/@LANG@/netscape.cfg $CFGLOC
|
||
|
fi
|
||
|
fi
|