diff options
author | 2009-09-05 15:04:06 +0000 | |
---|---|---|
committer | 2009-09-05 15:04:06 +0000 | |
commit | 84e504114ada9a1970b09e6c89a2da0cccbab123 (patch) | |
tree | ade418379ca390019203fa951d50d38c7a52dc93 /games-arcade/cavezofphear/files | |
parent | Version bump #283608 by zehner. (diff) | |
download | historical-84e504114ada9a1970b09e6c89a2da0cccbab123.tar.gz historical-84e504114ada9a1970b09e6c89a2da0cccbab123.tar.bz2 historical-84e504114ada9a1970b09e6c89a2da0cccbab123.zip |
fix the patch (bug #283736)
Package-Manager: portage-2.1.6.13/cvs/Linux i686
Diffstat (limited to 'games-arcade/cavezofphear/files')
-rw-r--r-- | games-arcade/cavezofphear/files/cavezofphear-0.5-gentoo.patch | 38 |
1 files changed, 25 insertions, 13 deletions
diff --git a/games-arcade/cavezofphear/files/cavezofphear-0.5-gentoo.patch b/games-arcade/cavezofphear/files/cavezofphear-0.5-gentoo.patch index d7ffa2e4237c..80169259d023 100644 --- a/games-arcade/cavezofphear/files/cavezofphear-0.5-gentoo.patch +++ b/games-arcade/cavezofphear/files/cavezofphear-0.5-gentoo.patch @@ -1,24 +1,36 @@ ---- src/Makefile.old 2009-01-30 17:22:01.000000000 +0100 -+++ src/Makefile 2009-01-30 17:24:52.000000000 +0100 +diff -ru phear-0.5.orig/Makefile phear-0.5/Makefile +--- phear-0.5.orig/Makefile 2007-02-27 06:21:55.000000000 -0500 ++++ phear-0.5/Makefile 2009-09-05 11:01:08.534701774 -0400 +@@ -2,7 +2,7 @@ + DESTDIR_DATA = /usr/local/share + + make: +- cd src && make ++ $(MAKE) -C src phear + clean: + rm -f phear editor + install: +diff -ru phear-0.5.orig/src/Makefile phear-0.5/src/Makefile +--- phear-0.5.orig/src/Makefile 2007-02-27 04:59:26.000000000 -0500 ++++ phear-0.5/src/Makefile 2009-09-05 11:01:57.341827885 -0400 @@ -2,10 +2,8 @@ - + DESTDIR = .. - + -CC = gcc INSTALL = install -CFLAGS = -s -Wall -O2 -LDFLAGS = -lncurses +LDLIBS = -lncurses - + all: phear install clean - + @@ -13,7 +11,7 @@ - $(CC) $(CFLAGS) -c $^ -o $@ - + $(CC) $(CFLAGS) -c $^ -o $@ + phear: $(OBJS) -- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ -+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS) - +- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ ++ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS) + install: install-game - - + |