diff options
author | cpiazza <cpiazza@FreeBSD.org> | 1999-06-26 08:34:07 +0000 |
---|---|---|
committer | cpiazza <cpiazza@FreeBSD.org> | 1999-06-26 08:34:07 +0000 |
commit | 996f65203f0ed86c3cf3e33b91e431fc8e8f097f (patch) | |
tree | d180bf48b0cd23bb90746614281baa1caa2dca2b /astro/wmglobe/files/patch-aa | |
parent | feaabf1c5b2cf343dfb7234e4fb7bd8e701462b1 (diff) | |
download | FreeBSD-ports-996f65203f0ed86c3cf3e33b91e431fc8e8f097f.zip FreeBSD-ports-996f65203f0ed86c3cf3e33b91e431fc8e8f097f.tar.gz |
Import of wmglobe: a neat dockapp that displays an xeath-like
display of the earth that is currentlyl under the sun, and more.
PR: 12396
Submitted by: Will Andrews <andrews@technologist.com>
Diffstat (limited to 'astro/wmglobe/files/patch-aa')
-rw-r--r-- | astro/wmglobe/files/patch-aa | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/astro/wmglobe/files/patch-aa b/astro/wmglobe/files/patch-aa new file mode 100644 index 0000000..f6c7958 --- /dev/null +++ b/astro/wmglobe/files/patch-aa @@ -0,0 +1,28 @@ +--- Makefile.orig Tue Feb 2 12:11:37 1999 ++++ Makefile Sat Jun 26 01:23:37 1999 +@@ -1,12 +1,12 @@ +-INC = -I/usr/X11R6/include +-LIBS = -lXext -lX11 -lm -L/usr/X11R6/lib \ +- -ltiff -lXpm -lpng -lz -ljpeg -lungif -lwraster ++INC = -I${X11BASE}/include ++LIBS = -lXext -lX11 -lm -L${X11BASE}/lib -L${LOCALBASE}/lib \ ++ -ltiff -lXpm -lpng -lz -ljpeg -lgif -lwraster + OBJS = src/wmglobe.o src/rend.o src/wmgutil.o \ + src/sunpos.o src/myconvert.o src/mycontext.o + + + .c.o : +- gcc -c -O2 -Wall $(INC) $< -o $*.o ++ ${CC} -c ${CFLAGS} -Wall $(INC) $< -o $*.o + + all: wmglobe + +@@ -14,7 +14,7 @@ + rm -f src/*.o wmglobe + + wmglobe : $(OBJS) +- gcc -O2 -Wall $(OBJS) -o wmglobe $(LIBS) ++ ${CC} ${CFLAGS} -Wall $(OBJS) -o wmglobe $(LIBS) + strip wmglobe + + install : |