mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
15 lines
528 B
Bash
15 lines
528 B
Bash
#!/bin/sh
|
|
|
|
# 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
|