summaryrefslogtreecommitdiff
blob: 197d72f5042815f6a3e07931ead4243575377d82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
# ChangeLog for net-firewall/iptables
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.160 2008/01/11 17:47:01 pva Exp $

  11 Jan 2008; <pva@gentoo.org> iptables-1.4.0-r1.ebuild:
  l7-filter related code cleaned. Fixed build build problem with monolitic
  kernels and any of imq, l7filter or extesion USE flags enabled, bug 205127,
  thank Guillaume Castagnino <casta AT xwing.info> for report. iptables-1.2 is
  long time not in the tree hence removed related obsolete ewarn.

  10 Jan 2008; nixnut <nixnut@gentoo.org> iptables-1.3.8-r3.ebuild:
  Stable on ppc wrt bug 201909

  08 Jan 2008; <pva@gentoo.org> metadata.xml, iptables-1.4.0-r1.ebuild:
  IMQ patches updated for iptables 1.4.x. Added myself into metadata for
  l7filter and imq extensions.

*iptables-1.4.0-r1 (30 Dec 2007)

  30 Dec 2007; Mike Frysinger <vapier@gentoo.org>
  +files/iptables-1.4.0-dev-files.patch, +iptables-1.4.0-r1.ebuild:
  Install dev headers/libs again #203744.

  27 Dec 2007; Mike Frysinger <vapier@gentoo.org> iptables-1.4.0.ebuild:
  Punt USE=imq.  Use user-custom patch dir in /etc/.

  24 Dec 2007; <pva@gentoo.org> iptables-1.4.0.ebuild:
  Updated l7-filter patches for iptables-1.4.x.

*iptables-1.4.0 (24 Dec 2007)

  24 Dec 2007; Mike Frysinger <vapier@gentoo.org> +iptables-1.4.0.ebuild:
  Version bump #203161 by Nebojsa Trpkovic.

