summaryrefslogtreecommitdiff
path: root/www/gn/scripts/configure
blob: b811928e6289831a4b758e4c9bb335972212f9ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
#

hostname=`hostname`
echo -n "Hostname of server machine? [$hostname] "
read answer; if [ X$answer != X ]; then hostname=$answer; fi
maintainer="mailto:webmaster@$hostname"
echo -n "URL to default webmaster? [$maintainer] "
read answer; if [ X$answer != X ]; then maintainer=$answer; fi
sed -e "/GN_HOSTNAME/s/\".*\"/\"$hostname\"/" \
    -e "/MAINTAINER/s/\".*\"/\"$maintainer\"/" \
    ${WRKSRC}/config.h >${WRKSRC}/config.h.foo
mv ${WRKSRC}/config.h.foo ${WRKSRC}/config.h