summaryrefslogtreecommitdiff
path: root/parallel/glunix/scripts/pre-fetch
diff options
context:
space:
mode:
Diffstat (limited to 'parallel/glunix/scripts/pre-fetch')
-rwxr-xr-xparallel/glunix/scripts/pre-fetch30
1 files changed, 30 insertions, 0 deletions
diff --git a/parallel/glunix/scripts/pre-fetch b/parallel/glunix/scripts/pre-fetch
new file mode 100755
index 00000000000..d422e428767
--- /dev/null
+++ b/parallel/glunix/scripts/pre-fetch
@@ -0,0 +1,30 @@
+#!/bin/sh
+if [ -f $DISTDIR/glunix-release-1-0a.tar.gz ]; then
+ exit 0
+fi
+
+echo ""
+echo "The authors of glunix would like to keep track of"
+echo "who thier user community is. They promise that the"
+echo "information obtained will not be used for marketing"
+echo "of any kind."
+echo ""
+echo -n "Please enter your Name: "
+
+read dname
+if [ "$dname" = "" ]; then
+ echo "Please run make again, and enter your name."
+ exit 1
+fi
+echo -n "Please enter your email address: "
+read email
+if [ "$email" = "" ]; then
+ echo "Please run make again, and enter your email."
+ exit 1
+fi
+
+name=`echo $dname | sed 's/ /+/'`
+nmail=`echo $email | sed 's/ /+/'`
+
+ftp "http://now.cs.berkeley.edu/cgi-bin/glunix_download.pl?name=$name&email=$nmail&use=NetBSD+pkg+system+download."
+$RM "glunix_download.pl?name=$name&email=$email&use=NetBSD+pkg+system+download."