summaryrefslogtreecommitdiff
path: root/www/gn/scripts/configure
diff options
context:
space:
mode:
Diffstat (limited to 'www/gn/scripts/configure')
-rw-r--r--www/gn/scripts/configure13
1 files changed, 0 insertions, 13 deletions
diff --git a/www/gn/scripts/configure b/www/gn/scripts/configure
deleted file mode 100644
index b811928e6289..000000000000
--- a/www/gn/scripts/configure
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/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