summaryrefslogtreecommitdiff
path: root/astro
diff options
context:
space:
mode:
authorChuck Robey <chuckr@FreeBSD.org>1996-08-03 22:42:46 +0000
committerChuck Robey <chuckr@FreeBSD.org>1996-08-03 22:42:46 +0000
commite23704de4f9f021d281f06cd45d537c8744c6aca (patch)
tree3d92d2b396d6168962b314a3e3f3735ec93ccf32 /astro
parentChange arguments to gzip, should have been -9nf. (diff)
New port for x11, stars. Could make you dizzy!
Submitted by: Michael Searle
Notes
Notes: svn path=/head/; revision=3514
Diffstat (limited to 'astro')
-rw-r--r--astro/stars/Makefile28
-rw-r--r--astro/stars/distinfo1
-rw-r--r--astro/stars/files/patch-aa48
-rw-r--r--astro/stars/pkg-comment1
-rw-r--r--astro/stars/pkg-descr10
-rw-r--r--astro/stars/pkg-plist2
6 files changed, 90 insertions, 0 deletions
diff --git a/astro/stars/Makefile b/astro/stars/Makefile
new file mode 100644
index 000000000000..f56f9fe18636
--- /dev/null
+++ b/astro/stars/Makefile
@@ -0,0 +1,28 @@
+# New ports collection makefile for: stars-1.0
+# Version required: 1.0
+# Date created: 10 Jul 1996
+# Whom: searle
+#
+# $Id$
+#
+
+DISTNAME= stars-1.0-ss-9.03
+PKGNAME= stars-1.0
+CATEGORIES+= x11
+MASTER_SITES= ftp://hpux.csc.liv.ac.uk/hpux/X11/Demos/stars-1.0/ \
+ ftp://askdonald.ask.uni-karlsruhe.de/hpux/X11/Demos/stars-1.0/
+
+MAINTAINER= searle@longacre.demon.co.uk
+
+USE_X11= yes
+WRKSRC= $(WRKDIR)/$(PKGNAME)
+
+do-build:
+ cc -I$(PREFIX)/include -O2 -c $(WRKSRC)/xwin.c -o $(WRKSRC)/xwin.o
+ cc -I$(PREFIX)/include -O2 -c $(WRKSRC)/main.c -o $(WRKSRC)/main.o
+ cc $(WRKSRC)/main.o $(WRKSRC)/xwin.o -L$(PREFIX)/lib -lX11 -lm -o $(WRKSRC)/stars
+
+do-install:
+ install -c $(WRKSRC)/stars $(PREFIX)/bin/stars
+
+.include <bsd.port.mk>
diff --git a/astro/stars/distinfo b/astro/stars/distinfo
new file mode 100644
index 000000000000..de27462cee89
--- /dev/null
+++ b/astro/stars/distinfo
@@ -0,0 +1 @@
+MD5 (stars-1.0-ss-9.03.tar.gz) = a7ff052723773c7031a5d59c76137cd9
diff --git a/astro/stars/files/patch-aa b/astro/stars/files/patch-aa
new file mode 100644
index 000000000000..a6027ebdcac2
--- /dev/null
+++ b/astro/stars/files/patch-aa
@@ -0,0 +1,48 @@
+--- main.c.orig Wed Apr 10 06:58:49 1996
++++ main.c Sat Aug 3 17:51:59 1996
+@@ -241,37 +241,37 @@
+
+ XQueryKeymap(xgh.display, keys);
+
+- if(keys[7] & 64)
++ if(keys[3] & 1)
+ Quit=1;
+
+- if(keys[12] & 16 && Speed < 20)
++ if(((keys[2] & 32) || (keys[10] & 64) ) && (Speed < 20))
+ Speed++;
+
+- if(keys[12] & 8 && Speed > -20)
++ if( ((keys[2] & 16) || (keys[10] & 4) ) && (Speed > -20))
+ Speed--;
+
+ for(l=0; l<NumStars; l++)
+ c[l]=b[l];
+
+ XSetForeground(xgh.display,gc1,HiCol);
+- if(keys[16] & 16) {
++ if(keys[12] & 64) {
+ r2+=0.02;
+ XFillPolygon(xgh.display,pix,gc1,a[0],3,Convex,CoordModeOrigin);
+ }
+- if(keys[16] & 128) {
++ if(keys[12] & 16) {
+ r2-=0.02;
+ XFillPolygon(xgh.display,pix,gc1,a[2],3,Convex,CoordModeOrigin);
+ }
+- if(keys[16] & 64) {
++ if(keys[13] & 1) {
+ r1+=0.02;
+ XFillPolygon(xgh.display,pix,gc1,a[1],3,Convex,CoordModeOrigin);
+ }
+- if(keys[16] & 32) {
++ if(keys[12] & 4) {
+ r1-=0.02;
+ XFillPolygon(xgh.display,pix,gc1,a[3],3,Convex,CoordModeOrigin);
+ }
+
+- if(keys[16] & 2)
++ if(keys[8] & 2)
+ {
+ Speed=0;
+ r1=r2=0;
diff --git a/astro/stars/pkg-comment b/astro/stars/pkg-comment
new file mode 100644
index 000000000000..33f0c63a6b14
--- /dev/null
+++ b/astro/stars/pkg-comment
@@ -0,0 +1 @@
+Star field demo.
diff --git a/astro/stars/pkg-descr b/astro/stars/pkg-descr
new file mode 100644
index 000000000000..beca8ad9a356
--- /dev/null
+++ b/astro/stars/pkg-descr
@@ -0,0 +1,10 @@
+Keys:
+ * Cursor keys move the view around.
+ * +/- Speed the stars up and down.
+ * Space resets the speed and the view.
+ * Q quits.
+
+Have fun and don't get too dizzy!
+
+Michael Searle
+searle@longacre.demon.co.uk
diff --git a/astro/stars/pkg-plist b/astro/stars/pkg-plist
new file mode 100644
index 000000000000..45c3638f8c7b
--- /dev/null
+++ b/astro/stars/pkg-plist
@@ -0,0 +1,2 @@
+@cwd /usr/X11R6
+bin/stars