diff options
author | flathill <flathill@FreeBSD.org> | 1999-02-20 08:48:21 +0800 |
---|---|---|
committer | flathill <flathill@FreeBSD.org> | 1999-02-20 08:48:21 +0800 |
commit | b46eb7fa8c28d3576210e260c8b5893e24170525 (patch) | |
tree | 26147db915c3d7c01d94935d9ea3ec35b9a47028 /games/xchadance/files | |
parent | 8209e79bd8d894fe2ec0e9b201768d78bfc8a522 (diff) | |
download | freebsd-ports-gnome-b46eb7fa8c28d3576210e260c8b5893e24170525.tar.gz freebsd-ports-gnome-b46eb7fa8c28d3576210e260c8b5893e24170525.tar.zst freebsd-ports-gnome-b46eb7fa8c28d3576210e260c8b5893e24170525.zip |
Submitted by: issei@jp.FreeBSD.ORG
Display a dancing girl "ChaCha."
She dance, dance and dance forever on your desktop. Enjoy!
Diffstat (limited to 'games/xchadance/files')
-rw-r--r-- | games/xchadance/files/patch-aa | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/games/xchadance/files/patch-aa b/games/xchadance/files/patch-aa new file mode 100644 index 000000000000..5412997e8624 --- /dev/null +++ b/games/xchadance/files/patch-aa @@ -0,0 +1,26 @@ +--- makefile.orig Mon Mar 7 22:10:46 1994 ++++ makefile Fri Feb 19 08:58:24 1999 +@@ -1,6 +1,7 @@ + CC = gcc +-CFLAGS = -Wall -O +-BINDIR = /usr/local/bin/ ++CFLAGS+= -I${PREFIX}/include ++LDFLAGS+= -L${PREFIX}/lib -lX11 ++BINDIR= ${PREFIX}/bin/ + + + all : xchadance +@@ -9,11 +10,11 @@ + rm *.o *~ *.bak core.* a.out + + install : +- cp xchadance $(BINDIR) ++ install -s xchadance $(BINDIR) + + + xchadance : xchadance.o chadata.o +- $(CC) xchadance.o chadata.o -o xchadance -lX11 ++ $(CC) xchadance.o chadata.o -o xchadance ${LDFLAGS} + + + xchadance.o : xchadance.c xchadance.h |