aboutsummaryrefslogtreecommitdiff
path: root/mail/elm+ME/scripts
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1995-11-19 21:11:57 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1995-11-19 21:11:57 +0000
commite04697b2957113533192389d990a6e1a5d9508e9 (patch)
treecedfd486e09534ad9544e31152a3f5aadc2e8011 /mail/elm+ME/scripts
parentd36d2410ee48556d13cadd7098785661099f6855 (diff)
downloadports-e04697b2957113533192389d990a6e1a5d9508e9.tar.gz
ports-e04697b2957113533192389d990a6e1a5d9508e9.zip
Notes
Diffstat (limited to 'mail/elm+ME/scripts')
-rw-r--r--mail/elm+ME/scripts/pre-configure43
1 files changed, 8 insertions, 35 deletions
diff --git a/mail/elm+ME/scripts/pre-configure b/mail/elm+ME/scripts/pre-configure
index b17d53a26de3..947faf745529 100644
--- a/mail/elm+ME/scripts/pre-configure
+++ b/mail/elm+ME/scripts/pre-configure
@@ -1,41 +1,12 @@
#!/bin/sh -
#
# pre-configure script for Elm port to FreeBSD 2.0
-# $Id: pre-configure,v 1.4 1995/09/23 21:06:06 ache Exp $
+# $Id: pre-configure,v 1.3 1995/09/28 16:41:56 ache Exp $
PortsDir=$PORTSDIR
CurDir=$CURDIR
WrkSrc=$WRKSRC
-echo ""
-echo "Elm comes with a Configure script to help you setting things up."
-echo "Unfortunately, this script asks for things (like locking style)"
-echo "which can be misleading."
-echo "I (the porter) tried and configure a general Elm (without MIME"
-echo "support), hopefully suitable for most systems."
-echo "Please note that if you will run Elm on a system with NFSmounted"
-echo "mailboxes you need to enable dot locking (see below)".
-echo ""
-
-echo ""
-echo "You now have two possible choices:"
-echo ""
-echo " 1) use my configuration as default, run Configure on top of it."
-echo " 2) run Configure from scratch."
-echo ""
-echo "Due to a check done iside the Elm Configure script, I cannot run"
-echo "it automagically. If you want to pick up the default configura-"
-echo "tion, simply press ENTER each time the script asks you anything."
-echo ""
-echo -n "Your choice [1]: "
-read foo
-
-if [ ! ${foo} ] ; then
- foo=1
-fi
-
-if [ ${foo} -eq 1 ] ; then
- #DON'T ALTER INDENTATION
cat > ${WrkSrc}/config.sh << 'EOF'
#!/bin/sh
# config.sh
@@ -102,6 +73,7 @@ cpp
date
emacs
execmail
+finger
ispell
line
lint
@@ -213,8 +185,9 @@ d_usenls='undef'
d_mallocvoid='define'
d_mboxedit='undef'
d_mime='undef'
-defencoding='7bit'
+defencoding=''
d_8bitmime='undef'
+d_binarymime='undef'
defcharset='US-ASCII'
defdispcharset='US-ASCII'
d_mmdf='undef'
@@ -274,7 +247,7 @@ i_unistd='define'
i_utime='define'
i_sysutime='undef'
lib='/usr/local/lib'
-libc='/usr/lib/libc.so.2.1'
+libc='/usr/lib/libc.so.2.2'
linepr='/usr/bin/lp'
maildir='/var/mail'
mailer='/usr/sbin/sendmail'
@@ -325,13 +298,13 @@ d_pgp='define'
pgp='/usr/local/bin/pgp'
pgp_path='/usr/local/bin/pgp'
d_remailer='define'
+finger='/usr/bin/finger'
+finger_path='/usr/bin/finger'
CONFIG=true
EOF
-fi # choice = 1
-
cd ${WrkSrc}
-sh Configure
+yes "" | ./Configure
cd ${CurDir}
exit 0