1994-09-23 20:25:10 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
|
|
|
|
hostname=`hostname`
|
|
|
|
echo -n "Hostname of server machine? [$hostname] "
|
|
|
|
read answer; if [ X$answer != X ]; then hostname=$answer; fi
|
1995-05-04 23:32:04 +00:00
|
|
|
maintainer="mailto:webmaster@$hostname"
|
|
|
|
echo -n "URL to default webmaster? [$maintainer] "
|
1994-09-23 20:25:10 +00:00
|
|
|
read answer; if [ X$answer != X ]; then maintainer=$answer; fi
|
|
|
|
sed -e "/GN_HOSTNAME/s/\".*\"/\"$hostname\"/" \
|
|
|
|
-e "/MAINTAINER/s/\".*\"/\"$maintainer\"/" \
|
1994-10-04 15:12:57 +00:00
|
|
|
${WRKSRC}/config.h >${WRKSRC}/config.h.foo
|
|
|
|
mv ${WRKSRC}/config.h.foo ${WRKSRC}/config.h
|