Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/iptraf/files: iptraf-3.0.0-Makefile.patch iptraf-2.7.0-2.6.patch iptraf-2.7.0-atheros.patch iptraf-2.7.0-ipv6-glibc24.patch
Date: Sat, 21 Mar 2009 01:39:48
Message-Id: E1LkqBe-0008EZ-7x@stork.gentoo.org
1 jer 09/03/21 01:39:46
2
3 Modified: iptraf-3.0.0-Makefile.patch
4 Removed: iptraf-2.7.0-2.6.patch iptraf-2.7.0-atheros.patch
5 iptraf-2.7.0-ipv6-glibc24.patch
6 Log:
7 Remove ancient version. Fix parallel make thanks to Davide Pesavento (bug #262971). Explicate RDEPEND.
8 (Portage version: 2.2_rc26/cvs/Linux i686)
9
10 Revision Changes Path
11 1.2 net-analyzer/iptraf/files/iptraf-3.0.0-Makefile.patch
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/iptraf/files/iptraf-3.0.0-Makefile.patch?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/iptraf/files/iptraf-3.0.0-Makefile.patch?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/iptraf/files/iptraf-3.0.0-Makefile.patch?r1=1.1&r2=1.2
16
17 Index: iptraf-3.0.0-Makefile.patch
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/iptraf/files/iptraf-3.0.0-Makefile.patch,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- iptraf-3.0.0-Makefile.patch 29 Jan 2006 13:47:36 -0000 1.1
24 +++ iptraf-3.0.0-Makefile.patch 21 Mar 2009 01:39:46 -0000 1.2
25 @@ -1,5 +1,6 @@
26 ---- ./iptraf-3.0.0.orig/src/Makefile 2006-01-10 07:51:13.000000000 +0100
27 -+++ ./iptraf-3.0.0/src/Makefile 2006-01-10 07:53:33.000000000 +0100
28 +diff -Naur iptraf-3.0.0~orig/src/Makefile iptraf-3.0.0/src/Makefile
29 +--- iptraf-3.0.0~orig/src/Makefile 2009-03-20 21:50:35.000000000 +0100
30 ++++ iptraf-3.0.0/src/Makefile 2009-03-20 21:52:35.000000000 +0100
31 @@ -29,10 +29,11 @@
32 # options to be passed to the compiler. I don't believe they need to be
33 # modified (except for -m486 on non-Intel x86 platforms).
34 @@ -16,3 +17,21 @@
35
36 # you may want to change this to point to your ncurses include directory
37 # if the ncurses include files are not in the default location.
38 +@@ -111,7 +112,7 @@
39 + $(CC) $(LDOPTS) $(PROF) -o iptraf $(OBJS) $(LIBS)
40 +
41 + textlib:
42 +- make -C ../support
43 ++ $(MAKE) -C ../support
44 +
45 + %.o: %.c *.h version
46 + $(CC) $(CFLAGS) $(DIRS) $(INCLUDEDIR) $(VERSION) $(PLATFORM) $(PROF) $(DEBUG) $(EXECPERM) $(BSSETTING) -c -o $*.o $<
47 +@@ -130,7 +131,7 @@
48 +
49 + clean:
50 + rm -f *.o *~ core $(BINS)
51 +- make -C ../support clean
52 ++ $(MAKE) -C ../support clean
53 +
54 + # I just included this rule to clear out the .o files, leaving the
55 + # executables, stripped and ready for packing.