diff options
author | chuckr <chuckr@FreeBSD.org> | 1996-08-04 06:42:46 +0800 |
---|---|---|
committer | chuckr <chuckr@FreeBSD.org> | 1996-08-04 06:42:46 +0800 |
commit | fd7f0628fa32639d71f4337cd2869a2c60fbe757 (patch) | |
tree | ce5793a46225e55e55277ab8be7d6828b65cd8e0 /astro/stars/Makefile | |
parent | 8cfdcd84e4b41ee756fe511580581197821c3b15 (diff) | |
download | freebsd-ports-gnome-fd7f0628fa32639d71f4337cd2869a2c60fbe757.tar.gz freebsd-ports-gnome-fd7f0628fa32639d71f4337cd2869a2c60fbe757.tar.zst freebsd-ports-gnome-fd7f0628fa32639d71f4337cd2869a2c60fbe757.zip |
New port for x11, stars. Could make you dizzy!
Submitted by: Michael Searle
Diffstat (limited to 'astro/stars/Makefile')
-rw-r--r-- | astro/stars/Makefile | 28 |
1 files changed, 28 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> |