diff options
author | tron <tron@pkgsrc.org> | 1999-08-11 22:20:56 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-08-11 22:20:56 +0000 |
commit | 0cb435e3a31e64026b3851f712b35c4e34f10b4a (patch) | |
tree | a4982e19f40908f8a5070367ed069b05a749395b /games/craft/patches | |
parent | a3ec336e2d365ed2233825bce3011ccc0f655235 (diff) | |
download | pkgsrc-0cb435e3a31e64026b3851f712b35c4e34f10b4a.tar.gz |
- Don't create "Makefile" with a patch, copy it from "files" directory.
- Use "${BSD_INSTALL_...}" instead "/usr/bin/install" with hard coded
arguments.
Diffstat (limited to 'games/craft/patches')
-rw-r--r-- | games/craft/patches/patch-aa | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/games/craft/patches/patch-aa b/games/craft/patches/patch-aa deleted file mode 100644 index 660dba5bfad..00000000000 --- a/games/craft/patches/patch-aa +++ /dev/null @@ -1,53 +0,0 @@ -$NetBSD: patch-aa,v 1.1.1.1 1998/10/13 00:37:33 garbled Exp $ ---- /dev/null Thu Sep 24 10:12:39 1998 -+++ Makefile Thu Sep 24 10:34:08 1998 -@@ -0,0 +1,49 @@ -+#--------------------------------------------------------------------- -+# -+# The following assigns must be changed according to your system -+# -+ -+GCC=gcc -+GPP=g++ -+ -+XLIB=$(X11BASE)/lib -+CPPFLAGS=-I$(X11BASE)/include -DCRAFT_DIR=\"$(PREFIX)/share/craft/\" -+ -+# -+#-------------------------------------------------------------------- -+ -+OBJ= xtimer.o option_menu.o setupedit.o robot.o land.o ship.o building.o \ -+ dir.o object_handler.o pic.o player.o field.o ilfield.o xbm.o cmap_edit.o \ -+ cmap.o ppm.o compress.o table.o xmath.o io.o cry.o win.o dial.o multi_dial.o \ -+ menu.o xsystem.o xfile.o ppm_handler.o errorhandling.o paramreader.o pattern_match.o \ -+ objects.o xstring.o id_handler.o color_trans.o masks.o buttons.o lru.o scroller.o \ -+ selector.o cmap_selector.o getline.o file_selector.o history.o craft.o -+ -+CFLAGS=-O2 -fexpensive-optimizations -finline-functions -+HCC=hcc/hcc -+CMP=$(HCC) -compiler $(GCC) $(CPPFLAGS) $(CFLAGS) -c -+ -+LFLAGS=-Wl,-R$(XLIB) -L$(XLIB) -lX11 -lm -lcompat -+ -+all: craft -+ -+craft: $(OBJ) -+ $(GPP) $(OBJ) $(CPPFLAGS) -o craft $(LFLAGS) -+ -+%.o: %.cc -+ $(CMP) $* -+ -+%.o: %.hc -+ $(CMP) $* -+ -+$(OBJ): hcc/hcc -+ -+install: craft -+ /usr/bin/install -s -c -o bin -g bin -m 0755 craft $(PREFIX)/bin -+ /usr/bin/install -d -o bin -g bin -m 0755 $(PREFIX)/share/craft -+ /usr/bin/install -d -o bin -g bin -m 0755 $(PREFIX)/share/doc/craft -+ /bin/cp -R hcraft $(PREFIX)/share/craft -+ /bin/cp -R buttons $(PREFIX)/share/craft -+ /bin/cp -R html/* $(PREFIX)/share/doc/craft -+ /usr/bin/install -c -o bin -g bin -m 0644 .windefaults.params $(PREFIX)/share/craft -+ |