Gentoo Archives: gentoo-commits

From: "Alfredo Tupone (tupone)" <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-arcade/alienwave/files: alienwave-0.3.0-gentoo.patch
Date: Fri, 30 Jan 2009 15:09:47
Message-Id: E1LSv05-0000wv-QU@stork.gentoo.org
1 tupone 09/01/30 15:09:45
2
3 Added: alienwave-0.3.0-gentoo.patch
4 Log:
5 Fix --as-needed bug #247285
6 (Portage version: 2.1.6.4/cvs/Linux 2.6.27-gentoo-r8 x86_64)
7
8 Revision Changes Path
9 1.1 games-arcade/alienwave/files/alienwave-0.3.0-gentoo.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/alienwave/files/alienwave-0.3.0-gentoo.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/alienwave/files/alienwave-0.3.0-gentoo.patch?rev=1.1&content-type=text/plain
13
14 Index: alienwave-0.3.0-gentoo.patch
15 ===================================================================
16 --- Makefile.old 2009-01-30 16:04:16.000000000 +0100
17 +++ Makefile 2009-01-30 16:07:04.000000000 +0100
18 @@ -1,9 +1,7 @@
19 # This file is part of Alienwave, a game by Alessandro Pira
20
21 -CC = gcc
22 OBJS = main.o blit.o aliens.o xzarna.o fire.o shield.o levels.o util.o
23 # CFLAGS = -c -O2 -Wall -DDEBUG_LEV
24 -CFLAGS = -c -O2 -Wall
25 LIB = -lncurses
26
27 # Uncomment this if you want random waves
28 @@ -16,8 +14,7 @@
29
30
31 alienwave: $(OBJS)
32 - $(CC) $(LIB) $(OBJS) -o alienwave
33 - strip alienwave
34 + $(CC) $(OBJS) $(LIB) -o alienwave
35
36 main.o: main.c