summaryrefslogtreecommitdiff
path: root/games/stonesoup/files/patch-rltiles_makefile.unix
diff options
context:
space:
mode:
authorDmitry Marakasov <amdmi3@FreeBSD.org>2008-07-23 11:05:07 +0000
committerDmitry Marakasov <amdmi3@FreeBSD.org>2008-07-23 11:05:07 +0000
commit3553171db756a89005e661a4a6a10a8e4fe30481 (patch)
tree2ca3b33a9085e0d5a75009724a1ca3734cecec0c /games/stonesoup/files/patch-rltiles_makefile.unix
parent- Update to 0.03000 (diff)
Dungeon Crawl Stone Soup is a fun, free rogue-like game of exploration and
treasure-hunting in dungeons filled with dangerous and unfriendly monsters in a quest for the mystifyingly fabulous Orb of Zot. Dungeon Crawl Stone Soup is a variant of Linley's Dungeon Crawl that's openly developed and invites participation from the Crawl community. WWW: http://crawl-ref.sourceforge.net/ PR: ports/125578 Submitted by: Tobias Rehbein <tobias dot rehbein at web dot de> Approved by: miwi (mentor)
Diffstat (limited to 'games/stonesoup/files/patch-rltiles_makefile.unix')
-rw-r--r--games/stonesoup/files/patch-rltiles_makefile.unix33
1 files changed, 33 insertions, 0 deletions
diff --git a/games/stonesoup/files/patch-rltiles_makefile.unix b/games/stonesoup/files/patch-rltiles_makefile.unix
new file mode 100644
index 000000000000..30a76d8a8bf5
--- /dev/null
+++ b/games/stonesoup/files/patch-rltiles_makefile.unix
@@ -0,0 +1,33 @@
+--- rltiles/makefile.unix.orig 2008-07-14 04:17:52.000000000 +0200
++++ rltiles/makefile.unix 2008-07-18 08:50:43.000000000 +0200
+@@ -12,7 +12,6 @@
+ B2P = bmp2png
+ B2PTOOL = $(B2PSRC)$(B2P)
+
+-CC = cc
+ DELETE = rm -f
+
+ OBJECTS = \
+@@ -104,11 +103,11 @@
+ #
+
+ $(B2PTOOL):
+- cd $(B2PSRC) && make -f makefile.lin $(B2P) && cd ..
++ cd $(B2PSRC) && gmake -f makefile.lin $(B2P) && cd ..
+
+ %.png: %.bmp $(B2PTOOL)
+ $(DELETE) $@
+- $(B2PTOOL) -Q $<
++ $(B2PTOOL) -X -Q $<
+
+ ##########################################################################
+ # Cleaning...
+@@ -117,7 +116,7 @@
+ clean:
+ $(DELETE) $(OBJECTS)
+ $(DELETE) $(ALLTOOLS)
+- cd $(B2PSRC) && make -f makefile.lin clean && cd ..
++ cd $(B2PSRC) && gmake -f makefile.lin clean && cd ..
+
+ distclean: clean
+ $(DELETE) $(GENERATEDBMP)