mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
15 lines
531 B
Plaintext
15 lines
531 B
Plaintext
|
#!/bin/sh -x
|
||
|
|
||
|
# set up the resource file
|
||
|
# nothing yet...
|
||
|
|
||
|
# setup helper script
|
||
|
echo "creating VNterm script for inexperienced users"
|
||
|
VNTERM_SH=${WRKDIR}/VNterm.sh
|
||
|
|
||
|
echo "#!/bin/sh" > $VNTERM_SH
|
||
|
echo "" >> $VNTERM_SH
|
||
|
echo "XFONTDIR=${PREFIX}/lib/X11/fonts/vietnamese" >> $VNTERM_SH
|
||
|
echo "" >> $VNTERM_SH
|
||
|
/bin/cat ${FILESDIR}/VNterm.sh.in >> $VNTERM_SH
|