1d149b2708
This also removes libviqr and the Xfonts from this package as they are now seperate ports.
17 lines
541 B
Bash
17 lines
541 B
Bash
#!/bin/sh
|
|
|
|
# $FreeBSD$
|
|
|
|
# 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
|