Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-arcade/cavezofphear/files: cavezofphear-0.5-gentoo.patch
Date: Sat, 05 Sep 2009 15:04:08
Message-Id: E1MjwoA-0006jr-K4@stork.gentoo.org
1 mr_bones_ 09/09/05 15:04:06
2
3 Modified: cavezofphear-0.5-gentoo.patch
4 Log:
5 fix the patch (bug #283736)
6 (Portage version: 2.1.6.13/cvs/Linux i686)
7
8 Revision Changes Path
9 1.2 games-arcade/cavezofphear/files/cavezofphear-0.5-gentoo.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/cavezofphear/files/cavezofphear-0.5-gentoo.patch?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/cavezofphear/files/cavezofphear-0.5-gentoo.patch?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/cavezofphear/files/cavezofphear-0.5-gentoo.patch?r1=1.1&r2=1.2
14
15 Index: cavezofphear-0.5-gentoo.patch
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-arcade/cavezofphear/files/cavezofphear-0.5-gentoo.patch,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- cavezofphear-0.5-gentoo.patch 30 Jan 2009 16:35:51 -0000 1.1
22 +++ cavezofphear-0.5-gentoo.patch 5 Sep 2009 15:04:06 -0000 1.2
23 @@ -1,24 +1,36 @@
24 ---- src/Makefile.old 2009-01-30 17:22:01.000000000 +0100
25 -+++ src/Makefile 2009-01-30 17:24:52.000000000 +0100
26 +diff -ru phear-0.5.orig/Makefile phear-0.5/Makefile
27 +--- phear-0.5.orig/Makefile 2007-02-27 06:21:55.000000000 -0500
28 ++++ phear-0.5/Makefile 2009-09-05 11:01:08.534701774 -0400
29 +@@ -2,7 +2,7 @@
30 + DESTDIR_DATA = /usr/local/share
31 +
32 + make:
33 +- cd src && make
34 ++ $(MAKE) -C src phear
35 + clean:
36 + rm -f phear editor
37 + install:
38 +diff -ru phear-0.5.orig/src/Makefile phear-0.5/src/Makefile
39 +--- phear-0.5.orig/src/Makefile 2007-02-27 04:59:26.000000000 -0500
40 ++++ phear-0.5/src/Makefile 2009-09-05 11:01:57.341827885 -0400
41 @@ -2,10 +2,8 @@
42 -
43 +
44 DESTDIR = ..
45 -
46 +
47 -CC = gcc
48 INSTALL = install
49 -CFLAGS = -s -Wall -O2
50 -LDFLAGS = -lncurses
51 +LDLIBS = -lncurses
52 -
53 +
54 all: phear install clean
55 -
56 +
57 @@ -13,7 +11,7 @@
58 - $(CC) $(CFLAGS) -c $^ -o $@
59 -
60 + $(CC) $(CFLAGS) -c $^ -o $@
61 +
62 phear: $(OBJS)
63 -- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
64 -+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS)
65 -
66 +- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
67 ++ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS)
68 +
69 install: install-game
70 -
71 -
72 +