diff options
author | Chris Piazza <cpiazza@FreeBSD.org> | 1999-08-01 02:56:37 +0000 |
---|---|---|
committer | Chris Piazza <cpiazza@FreeBSD.org> | 1999-08-01 02:56:37 +0000 |
commit | c38aaa7db0c660d54a66ee5b56c4c5d4a42355a4 (patch) | |
tree | cf341f5688d777834a791b9280b5e1d5e5de78c5 /finance/wmstock/files/patch-ab | |
parent | 041a60736f9ce63aa3a9eebf0a60c35a76392005 (diff) |
Import of wmstock, a cool dockapp that shows stock ticker(s) that are
retrieved through yahoo.
PR: 12883
Submitted by: Will Andrews <andrews@technologist.com>
Notes
Notes:
svn path=/head/; revision=20435
Diffstat (limited to 'finance/wmstock/files/patch-ab')
-rw-r--r-- | finance/wmstock/files/patch-ab | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/finance/wmstock/files/patch-ab b/finance/wmstock/files/patch-ab new file mode 100644 index 000000000000..b4707ad937f5 --- /dev/null +++ b/finance/wmstock/files/patch-ab @@ -0,0 +1,41 @@ +--- Makefile.orig Wed Jul 7 12:22:08 1999 ++++ Makefile Sun Aug 1 19:45:11 1999 +@@ -2,13 +2,13 @@ + # <mfischer@umr.edu> + # based on wmWeather - see ../Credits for more information + +-CC = gcc +-CFLAGS = -O2 -g -Wall ++CC ?= gcc ++CFLAGS += -g -Wall + DEBUG = -DMLF_DEBUG + GCOV = -fprofile-arcs -ftest-coverage +-INCDIR = -I/usr/X11R6/include/X11 -I/usr/X11R6/include +-DESTDIR= /usr/X11R6 +-LIBDIR = -L/usr/X11R6/lib ++INCDIR = -I${PREFIX}/include/X11 -I${PREFIX}/include ++DESTDIR= ${PREFIX} ++LIBDIR = -L${PREFIX}/lib + # for linux + LIBS = -lXpm -lX11 -lXext + # for Solaris +@@ -22,10 +22,6 @@ + .c.o: + $(CC) $(CFLAGS) -c $< -o $*.o $(INCDIR) + +-# $(CC) $(CFLAGS) -D$(shell echo `uname -s`) -c $< -o $*.o $(INCDIR) +-# no longer need the -D<uname>... +- +- + all: wmstock.o wmstock + + wmstock.o: wmstock_master.xpm wmstock_mask.xbm +@@ -43,8 +39,3 @@ + rm -f $$i; \ + done + rm -f wmstock +- +-install:: wmstock +- install -c -s -m 0755 wmstock $(DESTDIR)/bin +- install -c -m 0755 testqt.pl $(DESTDIR)/bin +- install -c -m 0644 wmstock.1x $(DESTDIR)/man/man1 |