mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
520b21cc72
A CD-ROM dictionary lookup facility (server and clients). Submitted by: Yoshio MITA <mita@jp.freebsd.org> (Closing PR #2311.)
35 lines
1.1 KiB
Bash
35 lines
1.1 KiB
Bash
#!/bin/sh
|
|
# dserver configuration shell script
|
|
# usage: /bin/sh configure
|
|
|
|
if [ X"${BATCH}" != X"yes" ] ; then
|
|
/usr/bin/dialog --title "dserver port configuration" --radiolist \
|
|
"How do you want to run dserver, standalone or run by inetd?" -1 -1 2 \
|
|
"standalone" "standalone" ON \
|
|
"inetd" "inetd" OFF 2>/tmp/dserver.ports.selection
|
|
|
|
if [ X`cat /tmp/dserver.ports.selection` = "Xinetd" ]
|
|
then
|
|
echo 'Inetd mode is selected'
|
|
cp ${FILESDIR}/setup.sh.inetd ${WRKSRC}/setup.sh.template
|
|
cp ${FILESDIR}/deinstall.sh.inetd ${WRKSRC}/deinstall.sh.template
|
|
cp ${WRKSRC}/server2.2-pl2/Makefile ${WRKSRC}/server2.2-pl2/Makefile.tmp
|
|
cat ${WRKSRC}/server2.2-pl2/Makefile.tmp | sed -e "s/-DSTANDALONE//g" \
|
|
> ${WRKSRC}/server2.2-pl2/Makefile
|
|
else
|
|
echo 'Standalone mode is selected'
|
|
cp ${FILESDIR}/setup.sh.standalone ${WRKSRC}/setup.sh.template
|
|
cp ${FILESDIR}/deinstall.sh.standalone ${WRKSRC}/deinstall.sh.template
|
|
|
|
fi
|
|
|
|
rm -f /tmp/dserver.ports.selection
|
|
|
|
else
|
|
|
|
echo 'Standalone mode (default) is selected'
|
|
cp ${FILESDIR}/setup.sh.standalone ${WRKSRC}/setup.sh.template
|
|
cp ${FILESDIR}/deinstall.sh.standalone ${WRKSRC}/deinstall.sh.template
|
|
|
|
fi
|