*iptables-1.3.8-r3 (24 Dec 2007)

  24 Dec 2007; <pva@gentoo.org> +iptables-1.3.8-r3.ebuild:
  Update for l7-filter patch to version 2.17, bug 195671, reported by <cilly
  AT cilly.mine.nu>.

  17 Dec 2007; Raúl Porcel <armin76@gentoo.org> iptables-1.3.8-r2.ebuild:
  alpha/ia64/sparc stable wrt #201909

  15 Dec 2007; Samuli Suominen <drac@gentoo.org> iptables-1.3.8-r2.ebuild:
  amd64 stable wrt #201909

  14 Dec 2007; Jeroen Roovers <jer@gentoo.org> iptables-1.3.8-r2.ebuild:
  Stable for HPPA (bug #201909).

  12 Dec 2007; Markus Rothe <corsair@gentoo.org> iptables-1.3.8-r2.ebuild:
  Stable on ppc64; bug #201909

  11 Dec 2007; Christian Faulhammer <opfer@gentoo.org>
  iptables-1.3.8-r2.ebuild:
  stable x86, bug 201909

  06 Oct 2007; Tom Gall <tgall@gentoo.org> iptables-1.3.8-r1.ebuild:
  stable on ppc64 bug #190198

  17 Sep 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  iptables-1.3.8-r1.ebuild:
  Stable on amd64 wrt bug #190198.

  30 Aug 2007; Raúl Porcel <armin76@gentoo.org> iptables-1.3.8-r1.ebuild:
  alpha/ia64 stable wrt #190198

  30 Aug 2007; Christian Birchinger <joker@gentoo.org>
  iptables-1.3.8-r1.ebuild:
  Added sparc stable keyword

  30 Aug 2007; Jeroen Roovers <jer@gentoo.org> iptables-1.3.8-r1.ebuild:
  Stable for HPPA (bug #190198).

  28 Aug 2007; Jurek Bartuszek <jurek@gentoo.org> iptables-1.3.8-r1.ebuild:
  x86 stable (bug #190198)

  28 Aug 2007; nixnut <nixnut@gentoo.org> iptables-1.3.8-r1.ebuild:
  Stable on ppc wrt bug 190198

*iptables-1.3.8-r2 (25 Aug 2007)

  25 Aug 2007; Mike Frysinger <vapier@gentoo.org> +iptables-1.3.8-r2.ebuild:
  Make sure we set KERNEL_DIR to right include path for linux-headers #188873
  by Darren Dale and start pushing crappy patchset addons to the user so
  maintenance is their problem #155243.

  13 Aug 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  iptables-1.3.7.ebuild:
  ppc. stable

  09 Aug 2007; Daniel Black <dragonheart@gentoo.org>
  iptables-1.3.8-r1.ebuild:
  latest l7 version - no patch change appart from naming it correctly

*iptables-1.3.8-r1 (07 Jul 2007)

  07 Jul 2007; Daniel Black <dragonheart@gentoo.org>
  +iptables-1.3.8-r1.ebuild:
  l7 & imq patch update as per bug ##184164 thanks to cilly

*iptables-1.3.8 (25 Jun 2007)

  25 Jun 2007; Mike Frysinger <vapier@gentoo.org> +iptables-1.3.8.ebuild:
  Version bump #183146 by Blu3.

  12 May 2007; Joshua Kinard <kumba@gentoo.org> iptables-1.3.7.ebuild:
  Stable on mips.

  09 May 2007; Roy Marples <uberlord@gentoo.org>
  +files/iptables-1.3.7-test-dir.patch, iptables-1.3.7.ebuild:
  Fix Makefile for non bash shells.

  06 May 2007; Marius Mauch <genone@gentoo.org> iptables-1.3.5-r4.ebuild,
  iptables-1.3.6.ebuild, iptables-1.3.6-r1.ebuild, iptables-1.3.7.ebuild:
  Replacing einfo with elog/ewarn

  08 Apr 2007; Mike Frysinger <vapier@gentoo.org>
  +files/iptables-1.3.7-kernel-dir.patch, iptables-1.3.7.ebuild:
  By default, let the toolchain worry about kernel header location #172209 by
  Karl Hiramoto.

  04 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org> iptables-1.3.7.ebuild:
  Stable on sparc

  10 Mar 2007; Roy Marples <uberlord@gentoo.org> files/iptables-1.3.2.init:
  Remove bashisms from init script, #170085 thanks to Natanael Copa.

  08 Mar 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  +files/iptables-1.3.7-sparc64.patch, iptables-1.3.7.ebuild:
  Fix for #166201

  28 Feb 2007; Daniel Black <dragonheart@gentoo.org>
  +files/1.3.5-files/iptables-1.3.5-linux-headers.patch,
  iptables-1.3.5-r4.ebuild:
  fix USE=extensions problem with linux-headers - bug #156723. Thanks for the
  tip Paul Hewlett in bug #165590

  06 Feb 2007; Daniel Black <dragonheart@gentoo.org>
  -files/1.2.11-files/iptables-layer7-0.9.0.patch,
  -files/1.2.11-files/grsecurity-1.2.8-iptables.patch,
  -files/ip6tables-1.2.9-r1.confd, -files/iptables-1.2.9-r1.confd,
  -files/1.2.11-files/install_all_dev_files.patch,
  -files/ip6tables-1.2.9-r1.init, -files/1.2.11-files/round-robin.patch,
  -files/1.2.11-files/iptables-1.2.9-imq1.diff,
  -files/iptables-1.2.9-r1.init, -files/1.2.11-files/CAN-2004-0986.patch,
  -files/1.2.11-files/install_ipv6_apps.patch, -iptables-1.2.11-r3.ebuild,
  -iptables-1.3.5-r1.ebuild, -iptables-1.3.5-r2.ebuild,
  -iptables-1.3.5-r3.ebuild:
  cleanout

  06 Feb 2007; Daniel Black <dragonheart@gentoo.org> iptables-1.3.7.ebuild:
  l7 now at 2.9 - no code change just different tarball. Bumping to avoid
  extra downloads or something. Bug #161809 thanks cilly

  20 Jan 2007; Alexander H. Færøy <eroyf@gentoo.org>
  iptables-1.3.5-r4.ebuild:
  Stable on MIPS; bug #149643

  30 Dec 2006; Mike Frysinger <vapier@gentoo.org>
  +files/iptables-1.3.7-more-exact-check-grep.patch, iptables-1.3.7.ebuild:
  Dont abort check target when uname contains -g #159162 by Sergey Borodich.

  22 Dec 2006; Daniel Black <dragonheart@gentoo.org> iptables-1.3.7.ebuild:
  l7filter - changed to 2.8 patch - exactly the same as 2.6 but this way the
  user doesn't need to download both versions of l7-filter to get it working.

*iptables-1.3.7 (14 Dec 2006)

  14 Dec 2006; Mike Frysinger <vapier@gentoo.org> +iptables-1.3.7.ebuild:
  Version bump #157850 by Blu3.

  11 Nov 2006; Mike Frysinger <vapier@gentoo.org>
  files/ip6tables-1.3.2.confd, files/iptables-1.3.2.confd,
  files/iptables-1.3.2.init:
  Set policy to ACCEPT before flushing chains in init.d stop() as proposed by
  Max Hacking #154269.

  21 Oct 2006; Thomas Cort <tcort@gentoo.org> iptables-1.3.5-r4.ebuild:
  Stable on alpha wrt Bug #149643.

  14 Oct 2006; Aron Griffis <agriffis@gentoo.org> iptables-1.3.5-r4.ebuild:
  Mark 1.3.5-r4 stable on ia64. #149643

*iptables-1.3.6-r1 (07 Oct 2006)

  07 Oct 2006; Mike Frysinger <vapier@gentoo.org> +iptables-1.3.6-r1.ebuild:
  Update l7-filter support #150124.

  03 Oct 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  iptables-1.3.5-r4.ebuild:
  Stable on x86 wrt bug #141688.

  03 Oct 2006; Simon Stelling <blubb@gentoo.org> iptables-1.3.5-r4.ebuild:
  stable on amd64

  01 Oct 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  iptables-1.3.5-r4.ebuild:
  hppa stable, bug #149643

  01 Oct 2006; Markus Rothe <corsair@gentoo.org> iptables-1.3.5-r4.ebuild:
  Stable on ppc64; bug #149643

  30 Sep 2006; <nixnut@gentoo.org> iptables-1.3.5-r4.ebuild:
  Stable on ppc wrt bug 149643

  30 Sep 2006; Jason Wever <weeve@gentoo.org> iptables-1.3.5-r4.ebuild:
  Stable on SPARC wrt bug #149643.

*iptables-1.3.6 (30 Sep 2006)

  30 Sep 2006; Mike Frysinger <vapier@gentoo.org> +iptables-1.3.6.ebuild:
  Version bump #149438 by Brett.

  23 Sep 2006; Mike Frysinger <vapier@gentoo.org>
  +files/1.3.5-files/iptables-1.3.5-log-prefix-no-empty-strings.patch,
  iptables-1.3.5-r4.ebuild:
  Fix silly segfault when using --log-prefix="" #148169 by tla.

  04 Sep 2006; Joshua Kinard <kumba@gentoo.org> iptables-1.3.5-r1.ebuild:
  Marked stable on mips.

  28 Jul 2006; Martin Schlemmer <azarah@gentoo.org>
  iptables-1.3.5-r4.ebuild:
  Fix USE=extensions to actually build the extra extensions.

*iptables-1.3.5-r4 (28 Jul 2006)

  28 Jul 2006; Martin Schlemmer <azarah@gentoo.org>
  +iptables-1.3.5-r4.ebuild:
  Add extensions USE flag back for misc patch-o-matic extensions. Bump
  l7filter patch to 2.3.

*iptables-1.3.5-r3 (09 Jul 2006)

  09 Jul 2006; Daniel Black <dragonheart@gentoo.org>
  +files/1.3.5-files/iptables-1.3.5-errno.patch, +iptables-1.3.5-r3.ebuild:
  separated extensions patch as promised to vapier/hansmi/wolf31o2(?). Added
  upstream patch for errnum (bug #139726) thanks to Rance Hall and upstream
  dev Daniel

  12 Jun 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  iptables-1.3.5-r1.ebuild:
  Stable on x86 wrt bug #135380.

  11 Jun 2006; Simon Stelling <blubb@gentoo.org> iptables-1.3.5-r1.ebuild:
  stable on amd64

  10 Jun 2006; <nixnut@gentoo.org> iptables-1.3.5-r1.ebuild:
  Stable on ppc; bug #135380

  09 Jun 2006; Guy Martin <gmsoft@gentoo.org> iptables-1.3.5-r1.ebuild:
  Stable on hppa.

  08 Jun 2006; Jason Wever <weeve@gentoo.org> iptables-1.3.5-r1.ebuild:
  Stable on SPARC wrt bug #135380.

  08 Jun 2006; Thomas Cort <tcort@gentoo.org> iptables-1.3.5-r1.ebuild:
  Stable on alpha wrt Bug #135380.

  08 Jun 2006; Markus Rothe <corsair@gentoo.org> iptables-1.3.5-r1.ebuild:
  Stable on ppc64; bug #135380

*iptables-1.3.5-r2 (04 Jun 2006)

  04 Jun 2006; Daniel Black <dragonheart@gentoo.org>  iptables-1.3.5-r2.ebuild:
  update l7-filter patch version

*iptables-1.3.5-r1 (02 May 2006)

  02 May 2006; Daniel Black <dragonheart@gentoo.org>
  +iptables-1.3.5-r1.ebuild:
  layer7 filtering patch version bump.

*iptables-1.3.5 (04 Feb 2006)

  04 Feb 2006; Mike Frysinger <vapier@gentoo.org> +iptables-1.3.5.ebuild:
  Version bump #121392 by Michail Baikov.

  06 Jan 2006; Daniel Black <dragonheart@gentoo.org> iptables-1.3.4.ebuild:
  changing l7 filter from 2.0_beta to 2.0 - only change in the iptables patch
  was an error message change

  18 Dec 2005; Markus Rothe <corsair@gentoo.org> iptables-1.3.4.ebuild:
  Stable on ppc64

  09 Dec 2005; Bryan Østergaard <kloeri@gentoo.org iptables-1.3.4.ebuild:
  Stable on alpha.

  19 Nov 2005; Marcus D. Hanwell <cryos@gentoo.org> iptables-1.3.4.ebuild:
  Stable on amd64.

  18 Nov 2005; Michael Hanselmann <hansmi@gentoo.org> iptables-1.3.4.ebuild:
  Stable on hppa, ppc.

  14 Nov 2005; Gustavo Zacarias <gustavoz@gentoo.org> iptables-1.3.4.ebuild:
  Stable on sparc

  13 Nov 2005; Mark Loeser <halcy0n@gentoo.org> iptables-1.3.4.ebuild:
  Stable on x86; bug #112351

*iptables-1.3.4 (05 Nov 2005)

  05 Nov 2005; Mike Frysinger <vapier@gentoo.org> +iptables-1.3.4.ebuild:
  Version bump to fix #110758 by Brian Kroth.

  15 Oct 2005; Daniel Black <dragonheart@gentoo.org>
  -files/1.2.7a-files/01_all_grsecurity.patch.bz2,
  -files/1.2.7a-files/02_all_imq.patch.bz2,
  -files/1.2.7a-files/03_all_mac_fix.patch.bz2,
  -files/1.2.7a-files/04_all_no_optimize_fix.patch.bz2,
  -files/1.2.9-files/01_all_grsecurity.patch.bz2,
  -files/1.2.9-files/02_all_imq.patch.bz2,
  -files/1.2.9-files/03_hppa_gentoo.patch.bz2,
  -files/1.2.9-files/04_all_install_ipv6_apps.patch.bz2,
  -files/1.2.9-files/05_all_install_all_dev_files.patch.bz2,
  -files/1.2.9-files/06_all_l7.patch.bz2,
  -files/1.2.9-files/sparc64_limit_fix.patch.bz2, -files/ip6tables.confd,
  -files/iptables-1.2.7a-hppa.diff, -files/sparc64_limit_fix.patch.bz2,
  -files/ip6tables.init, -files/iptables-1.2.9-hppa.patch.bz2,
  -files/iptables.confd, -files/iptables.init, -iptables-1.2.7a-r3.ebuild,
  -iptables-1.2.9.ebuild, -iptables-1.2.9-r1.ebuild,
  -iptables-1.2.9-r4.ebuild, -iptables-1.3.1-r4.ebuild,
  -iptables-1.3.3.ebuild:
  cleanout of old version and patches

*iptables-1.3.3-r2 (25 Sep 2005)

  25 Sep 2005; Daniel Black <dragonheart@gentoo.org>  iptables-1.3.3-r2.ebuild:
  updated to use l7-filter-2.0-beta

*iptables-1.3.3-r1 (17 Sep 2005)

  17 Sep 2005; Daniel Black <dragonheart@gentoo.org>
  +iptables-1.3.3-r1.ebuild:
  updated to use l7-filter-1.5 - bug #106009

  15 Sep 2005; Aron Griffis <agriffis@gentoo.org> iptables-1.3.2.ebuild:
  Mark 1.3.2 stable on alpha

  03 Sep 2005; Markus Rothe <corsair@gentoo.org> iptables-1.3.2.ebuild:
  Stable on ppc64

  02 Sep 2005; Michael Hanselmann <hansmi@gentoo.org> iptables-1.3.2.ebuild:
  Stable on ppc.

  18 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org> iptables-1.3.2.ebuild:
  Stable on sparc

*iptables-1.3.3 (16 Aug 2005)

  16 Aug 2005; Robin H. Johnson <robbat2@gentoo.org> +iptables-1.3.3.ebuild:
  Bug #102682, version bump.

  08 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> iptables-1.3.1-r4.ebuild,
  iptables-1.3.2.ebuild:
  Re-added ~mips for bug 91285.

*iptables-1.3.2 (12 Jul 2005)

  12 Jul 2005; Mike Frysinger <vapier@gentoo.org>
  +files/ip6tables-1.3.2.confd, +files/iptables-1.3.2.confd,
  +files/iptables-1.3.2.init, +iptables-1.3.2.ebuild:
  Version bump #98641 by Lars (Polynomial-C).  Unified the iptables/ip6tables
  init.d scripts.  Added a new 'panic' option to init.d #72033 by Colin 
  Kingsley.  Warn about issues upgrading from 1.2.x to 1.3.x #92535 by Volkov 
  Peter.

*iptables-1.3.1-r4 (05 May 2005)

  05 May 2005; Mike Frysinger <vapier@gentoo.org>
  files/iptables-1.2.9-r1.init, files/iptables.init, metadata.xml,
  -iptables-1.3.1-r3.ebuild, +iptables-1.3.1-r4.ebuild:
  Make sure /var/lib/iptables/rules-saves is only read/writable by root #91468
  by eromang.

  03 May 2005; Stephanie Lockwood-Childs <wormo@gentoo.org>
  iptables-1.3.1-r3.ebuild:
  mark ~ppc wrt #91285

  03 May 2005; Herbie Hopkins <herbs@gentoo.org> iptables-1.3.1-r3.ebuild:
  Multilib fixes.

  03 May 2005; Omkhar Arasaratnam <omkhar@gentoo.org>
  iptables-1.3.1-r3.ebuild:
  Keyworded ~ppc64 wrt #91285

  03 May 2005; Jan Brinkmann <luckyduck@gentoo.org>
  iptables-1.3.1-r3.ebuild:
  (re-)added ~amd64 to KEYWORDS wrt #91285

  03 May 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  iptables-1.3.1-r3.ebuild:
  Keyworded ~sparc wrt #91285

*iptables-1.3.1-r3 (03 May 2005)

  03 May 2005; Robin H. Johnson <robbat2@gentoo.org> :
  iptables-1.3.1-r2.ebuild, +iptables-1.3.1-r3.ebuild
  Clean up 1.3.1 ebuilds, and forcable mark as KEYWORDS=~x86 ONLY, as I want
  arches to test it first.

*iptables-1.3.1-r2 (21 Apr 2005)

  21 Apr 2005; Daniel Black <dragonheart@gentoo.org> -iptables-1.3.1.ebuild,
  -iptables-1.3.1-r1.ebuild, +iptables-1.3.1-r2.ebuild:
  As per bug #89500 removed old iptables-1.3* due to memory leak in the l7
  filter section. Revision bump includes l7 filter 1.2.

  28 Mar 2005; Jeremy Huddleston <eradicator@gentoo.org>
  iptables-1.2.11-r3.ebuild, iptables-1.3.1-r1.ebuild:
  Use proper toolchain compiler.

  28 Mar 2005; Daniel Black <dragonheart@gentoo.org> iptables-1.3.1-r1.ebuild,
  iptables-1.3.1.ebuild:
  added conditional unpack on l7-filter thanks to Marcelo Góes (vanquirius)

*iptables-1.3.1-r1 (23 Mar 2005)

  23 Mar 2005; Daniel Black <dragonheart@gentoo.org>
  +iptables-1.3.1-r1.ebuild:
  revision bump to support l7-filter-1.1. Doco fixes included

*iptables-1.3.1 (09 Mar 2005)

  09 Mar 2005; Robin H. Johnson <robbat2@gentoo.org>
  +files/1.3.1-files/grsecurity-1.2.8-iptables.patch-1.3.1.bz2,
  +files/1.3.1-files/install_all_dev_files.patch-1.3.1.bz2,
  +files/1.3.1-files/install_ipv6_apps.patch.bz2,
  +files/1.3.1-files/iptables-1.3.1-compilefix.patch,
  +iptables-1.3.1.ebuild:
  Bug #80556, initial work, lots of changes here. This is hardmasked for
  testing still. It didn't compile against my mm-sources kernel, but does
  compile against a stock kernel.

  29 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
  Change encoding to UTF-8 for GLEP 31 compliance

  09 Nov 2004; Aron Griffis <agriffis@gentoo.org> iptables-1.2.11-r3.ebuild:
  stable on ia64

  08 Nov 2004; Markus Rothe <corsair@gentoo.org> iptables-1.2.11-r3.ebuild:
  Stable on ppc64; bug #70240

  08 Nov 2004; Simon Stelling <blubb@gentoo.org> iptables-1.2.11-r3.ebuild:
  stable for security reasons (bug #70240)

  08 Nov 2004; Bryan Østergaard <kloeri@gentoo.org>
  iptables-1.2.11-r3.ebuild:
  Stable on alpha, bug 70240.

  08 Nov 2004; <SeJo@gentoo.org> iptables-1.2.11-r3.ebuild:
  stable on ppc gsla: 70240

  07 Nov 2004; Olivier Crete <tester@gentoo.org> iptables-1.2.11-r3.ebuild:
  Stable on x86 per security bug #70240

  07 Nov 2004; Jason Wever <weeve@gentoo.org> iptables-1.2.11-r3.ebuild:
  Stable on sparc wrt security bug #70240.

  07 Nov 2004; Joshua Kinard <kumba@gentoo.org> iptables-1.2.11-r3.ebuild:
  Marked stable on mips.

  07 Nov 2004; Joshua Kinard <kumba@gentoo.org> iptables-1.2.11-r2.ebuild:
  Marked stable on mips.

*iptables-1.2.11-r3 (06 Nov 2004)

  06 Nov 2004; <solar@gentoo.org> +files/1.2.11-files/CAN-2004-0986.patch,
  +iptables-1.2.11-r3.ebuild:
  security bump. Exception handling error. bug 70240

  10 Sep 2004; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.11-r2.ebuild,
  files/1.2.11-files/round-robin.patch:
  Added round-robin patch, closing #60979.

  05 Sep 2004; Guy Martin <gmsoft@gentoo.org>
  -files/1.2.11-files/hppa.patch.bz2, iptables-1.2.11-r2.ebuild:
  Stable on hppa. Removed no more needed hppa patch.

  29 Aug 2004; Tom Gall <tgall@gentoo.org> iptables-1.2.11-r2.ebuild:
  stable on ppc64, bug #60780

  22 Aug 2004; Seemant Kulleen <seemant@gentoo.org> iptables-1.2.11-r2.ebuild,
  iptables-1.2.9-r1.ebuild, iptables-1.2.9-r4.ebuild, iptables-1.2.9.ebuild:
  fix spelling error. Thanks to: Kurt McKee <kurtmckee@northwestern.edu> in bug
  #61325

  22 Aug 2004; Bryan Østergaard <kloeri@gentoo.org> iptables-1.2.11-r2.ebuild:
  Stable on alpha.

  20 Aug 2004; Gustavo Zacarias <gustavoz@gentoo.org>
  iptables-1.2.11-r2.ebuild:
  Stable on sparc

  18 Aug 2004; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.11-r2.ebuild,
  files/ip6tables-1.2.9-r1.confd, files/ip6tables-1.2.9-r1.init,
  files/iptables-1.2.9-r1.confd, files/iptables-1.2.9-r1.init:
  Enable saving state when stopping service, closing #60680.
  Unmasking on x86 and amd64.

  10 Jul 2004; Daniel Ahlberg <aliz@gentoo.org> files/ip6tables.init:
  Fix typo in init file, closing #56537.

  05 Jul 2004; Michal Januszewski <spock@gentoo.org>
  iptables-1.2.11-r2.ebuild:
  Fixed problems with iptables installing into /usr/local/sbin/.

  04 Jul 2004; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.11-r2.ebuild:
  + Fix installation path, initscript and config script. Closing #55978.
  + Fix dependencies. Closing #55605

  04 Jul 2004; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.9-r4.ebuild:
  + Fix dependencies. Closing #55605

  03 Jul 2004; Seemant Kulleen <seemant@gentoo.org> iptables-1.2.11-r2.ebuild:
  sed statement fix, thanks to x1bncwn in #gentoo

*iptables-1.2.9-r4 (03 Jul 2004)
*iptables-1.2.11-r2 (03 Jul 2004)

  03 Jul 2004; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.11-r1.ebuild,
  iptables-1.2.9-r3.ebuild:
  For some reason iptables may decide to compile in the src_install section
  too, make sure it compiles against the correct KERNEL_DIR. Closing #55489.

  02 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org>
  iptables-1.2.11-r1.ebuild, iptables-1.2.7a-r3.ebuild,
  iptables-1.2.9-r1.ebuild, iptables-1.2.9-r3.ebuild, iptables-1.2.9.ebuild:
  || die's to make install to avoid problems like we see in bug #55489.

  02 Jul 2004; Lars Weiler <pylon@gentoo.org> iptables-1.2.9-r3.ebuild:
  Stable on ppc as iptables-1.2.7a-r3 does not compile any more.

  28 Jun 2004; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.11.ebuild,
  iptables-1.2.9-r3.ebuild:
  Revision bump these so they propagate correctly.

*iptables-1.2.11-r1 (28 Jun 2004)

  28 Jun 2004; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.11.ebuild:
  Version bump and updated IMQ and l7 patches. Closing #54067 and #55308.

*iptables-1.2.9-r3 (28 Jun 2004)

  28 Jun 2004; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.9-r3.ebuild:
  New revision with a new local use flag that toggles the applying of
  3rd party patches and building against linux sources. Without the new
  use flag no 3rd party extensions patches will be applied and iptables
  will be built against linux-headers.

  Be aware that iptables doesn't always build against the newest kernels
  and manual patching may be required.

  Closing #54440

  28 Jun 2004; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.7a-r3.ebuild,
  iptables-1.2.9-r1.ebuild, iptables-1.2.9.ebuild:
  Step back to an earlier date to clean up the mess, 
  change "Gentoo Technologies Inc" to "Gentoo Foundation".

  09 Jun 2004; Aron Griffis <agriffis@gentoo.org> iptables-1.2.7a-r3.ebuild,
  iptables-1.2.9-r1.ebuild, iptables-1.2.9.ebuild:
  Fix use invocation and replace unnecessary subshell with if..then..fi

  07 Jun 2004; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.9-r1.ebuild:
  + Only run check_KV if /usr/src/liunx is a symlink or a directory, possible 
    fix for #46817.
  + Handle extensionpatches that was added for 1.2.9-r1. Closing #51418.

  10 May 2004; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.9-r1.ebuild:
  CFLAGS must have -O flag, closing #44204

*iptables-1.2.9-r1 (25 Apr 2004)

  25 Apr 2004; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.9-r1.ebuild:
  + Depend on virtual/linux-sources.
  + Add static build support.
  + Install all headers, patch contributed by Thomas Jacob <jacob@internet24.de>.
  + l7-filter support, closing #39761.
  + Made initscript run before net, closing #27087.
  + Removed ipforwarding from initscripts as it doesn't belong here and added einfo about it.
  + Removed some old ebuilds.

  21 Apr 2004; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.7a-r3.ebuild,
  iptables-1.2.7a-r4.ebuild, iptables-1.2.8.ebuild:
  Added IUSE=

  09 Mar 2004; <agriffis@gentoo.org> iptables-1.2.9.ebuild:
  stable on alpha and ia64

  09 Mar 2004; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.9.ebuild:
  + Added einfo about kernel 2.4.21, closing #25919.
  + Install ip6tables-save and ip6tables-restore, closing #39833.
  + Really enable IPv6, closing #41624.

  28 Jan 2004; <gustavoz@gentoo.org> iptables-1.2.9.ebuild:
  stable on hppa and sparc

  23 Jan 2004; Daniel Ahlberg <aliz@gentoo.org> files/iptables.init, files/ip6tables.init, iptables-1.2.9.ebuild:
  Add reload support to initscript. Closing #21801.
  Added note about saving your rules if upgrading. Closing #35135.
  Unmasked, closing #34910.

  21 Nov 2003; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.9.ebuild :
  Replae -O0 with -O2, same as the the lack of -O flag problem. Closing #33899.

*iptables-1.2.9 (04 Nov 2003)

  04 Nov 2003; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.9.ebuild :
  Version bump.

*iptables-1.2.8-r2 (15 Oct 2003)

  15 Oct 2003; John Mylchreest <johnm@gentoo.org>; iptables-1.2.8-r2.ebuild:
  fixes bug #22223

  21 Sep 2003; Matthew Rickard <frogger@gentoo.org> iptables-1.2.8-r1.ebuild:
  "-fstack-protector" breaks "iptables -p icmp".  We will
  filter this flag until this is fixed properly.

  19 Sep 2003; Daniel Ahlberg <aliz@gentoo.org> files/ip6tables.init:
  Closing #29087.

  06 May 2003; Christian Birchinger <joker@gentoo.org>
  iptables-1.2.8-r1.ebuild:
  Added stable sparc keyword

  05 May 2003; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.8-r1.ebuild :
  Unmasked on x86.

*iptables-1.2.8-r1 (04 May 2003)

  02 Jul 2003; Guy Martin <gmsoft@gentoo.org>  files/1.2.8-files/03_hppa_gentoo.patch.bz2,
  iptables-1.2.8-r1.ebuild :
  Bzipped 03_hppa_gentoo.patch.bz2 which was not. Marked stable for hppa.

  04 May 2003; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.8-r1.ebuild, files/iptables.init 
							files/iptables.confd, files/ip6tables.init
							files/ip6tables.confd :
  Fixed ipv6 support. Closes #17155.

  04 May 2003; Daniel Ahlberg <aliz@gentoo.org> files/1.2.8-files/03_hppa_gentoo.patch.bz2 :
  doh! uncompressed patch.

  04 May 2003; Daniel Ahlberg <aliz@gentoo.org> files/iptables.init :
  Removed auto saving of rules when stopping iptables. Closing #15333 
  and #13673.

  02 May 2003; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.8.ebuild :
  Force -O2 if no -O flag is set. Remove 03_all_no_optimize_fix.patch.bz2.

  19 Apr 2003; Daniel Ahlberg <aliz@gentoo.org> :
  Removed 03_all_mac_fix.patch.bz2 becuse it was fixed in 1.2.8.

*iptables-1.2.8 (19 Apr 2003)

  19 Apr 2003; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.8.ebuild :
  Version bump.

*iptables-1.2.7a-r4 (10 Apr 2003)

  19 apr 2003; Preston A. Elder <prez@gentoo.org> iptables-1.2.7a-r4.ebuild :
  Enabled -r4 for x86

  10 apr 2003; Preston A. Elder <prez@gentoo.org> iptables-1.2.7a-r4.ebuild :
  Added compilation of development tools

*iptables-1.2.7a-r3 (11 Mar 2003)

  15 Mar 2003; Jason Wever <weeve@gentoo.org>
  files/sparc64_limit_fix.patch.bz2:
  Added sparc64_limit_fix.patch.bz2 back into the files directory as it got lost
  in the moving of iptables from sys-apps to net-firewall.

  15 Mar 2003; Jan Seidel <tuxus@gentoo.org> :
  Added mips to KEYWORDS

  11 Mar 2003; Martin Holzer <mholzer@gentoo.org> iptables-1.2.7a-r3.ebuild,
  files/grsecurity-1.2.7a-iptables.patch, files/iptables-1.2.6a-imq.diff-3,
  files/iptables-1.2.7a-gentoo.diff, files/iptables-1.2.7a-hppa.diff,
  files/iptables-1.2.7a-imq.diff-3, files/iptables.confd, files/iptables.init,
  files/1.2.7a-files/01_all_grsecurity.patch.bz2,
  files/1.2.7a-files/02_all_imq.patch.bz2,
  files/1.2.7a-files/03_all_mac_fix.patch.bz2,
  files/1.2.7a-files/04_all_no_optimize_fix.patch.bz2:
  moved from sys-apps/iptables to net-firewall/iptables

  21 Feb 2003; Zach Welch <zwelch@gentoo.org> iptables-1.2.7a-r3.ebuild :
  Added arm keyword 

  17 Feb 2003; Guy Martin <gmsoft@gentoo.org> iptables-1.2.7a-r3.ebuild :
  Added patch and keyword for hppa.

*iptables-1.2.7a-r3 (09 Jan 2003)

  11 Mar 2003; Zach Welch <zwelch@gentoo.org> iptables-1.2.7a-r3.ebuild:
  change sys-kernel/linux-headers to new virtual/os-headers

  09 Feb 2003; Seemant Kulleen <seemant@gentoo.org>
  iptables-1.2.7a-r3.ebuild :

  Sed expression delimiter from / to :, closing bug #15006 by Blu3
  <david+gentoo.org@blue-labs.org>
 
  06 Feb 2003; Mark Guertin <gerk@gentoo.org> iptables-1.2.7a-r3.ebuild :
  Added ppc keyword

  10 Jan 2003; Joshua Brindle <method@gentoo.org> iptables-1.2.7a-r3.ebuild :
  unmasked for x86, sparc, alpha re: bug #13466
  fixed sed string re: bug #13644

  09 Jan 2003; Christian Birchinger <joker@gentoo.org> :
  Added new revsion with sparc64 limit rule fixes. 

  09 Jan 2003; Daniel Ahlberg <aliz@gentoo.org> files/iptables.init :
  Readded save() function, closes #7752.

  08 Jan 2003; Daniel Ahlberg <aliz@gentoo.org> files/iptables.init :
  Forgot to remove save() function from initscript.

  08 Jan 2003; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.7a-r2.ebuild :
  Closes #13466.

  07 Jan 2003; Daniel Ahlberg <aliz@gentoo.org> :
  Cleaned out old files.

*iptables-1.2.7a-r2 (07 Jan 2003)

  07 Jan 2003; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.7a-r2.ebuild, files/iptables.init,
						files/iptables.confd :
  Closes #13366, #13144 and #10424. Added new patching method and made installation prettier. 

*iptables-1.2.7a-r1 (10 Dec 2002)
  
  10 Dec 2002; Joshua Beindle <method@gentoo.org> iptables-1.2.7a-r1.ebuild :
  Added grsecurity stealth module patch

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
*iptables-1.2.7a (27 Aug 2002)

  20 Nov 2002; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.7a.ebuild :
  Added patch for iptables-restore. Contributed by fridtjof@fbunet.de in #10736.

  25 Sep 2002; Daniel Ahlberg <aliz@gentoo.org> files/iptables-1.2.7a-imq.diff-3 :
  Closes #8046.

  23 Sep 2002; Jack Morgan <jmorgan@gentoo.org> iptables-1.2.7a.ebuild : 
  Added sparc/sparc64 keywords

  09 Sep 2002; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.7a.ebuild : 
  Cleaned up configurationfiles and ebuild, added blocke's changes to -r1 into this version.

  08 Sep 2002; Bruce A. Locke <blocke@shivan.org> iptables-1.2.6a-r3.ebuild, iptables-1.2.7a-r2, files/iptables.confd-2, files/iptables.init-2
  Fix #2355.  Forwarding is disabled on script stop and only turned on 
  during script start if conf.d/iptables settings are enabled.

  01 Sep 2002; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.7a.ebuild : 
  Added better handling of stopping iptables as described in #6949. 
  Suggested and submitted by Frederic Jolliton <fred@jolliton.com>.

  30 Aug 2002; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.7a.ebuild : 
  Added the IMQ patch to 1.2.7a.

  27 Aug 2002; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.7a.ebuild : New
  upstream version to fix the bugs introduced in 1.2.7.

*iptables-1.2.6a-r3

  08 Sep 2002; Bruce A. Locke <blocke@shivan.org> iptables-1.2.6a-r3.ebuild, iptables-1.2.7a-r2, files/iptables.confd-2, files/iptables.init-2
  Fix #2335.  Forwarding is disabled on script stop and only turned on 
  during script start if conf.d/iptables settings are enabled.

*iptables-1.2.6a-r2 (29 Aug 2002)

  29 Aug 2002; Daniel Robbins <drobbins@gentoo.org> new rev of iptables-1.2.6a
  adding support for IMQ (intermediate queueing device.) See
  http://luxik.cdi.cz/~patrick/imq/ for more information.

*iptables-1.2.7.ebuild (17 Aug 2002)

  17 Aug 2002; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.7.ebuild : Version
  bump. Christian Parpart <cparpart@surakware.net> brought this to our
  attention.

*iptables-1.2.6a-r1.ebuild (14 July 2002)

  14 Jul 2002; phoen][x <phoenix@gentoo.org> iptables-1.2.6a.ebuild :
  Added KEYWORDS.

  14 Jul 2002; phoen][x <phoenix@gentoo.org> iptables-1.2.6a-r1.ebuild :
  Added KEYWORDS.

*iptables-1.2.4-r1.ebuild (14 July 2002)

  14 Jul 2002; phoen][x <phoenix@gentoo.org> iptables-1.2.4-r1.ebuild :
  Added KEYWORDS, SLOT.

*iptables-1.2.6a (13 Apr 2002)

  13 Apr 2002; Seemant Kulleen <seemant@gentoo.org> iptables-1.2.6a.ebuild :

  gaarde@yahoo.com (Paul Belt) in bug #1670 submitted the update.

*iptables-1.2.5-r1 (20 Mar 2002)

  14 Jul 2002; phoen][x <phoenix@gentoo.org> iptables-1.2.5.ebuild :
  Added KEYWORDS, SLOT.

  14 Jul 2002; phoen][x <phoenix@gentoo.org> iptables-1.2.5-r1.ebuild :
  Added KEYWORDS.

  20 Mar 2002; Daniel Robbins <drobbins@gentoo.org> : iptables *requires*
  kernel sources to compile.  Before, we got away without them since we had a
  /usr/include/linux/autoconf.h.  Now we don't, and this means that we need a
  source tree handy.  Sad but true, and apparently the right thing to do.

*iptables-1.2.5 (1 Feb 2002)

  1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
  
  Added initial ChangeLog which should be updated whenever the package is
  updated in any way. This changelog is targetted to users. This means that the
  comments should well explained and written in clean English. The details about
  writing correct changelogs are explained in the skel.ChangeLog file which you
  can find in the root directory of the portage repository.