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
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
|
# ChangeLog for net-analyzer/snort
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snort/ChangeLog,v 1.201 2013/04/10 18:33:19 chainsaw Exp $
*snort-2.9.2.3-r1 (10 Apr 2013)
10 Apr 2013; Tony Vroon <chainsaw@gentoo.org> +snort-2.9.2.3-r1.ebuild,
+files/snort.rc12:
Init script fixes by Brian De Wolf to cease using deprecated opts variable,
closes bug #447780. /run tmpfs coping measures by Peter Wilmott close bug
#452786. Ebuild ported to EAPI 5, using REQUIRED_USE and dropping now
unnecessary die statements for ebuild helper functions.
17 Mar 2013; Markos Chandras <hwoarang@gentoo.org> metadata.xml:
Add proxy-maintainers to metadata.xml
30 Dec 2012; Agostino Sarubbo <ago@gentoo.org> snort-2.9.2.3.ebuild:
Add ~sparc, wrt to bug #407795
09 Nov 2012; Anthony G. Basile <blueness@gentoo.org> snort-2.9.2.3.ebuild:
keyword ~ppc64, bug #407795
27 Jun 2012; Markus Meier <maekke@gentoo.org> snort-2.9.2.3.ebuild:
add ~arm, bug #407795
15 Jun 2012; Michael Weber <xmw@gentoo.org> snort-2.9.2.1.ebuild,
snort-2.9.2.2.ebuild, snort-2.9.2.3.ebuild:
rekeyword ~ppc (bug 407795)
14 Jun 2012; Michael Weber <xmw@gentoo.org> snort-2.9.1.ebuild:
rekeyword ~ppc (bug 407795)
12 Jun 2012; Zac Medico <zmedico@gentoo.org> snort-2.9.0.5.ebuild,
snort-2.9.1.ebuild, snort-2.9.2.1.ebuild, snort-2.9.2.2.ebuild,
snort-2.9.2.3.ebuild:
inherit user for enewgroup and enewuser
*snort-2.9.2.3 (07 Jun 2012)
07 Jun 2012; Patrick Lauer <patrick@gentoo.org> +snort-2.9.2.3.ebuild:
Bump
*snort-2.9.2.2 (04 Apr 2012)
04 Apr 2012; Patrick Lauer <patrick@gentoo.org> +snort-2.9.2.2.ebuild:
Bump
11 Mar 2012; Joshua Kinard <kumba@gentoo.org> snort-2.9.1.ebuild,
snort-2.9.2.1.ebuild:
Both 2.9.1 and 2.9.2* should be using daq-0.6 or greater.
*snort-2.9.2.1 (11 Mar 2012)
11 Mar 2012; Joshua Kinard <kumba@gentoo.org>
-files/snort-2.8.4-libnet.patch, -snort-2.8.5.1.ebuild,
-snort-2.8.5.3.ebuild, -snort-2.8.6.ebuild, -snort-2.8.6.1.ebuild,
-snort-2.9.0.4-r1.ebuild, snort-2.9.0.5.ebuild, snort-2.9.1.ebuild,
-snort-2.9.2.ebuild, +snort-2.9.2.1.ebuild, -files/pcap_memory.patch,
-files/snort.rc9, -files/snort.reload.rc1, metadata.xml:
Drop old versions and associated files, add 2.9.2.1, and tweak SRC_URI to use
a download URL specified on the Snort website that doesn't require manual
updating for each new release.
11 Mar 2012; Tim Harder <radhermit@gentoo.org> snort-2.9.2.ebuild:
Fix multilib issue (bug #403725, patch by Rick Farina).
*snort-2.9.2 (11 Jan 2012)
11 Jan 2012; Patrick Lauer <patrick@gentoo.org> +snort-2.9.2.ebuild:
Bump
29 Sep 2011; Peter Volkov <pva@gentoo.org> snort-2.9.1.ebuild:
Fix inability to remove .la files, bug 384443 thank Juergen Rose for report
and Jason Wallace for fix.
*snort-2.9.1 (22 Sep 2011)
22 Sep 2011; Patrick Lauer <patrick@gentoo.org> +snort-2.9.1.ebuild,
+files/snort.confd.2, +files/snort.rc11, metadata.xml:
Bump for #382851, thanks to Jason Wallace
21 Sep 2011; Tony Vroon <chainsaw@gentoo.org> snort-2.9.0.5.ebuild:
Marked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo &
Elijah "Armageddon" El Lazkani in bug #382857.
24 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> snort-2.9.0.5.ebuild:
Marked ~ppc/~ppc64 wrt #351551
24 Apr 2011; Raúl Porcel <armin76@gentoo.org> snort-2.9.0.4-r1.ebuild,
snort-2.9.0.5.ebuild:
Add ~sparc wrt #351551
*snort-2.9.0.5 (13 Apr 2011)
13 Apr 2011; Patrick Lauer <patrick@gentoo.org> +snort-2.9.0.5.ebuild:
Bump for #362417
02 Apr 2011; Samuli Suominen <ssuominen@gentoo.org> snort-2.8.5.1.ebuild,
snort-2.8.5.3.ebuild, snort-2.8.6.ebuild, snort-2.8.6.1.ebuild:
Use net-libs/libpcap instead of virtual/libpcap wrt #358835.
17 Mar 2011; Patrick Lauer <patrick@gentoo.org> snort-2.9.0.4-r1.ebuild:
amd64 stable as I accidentally dropped .3 with stable keyword
17 Mar 2011; Patrick Lauer <patrick@gentoo.org> -snort-2.9.0.1.ebuild,
-snort-2.9.0.2.ebuild, -snort-2.9.0.3.ebuild, -snort-2.9.0.4.ebuild,
snort-2.9.0.4-r1.ebuild:
Push alpha keyword to .4 and remove old 2.9 versions
13 Mar 2011; Markus Meier <maekke@gentoo.org> snort-2.9.0.4-r1.ebuild:
add ~arm, bug #351551
07 Mar 2011; Tobias Klausmann <klausman@gentoo.org> snort-2.9.0.3.ebuild:
Keyworded on alpha, bug #351551
*snort-2.9.0.4-r1 (01 Mar 2011)
01 Mar 2011; Joshua Kinard <kumba@gentoo.org> +snort-2.9.0.4-r1.ebuild:
Fix #356905, upstream released a patch to address a bug with partial HTTP URI
decoding and incremented the internal build number, but did not bump the
version number on the available tarball. Build is now 111 from 110.
28 Feb 2011; Jeroen Roovers <jer@gentoo.org> snort-2.9.0.4.ebuild:
Do not install temporary log files (bug #356547).
26 Feb 2011; Thomas Kahle <tomka@gentoo.org> snort-2.9.0.4.ebuild:
x86 stable per bug 351549
25 Feb 2011; Patrick Lauer <patrick@gentoo.org> files/disabledynamic.patch:
Fixing patch
25 Feb 2011; Patrick Lauer <patrick@gentoo.org> files/disabledynamic.patch:
Fixing confused patch
*snort-2.9.0.4 (24 Feb 2011)
24 Feb 2011; Patrick Lauer <patrick@gentoo.org> +snort-2.9.0.4.ebuild,
+files/disabledynamic.patch, metadata.xml:
Bump for #355865, thanks to Jason Wallace
14 Jan 2011; Markos Chandras <hwoarang@gentoo.org> snort-2.9.0.3.ebuild:
Stable on amd64 wrt bug #351549
*snort-2.9.0.3 (13 Jan 2011)
13 Jan 2011; Patrick Lauer <patrick@gentoo.org> snort-2.8.5.1.ebuild,
+snort-2.9.0.3.ebuild:
Bump for #351459, dropping x86 stable keyword as libprelude dropped it.
*snort-2.9.0.2 (03 Dec 2010)
03 Dec 2010; Patrick Lauer <patrick@gentoo.org> +snort-2.9.0.2.ebuild:
Bump for #347459
*snort-2.9.0.1 (02 Nov 2010)
02 Nov 2010; Patrick Lauer <patrick@gentoo.org> +snort-2.9.0.1.ebuild,
+files/snort.rc10, metadata.xml:
Bump for #341013, many ebuild improvements by Jason Wallace and pva
*snort-2.8.6.1 (13 Aug 2010)
13 Aug 2010; Patrick Lauer <patrick@gentoo.org> +snort-2.8.6.1.ebuild:
Bump, ebuild cleanups by Jason Wallace, fixes #331069
19 Jul 2010; Markus Meier <maekke@gentoo.org> snort-2.8.6.ebuild:
add ~arm, bug #301080
11 Jul 2010; Patrick Lauer <patrick@gentoo.org> +snort-2.8.5.3.ebuild:
Readding last 2.8.5 release by popular request
18 Jun 2010; Patrick Lauer <patrick@gentoo.org> -snort-2.8.4.1.ebuild,
-snort-2.8.5.2.ebuild, -snort-2.8.5.3.ebuild:
Remove old
17 Jun 2010; Patrick Lauer <patrick@gentoo.org> snort-2.8.4.1.ebuild,
snort-2.8.5.1.ebuild, snort-2.8.5.2.ebuild, snort-2.8.5.3.ebuild,
snort-2.8.6.ebuild:
Migrating away from deprecated postgres virtuals
*snort-2.8.6 (02 Jun 2010)
02 Jun 2010; Patrick Lauer <patrick@gentoo.org> +snort-2.8.6.ebuild,
metadata.xml:
Bump, fixes #319279. Thanks to Jason Wallace and Brett Edgar
*snort-2.8.5.3 (02 Mar 2010)
02 Mar 2010; Patrick Lauer <patrick@gentoo.org> +snort-2.8.5.3.ebuild:
Bump for #307351, thanks to Jason Wallace
*snort-2.8.5.2 (04 Jan 2010)
04 Jan 2010; Patrick Lauer <patrick@gentoo.org> +snort-2.8.5.2.ebuild:
Bump, thanks to Jason Wallace
26 Dec 2009; Raúl Porcel <armin76@gentoo.org> snort-2.8.5.1.ebuild:
Add ~sparc wrt #268620
26 Nov 2009; Joseph Jezak <josejx@gentoo.org> snort-2.8.5.1.ebuild:
Marked ppc stable for bug #291357.
17 Nov 2009; Brent Baude <ranger@gentoo.org> snort-2.8.5.1.ebuild:
Marking snort-2.8.5.1 ppc64 for bug 291357
07 Nov 2009; Tobias Klausmann <klausman@gentoo.org> snort-2.8.5.1.ebuild:
Stable on alpha, bug #291357
04 Nov 2009; Markus Meier <maekke@gentoo.org> snort-2.8.5.1.ebuild:
amd64/x86 stable, bug #291357
*snort-2.8.5.1 (02 Nov 2009)
02 Nov 2009; Patrick Lauer <patrick@gentoo.org> +snort-2.8.5.1.ebuild,
+files/snort.reload.rc1, metadata.xml:
Bump, thanks to Jason Wallace. Fixes #291558 #291604 #291357
12 Sep 2009; Víctor Ostorga <vostorga@gentoo.org>
-files/snort-2.6.1.1-libnet.patch, -files/snort-2.6.1.2-libdir.patch,
-files/snort-2.6.1.2-react.patch, -files/snort-2.6.1.4-libdnet-ip6.patch,
-files/snort-2.6.1.4-server_stats.patch,
-files/snort-2.8.3.1-libnet.patch, -files/snort.rc7, -files/snort.rc8,
-files/spo_database_fix.patch:
Cleaning out unused files
17 Aug 2009; Patrick Lauer <patrick@gentoo.org> snort-2.8.4.1.ebuild:
Small typo fix, closes #279926
31 May 2009; Patrick Lauer <patrick@gentoo.org> -snort-2.6.1.3-r1.ebuild,
-snort-2.6.1.4.ebuild, -snort-2.6.1.4-r1.ebuild, -snort-2.7.0.1.ebuild,
-snort-2.8.3.1.ebuild, -snort-2.8.4-r2.ebuild, metadata.xml:
Removing old
31 May 2009; Patrick Lauer <patrick@gentoo.org> -snort-2.4.5.ebuild:
Removing old for #271680
25 May 2009; Peter Volkov <pva@gentoo.org> snort-2.8.4.1.ebuild:
emake should have die at the end.
21 May 2009; Brent Baude <ranger@gentoo.org> snort-2.8.4.1.ebuild:
stable ppc, bug 268620
13 May 2009; Markus Meier <maekke@gentoo.org> snort-2.8.4.1.ebuild:
amd64/x86 stable, bug #268620
11 May 2009; Peter Volkov <pva@gentoo.org> metadata.xml:
Added Jason Wallace to maintainers.
11 May 2009; Brent Baude <ranger@gentoo.org> snort-2.8.4.1.ebuild:
stable ppc64, bug 268620
09 May 2009; Tobias Klausmann <klausman@gentoo.org> snort-2.8.4.1.ebuild:
Stable on alpha, bug #268620
*snort-2.8.4.1 (05 May 2009)
05 May 2009; Patrick Lauer <patrick@gentoo.org> +snort-2.8.4.1.ebuild:
Bump to 2.8.4.1, thanks to Jason Wallace. Closes #268620
*snort-2.8.4-r2 (30 Apr 2009)
30 Apr 2009; Patrick Lauer <patrick@gentoo.org> -snort-2.8.4.ebuild,
-snort-2.8.4-r1.ebuild, +snort-2.8.4-r2.ebuild:
Lots of small fixes thanks to Jason Wallace. Fixes #266930.
*snort-2.8.4-r1 (18 Apr 2009)
18 Apr 2009; Patrick Lauer <patrick@gentoo.org> +snort-2.8.4-r1.ebuild:
Small compilation fix for ipv6+prelude useflag combo. Thanks to Jason
Wallace.
*snort-2.8.4 (17 Apr 2009)
17 Apr 2009; Patrick Lauer <patrick@gentoo.org>
+files/snort-2.8.4-libnet.patch, +files/pcap_memory.patch,
files/snort.confd, +files/snort.rc9, +files/spo_database_fix.patch,
metadata.xml, +snort-2.8.4.ebuild:
Bump to 2.8.4. Reworked ebuild thanks to Jason Wallace. Lots of changes,
see bug #266288 for details.
*snort-2.6.1.4-r1 (01 Mar 2009)
01 Mar 2009; Patrick Lauer <patrick@gentoo.org>
+files/snort-2.6.1.4-server_stats.patch, +snort-2.6.1.4-r1.ebuild:
Fixing snort 2.6.1.4 for gcc 4.3.3 / foritfy_sources. Fixes #258487. Patch
by Attila Fazekas.
26 Jan 2009; Mike Frysinger <vapier@gentoo.org> snort-2.8.3.1.ebuild:
Drop usage of USE=pic here.
02 Jan 2009; Tobias Scherbaum <dertobi123@gentoo.org>
snort-2.8.3.1.ebuild:
Fix postgres dep, #253429
31 Dec 2008; Tobias Scherbaum <dertobi123@gentoo.org> metadata.xml,
snort-2.8.3.1.ebuild:
Various QA fixes, as requested by Mr_Bones_. Also describe local use-flags
(and switch pthreads to just threads), though those local use-flags do need
some better descriptions. Hey, at least I do care ...
*snort-2.8.3.1 (23 Nov 2008)
23 Nov 2008; Marcelo Goes <vanquirius@gentoo.org>
+files/snort-2.8.3.1-libnet.patch, +snort-2.8.3.1.ebuild:
2.8.3.1 version bump with many changes for bug 245752. Thanks to Jason
Wallace <jason.r.wallace at gmail dot com> and Antixrict <antixrict at
inbox.lv> for the rewrite. Currently in package.mask for testing.
04 Aug 2008; Jeroen Roovers <jer@gentoo.org> metadata.xml:
Describe local USE flags for GLEP 56.
21 May 2008; Tiziano Müller <dev-zero@gentoo.org> snort-2.4.5.ebuild,
snort-2.6.1.3-r1.ebuild, snort-2.6.1.4.ebuild, snort-2.7.0.1.ebuild:
Changed dependency for postgresql from dev-db/postgresql to
virtual/postgresql-server
19 May 2008; Tiziano Müller <dev-zero@gentoo.org> snort-2.4.5.ebuild,
snort-2.6.1.3-r1.ebuild, snort-2.6.1.4.ebuild, snort-2.7.0.1.ebuild:
Changed dependency for postgresql to virtual/postgresql-base
13 May 2008; Ferris McCormick <fmccor@gentoo.org> snort-2.6.1.3-r1.ebuild,
snort-2.6.1.4.ebuild:
Making ~sparc again for testing, Bug #221917
*snort-2.7.0.1 (05 Sep 2007)
05 Sep 2007; Markus Ullmann <jokey@gentoo.org> +snort-2.7.0.1.ebuild:
Version bump wrt bug #185501, needs more testing
22 Apr 2007; Daniel Black <dragonheart@gentoo.org> +files/snort.rc7,
-files/snort.rc9, +snort-2.4.5.ebuild, snort-2.6.1.4.ebuild,
-snort-2.6.1.4-r1.ebuild:
snort.conf default to install to /etc/snort/snort.conf.distrib like the init
script says. No includes proper amd64 library paths too
07 Apr 2007; Raphael Marichez <falco@gentoo.org>
+files/snort-2.6.1.4-libdnet-ip6.patch, snort-2.6.1.4.ebuild:
Fix #173594, ip6 header redeclaration if libdnet.
*snort-2.6.1.4 (06 Apr 2007)
06 Apr 2007; Marcelo Goes <vanquirius@gentoo.org> +snort-2.6.1.4.ebuild:
2.6.1.4 version bump.
28 Feb 2007; Daniel Black <dragonheart@gentoo.org>
snort-2.6.1.3-r1.ebuild:
ewarn fixed as per bug #168714 thanks to Toralf
*snort-2.6.1.3-r1 (28 Feb 2007)
28 Feb 2007; Daniel Black <dragonheart@gentoo.org> -snort-2.6.1.3.ebuild,
+snort-2.6.1.3-r1.ebuild:
-m better default config thanks to Mike Gualtieri as per bug #166874
27 Feb 2007; Tobias Scherbaum <dertobi123@gentoo.org>
snort-2.6.1.3.ebuild:
Stable on ppc wrt bug #167730.
27 Feb 2007; Steve Dibb <beandog@gentoo.org> snort-2.6.1.3.ebuild:
amd64 stable, security bug 167730
21 Feb 2007; Daniel Black <dragonheart@gentoo.org> snort-2.6.1.2.ebuild,
snort-2.6.1.3.ebuild:
gre patches included in the latest. Fix ebuild error with USE=gre too.
Thanks Tobias bug #167730
20 Feb 2007; Markus Rothe <corsair@gentoo.org> snort-2.6.1.3.ebuild:
Stable on ppc64; bug #167730
20 Feb 2007; Markus Ullmann <jokey@gentoo.org> snort-2.6.1.3.ebuild:
Stable on x86 for bug #167730
*snort-2.6.1.3 (20 Feb 2007)
20 Feb 2007; Markus Ullmann <jokey@gentoo.org> +snort-2.6.1.3.ebuild:
Security bump wrt bug #167730
11 Feb 2007; Simon Stelling <blubb@gentoo.org>
+files/snort-2.6.1.2-libdir.patch, snort-2.6.1.2.ebuild:
fix multilib-strict and mark stable on amd64; security bug 161632
01 Feb 2007; Markus Ullmann <jokey@gentoo.org>
+files/snort-2.6.1.2-react.patch, snort-2.6.1.2.ebuild:
Add patch for react failure, see bug #162598 for details, thanks to
perry@csk.pl
31 Jan 2007; Tobias Scherbaum <dertobi123@gentoo.org>
snort-2.6.1.2.ebuild:
Stable on ppc wrt bug #161632.
27 Jan 2007; Raúl Porcel <armin76@gentoo.org> snort-2.6.1.2.ebuild:
x86 stable wrt bug 161632
27 Jan 2007; Markus Rothe <corsair@gentoo.org> snort-2.6.1.2.ebuild:
Stable on ppc64; bug #161632
*snort-2.6.1.2 (17 Jan 2007)
17 Jan 2007; Markus Ullmann <jokey@gentoo.org>
+files/snort-2.6.1.1-gre.patch, -snort-2.6.0.ebuild,
-snort-2.6.1.1.ebuild, +snort-2.6.1.2.ebuild:
Fix for security bug #161632 and bug #161750
25 Nov 2006; Cedric Krier <cedk@gentoo.org> snort-2.4.5.ebuild:
Fix bug #149496
*snort-2.6.1.1 (25 Nov 2006)
25 Nov 2006; Cedric Krier <cedk@gentoo.org>
+files/snort-2.6.1.1-libnet.patch, +files/snort.rc8,
+snort-2.6.1.1.ebuild:
Version bump thanks to Jason Wallace
23 Nov 2006; Francesco Riosa <vivo@gentoo.org> snort-2.4.5.ebuild,
snort-2.6.0.ebuild:
dev-db/mysql => virtual/mysql
31 Oct 2006; Markus Ullmann <jokey@gentoo.org> snort-2.6.0.ebuild:
Adding -j1 o fix parallel make issue
09 Oct 2006; Markus Ullmann <jokey@gentoo.org> snort-2.4.5.ebuild,
snort-2.6.0.ebuild:
Updating deps wrt bug #143033
20 Sep 2006; Stefaan De Roeck <stefaan@gentoo.org> snort-2.6.0.ebuild:
Keyworded ~alpha, as there seems to be no reason to keep -alpha
*snort-2.6.0 (08 Jul 2006)
08 Jul 2006; Marcelo Goes <vanquirius@gentoo.org> +snort-2.6.0.ebuild:
2.6.0 version bump for bug 136250. Thanks to Ed Davison <ed.davison at
mccombs dot utexas dot edu>, Andrew Ross <aross at westnet dot com dot au>,
Jason Wallace <jason.r.wallace at gmail dot com> and Brett Edgar <bedgar at
desasecurity dot com>. Currently in package.mask for testing.
08 Jul 2006; Marcelo Goes <vanquirius@gentoo.org>
-files/2.3.0-libnet-1.0.patch, -files/snort-2.3.3-log.c.diff,
-files/snort-2.4.4-demarc-patch.diff, -files/snort.rc6,
-snort-2.3.3.ebuild, -snort-2.3.3-r1.ebuild, -snort-2.4.3.ebuild,
-snort-2.4.3-r1.ebuild, -snort-2.4.3-r2.ebuild, -snort-2.4.4.ebuild,
-snort-2.4.4-r1.ebuild:
Remove old ebuilds and unused files.
10 Jun 2006; Thomas Cort <tcort@gentoo.org> snort-2.4.5.ebuild:
Stable on amd64 wrt security Bug #135112.
07 Jun 2006; Mark Loeser <halcy0n@gentoo.org> snort-2.4.5.ebuild:
Stable on x86; bug #135112
06 Jun 2006; Tobias Scherbaum <dertobi123@gentoo.org> snort-2.4.5.ebuild:
ppc stable, bug #135112
06 Jun 2006; Markus Rothe <corsair@gentoo.org> snort-2.4.5.ebuild:
Stable on ppc64; bug #135112
06 Jun 2006; Markus Ullmann <jokey@gentoo.org> snort-2.3.3.ebuild,
snort-2.3.3-r1.ebuild, snort-2.4.3.ebuild, snort-2.4.3-r1.ebuild,
snort-2.4.3-r2.ebuild, snort-2.4.4.ebuild, snort-2.4.4-r1.ebuild,
snort-2.4.5.ebuild:
Changing dep to virtual/libpcap wrt bug #117898
*snort-2.4.5 (06 Jun 2006)
06 Jun 2006; Markus Ullmann <jokey@gentoo.org> +snort-2.4.5.ebuild:
Version bump wrt bug #135112
*snort-2.4.4-r1 (01 Jun 2006)
01 Jun 2006; Markus Ullmann <jokey@gentoo.org> +snort-2.4.4-r1.ebuild:
Applying security patch from bug #135112
30 Apr 2006; Simon Stelling <blubb@gentoo.org> snort-2.4.3-r1.ebuild:
stable on amd64
*snort-2.4.4 (09 Mar 2006)
09 Mar 2006; Marcelo Goes <vanquirius@gentoo.org> +snort-2.4.4.ebuild:
2.4.4 version bump for bug 125607, requested by Ken Garland <garlandkr at
gmail dot com>.
20 Feb 2006; Markus Rothe <corsair@gentoo.org> snort-2.4.3-r1.ebuild:
Stable on ppc64
17 Feb 2006; Michael Hanselmann <hansmi@gentoo.org> snort-2.4.3-r1.ebuild:
Stable on ppc.
*snort-2.4.3-r2 (17 Feb 2006)
17 Feb 2006; Marcelo Goes <vanquirius@gentoo.org> +files/snort.rc7,
+snort-2.4.3-r2.ebuild:
Add --pidfile option to init script for bug 123169. Thanks to Eric Brown
<bigwhitecow at hotmail dot com>.
15 Feb 2006; Markus Ullmann <jokey@gentoo.org> snort-2.3.3.ebuild,
snort-2.3.3-r1.ebuild, snort-2.4.3.ebuild, snort-2.4.3-r1.ebuild:
Removing virtual/libpcap wrt bug #117898
14 Feb 2006; Mark Loeser <halcy0n@gentoo.org> snort-2.4.3-r1.ebuild:
Stable on x86; bug #118708
*snort-2.4.3-r1 (27 Jan 2006)
27 Jan 2006; Marcelo Goes <vanquirius@gentoo.org> -snort-2.4.1.ebuild,
-snort-2.4.1-r1.ebuild, +snort-2.4.3-r1.ebuild:
Install basic rules for bug 110103. Thanks to Mark Conway <mark dot conway
at themobiusprojectdot com> and Donald R. Gray Jr <donaldgray at dslextreme
dot com>.
03 Dec 2005; Tom Gall <tgall@gentoo.org> snort-2.3.3-r1.ebuild:
stable on ppc64
26 Nov 2005; Benjamin Smee <strerror@gentoo.org> files/snort.rc6:
Change to init script to accept CONF
*snort-2.4.3 (19 Oct 2005)
19 Oct 2005; Benjamin Smee <strerror@gentoo.org> +snort-2.4.3.ebuild:
revbump for bug #109730
*snort-2.4.1-r1 (08 Oct 2005)
08 Oct 2005; Benjamin Smee <strerror@gentoo.org> +snort-2.4.1-r1.ebuild:
New conf.d and init.d files as well as sguil integration
25 Sep 2005; Marcelo Goes <vanquirius@gentoo.org> -snort-2.3.0-r1.ebuild,
-snort-2.3.2.ebuild, snort-2.3.3-r1.ebuild, snort-2.4.1.ebuild:
Remove old ebuilds, depend on >=dev-libs/libprelude-0.9.0.
21 Sep 2005; Mark Loeser <halcy0n@gentoo.org> snort-2.3.3.ebuild:
Stable on x86
17 Sep 2005; Michael Hanselmann <hansmi@gentoo.org> snort-2.3.3.ebuild:
Stable on ppc.
*snort-2.4.1 (17 Sep 2005)
17 Sep 2005; Marcelo Goes <vanquirius@gentoo.org>
+files/snort-2.3.3-log.c.diff, snort-2.3.3.ebuild, snort-2.3.3-r1.ebuild,
-snort-2.4.0.ebuild, +snort-2.4.1.ebuild:
Add patch and 2.4.1 version bump for bug 105852.
03 Sep 2005; <soulse@gentoo.org> snort-2.4.0.ebuild:
Fixed ebuild as per bug #103482 thanks to yoann@prelude-ids.org
23 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> snort-2.3.0-r1.ebuild,
snort-2.3.2.ebuild, snort-2.3.3.ebuild, snort-2.3.3-r1.ebuild,
snort-2.4.0.ebuild:
Use -1 instead of /bin/false, bug #103421.
03 Aug 2005; Marcelo Goes <vanquirius@gentoo.org> snort-2.4.0.ebuild:
Install community rules.
01 Aug 2005; Marcelo Goes <vanquirius@gentoo.org> snort-2.4.0.ebuild:
In Soviet Russia, prelude enables you. Using use_enable instead of use_with
for prelude. Thanks to BaSS and dragonheart for pointing this out.
29 Jul 2005; Daniel Black <dragonheart@gentoo.org> snort-2.3.0-r1.ebuild,
snort-2.3.2.ebuild, snort-2.3.3.ebuild, snort-2.3.3-r1.ebuild,
snort-2.4.0.ebuild:
removed die from epatch || die.
29 Jul 2005; Marcelo Goes <vanquirius@gentoo.org> snort-2.4.0.ebuild:
Use Gentoo mirrors for patches instead of my dev space.
*snort-2.4.0 (29 Jul 2005)
29 Jul 2005; Marcelo Goes <vanquirius@gentoo.org>
-files/2.0.6-libnet-1.0.patch, -files/2.1.2-libnet-1.0.patch,
-files/snort-2.0.6-gcc3.patch, -files/snort-2.1.2-gcc3.patch,
-files/snort-2.1.3-gcc3.patch, -files/snort-drop-calculation.diff,
-snort-2.0.6.ebuild, -snort-2.1.3.ebuild, -snort-2.2.0.ebuild,
-snort-2.3.0_rc2.ebuild, -snort-2.3.0.ebuild, +snort-2.4.0.ebuild,
-snort-2.4.20050508.ebuild:
Removing ebuilds prior to 2.3.0 and 2.4.0 version bump.
25 Jul 2005; Marcelo Goes <vanquirius@gentoo.org> snort-2.3.3-r1.ebuild:
Move snort user code from pkg_preinst to pkg_setup, changed it a bit. Fixes
bug 94161. Thanks to kakou <kakou@kakou.org> and Marco Morales
<soulse@gmail.com>.
24 Jul 2005; Marcelo Goes <vanquirius@gentoo.org> snort-2.3.3-r1.ebuild:
Fix RULEPATH in example config. Fixes bug 99397. Thanks to Marco Morales
<soulse@gmail.com>.
27 Jun 2005; Markus Rothe <corsair@gentoo.org> snort-2.3.3-r1.ebuild,
snort-2.4.20050508.ebuild:
Added ~ppc64
25 Jun 2005; Marcelo Goes <vanquirius@gentoo.org> snort-2.3.3-r1.ebuild:
Install rules in /etc/snort/rules for cleaner layout. Fixes bug 95368.
Thanks to Greg Watson <bugs@linuxlogin.com>.
26 May 2005; Marcelo Goes <vanquirius@gentoo.org> :
Took snort-2.3.3-r1 out of package.mask.
*snort-2.3.3-r1 (08 May 2005)
08 May 2005; Marcelo Goes <vanquirius@gentoo.org> +snort-2.3.3-r1.ebuild,
+snort-2.4.20050508.ebuild:
Prelude patching fun. Making snort-2.3.3-r1 depend on >=libprelude-0.9.0_rc1
and using patch from their mailing list, as pointed out by Yoann
Vandoorselaere <yoann@prelude-ids.org>. Also, I made a cvs snapshot of
snort-2.4, which does not require patching anymore, since prelude patches were
accepted in snort. Of course, both new ebuilds are in package.mask for testing
- I expect unexpected borks. This hopefully fixes bug 91820. Thanks to dago
<dago158@bluewin.ch> for reporting.
*snort-2.3.3 (07 May 2005)
07 May 2005; Aaron Walker <ka0ttic@gentoo.org> +snort-2.3.3.ebuild:
Version bump for bug 91673.
19 Apr 2005; Aaron Walker <ka0ttic@gentoo.org> snort-2.3.2.ebuild:
Marked stable on x86.
22 Mar 2005; Aaron Walker <ka0ttic@gentoo.org> snort-2.3.2.ebuild:
Fix missing patch for bug 86219.
*snort-2.3.2 (19 Mar 2005)
19 Mar 2005; Aaron Walker <ka0ttic@gentoo.org> snort-2.3.0-r1.ebuild,
+snort-2.3.2.ebuild:
Version bump; marked 2.3.0-r1 stable on x86.
09 Feb 2005; Aaron Walker <ka0ttic@gentoo.org> snort-2.3.0-r1.ebuild,
snort-2.3.0.ebuild, snort-2.3.0_rc2.ebuild:
Fix typo in pkg_postinst for bug 81415.
07 Feb 2005; Daniel Black <dragonheart@gentoo.org> snort-2.3.0-r1.ebuild:
ppc stable
*snort-2.3.0-r1 (06 Feb 2005)
06 Feb 2005; Aaron Walker <ka0ttic@gentoo.org> +snort-2.3.0-r1.ebuild,
snort-2.3.0.ebuild:
Revision bump for bug 80831; added sguil support. Marked 2.3.0 stable on x86.
29 Jan 2005; Daniel Black <dragonheart@gentoo.org> snort-2.0.6.ebuild,
snort-2.1.3.ebuild, snort-2.2.0.ebuild, snort-2.3.0.ebuild,
snort-2.3.0_rc2.ebuild:
changed net-libs/libpcap depend to virtual/libcap
*snort-2.3.0 (27 Jan 2005)
27 Jan 2005; Aaron Walker <ka0ttic@gentoo.org>
+files/2.3.0-libnet-1.0.patch, -files/2.3.0_rc2-libnet-1.0.patch,
+snort-2.3.0.ebuild, snort-2.3.0_rc2.ebuild:
2.3.0 final; added support for snort-inline via USE=inline. Updated
libnet-1.0 patch to also patch inline.c. Closes bugs 79708 and 79664.
25 Jan 2005; Daniel Black <dragonheart@gentoo.org> snort-2.0.6.ebuild,
snort-2.1.3.ebuild, snort-2.2.0.ebuild, snort-2.3.0_rc2.ebuild:
change shell of snort user to /bin/false as per bug #79216. Thanks to Sascha
Nitsch <gentoobugs@linuxhowtos.org>
25 Jan 2005; Aaron Walker <ka0ttic@gentoo.org> snort-2.3.0_rc2.ebuild:
Run autoreconf since it looks like autogen.sh is no longer provided; fixes
bug 79389.
11 Jan 2005; Jason Wever <weeve@gentoo.org> snort-2.0.6.ebuild,
snort-2.1.3.ebuild, snort-2.2.0.ebuild, snort-2.3.0_rc2.ebuild:
Masked on sparc wrt bugs #29661 and #75395.
11 Jan 2005; Daniel Black <dragonheart@gentoo.org> snort-2.3.0_rc2.ebuild:
unmasked and x86, ppc stable
*snort-2.3.0_rc2 (11 Jan 2005)
11 Jan 2005; Daniel Black <dragonheart@gentoo.org>
+files/2.3.0_rc2-libnet-1.0.patch, +snort-2.3.0_rc2.ebuild:
Version bump as per security bug #75395. Still masked pending
further testing
28 Nov 2004; Eldad Zack <eldad@gentoo.org> snort-2.1.3.ebuild,
snort-2.2.0.ebuild:
Small post install info error. Thanks to John Barton
<jbarton@technicalworks.net> for reporting. Closes #72570.
30 Oct 2004; Eldad Zack <eldad@gentoo.org> -snort-2.1.2.ebuild,
snort-2.2.0.ebuild:
x86 stable.
29 Oct 2004; Eldad Zack <eldad@gentoo.org> snort-2.1.3.ebuild,
snort-2.2.0.ebuild:
Added einfo for MySQL/PostgreSQL usage. Closes #68922.
16 Aug 2004; Eldad Zack <eldad@gentoo.org> snort-2.1.3.ebuild,
snort-2.2.0.ebuild:
x86 stable. added ~ppc which was omitted between 2.1.2 and 2.1.3.
*snort-2.2.0 (15 Aug 2004)
15 Aug 2004; Eldad Zack <eldad@gentoo.org> -snort-2.1.0-r1.ebuild,
-snort-2.1.0.ebuild, +snort-2.2.0.ebuild:
Version bump
01 Jul 2004; Jon Hood <squinky86@gentoo.org> snort-2.0.6.ebuild,
snort-2.1.0-r1.ebuild, snort-2.1.0.ebuild, snort-2.1.1.ebuild,
snort-2.1.2.ebuild, snort-2.1.3.ebuild:
change virtual/glibc to virtual/libc
*snort-2.1.3 (01 Jul 2004)
01 Jul 2004; Eldad Zack <eldad@gentoo.org> +files/snort-2.1.3-gcc3.patch,
+snort-2.1.3.ebuild:
Version bump, added snortsam support.
19 Jun 2004; Michael Hanselmann <hansmi@gentoo.org> snort-2.0.6.ebuild:
Marked snort 2.0.6 as ~ppc
19 Jun 2004; David Holm <dholm@gentoo.org> snort-2.1.2.ebuild:
Added to ~ppc.
19 May 2004; Michael Boman <mboman@gentoo.org> snort-1.9.1-r3.ebuild,
snort-2.0.0.ebuild, snort-2.0.1-r1.ebuild, snort-2.0.2.ebuild,
snort-2.0.5-r1.ebuild, snort-2.0.5-r2.ebuild, snort-2.0.5.ebuild,
files/1.9.1-libnet-1.0.patch, files/2.0.0-libnet-1.0.patch,
files/2.0.1-libnet-1.0.patch, files/2.0.2-libnet-1.0.patch,
files/2.0.5-libnet-1.0.patch, files/snort-1.9.0-gentoo.diff,
files/snort-1.9.1-alpha-core_vuln.diff, files/snort-1.9.1-alpha.patch,
files/snort-1.9.1-configure.patch, files/snort-2.0.2-gcc3.patch,
files/snort-2.0.5-gcc3.patch:
Cleaning out old ebuilds
17 May 2004; Michael Boman <mboman@gentoo.org> snort-2.1.2.ebuild:
Mark 2.1.2 stable on x86
14 Apr 2004; Jon Hood <squinky86@gentoo.org> files/2.1.2-libnet-1.0.patch:
added patch, fixes #47229
06 Apr 2004; Joshua Brindle <method@gentoo.org> snort-2.1.1.ebuild,
snort-2.1.2.ebuild:
added selinux policy to rdepend
01 Apr 2004; Michael Boman <mboman@gentoo.org> snort-2.1.1.ebuild:
Marked stable on x86
*snort-2.1.2 (01 Apr 2004)
01 Apr 2004; Michael Boman <mboman@gentoo.org> snort-2.1.2.ebuild,
files/snort-2.1.2-gcc3.patch:
New upstream version.
16 Mar 2004; Michael Boman <mboman@gentoo.org> snort-2.0.0.ebuild,
snort-2.0.1-r1.ebuild, snort-2.0.2.ebuild, snort-2.0.5-r1.ebuild,
snort-2.0.5.ebuild, snort-2.1.0.ebuild, snort-2.1.1.ebuild:
Changed ebuilds to use 'sed -i ...' instead of 'sed ... < file > file.new'
syntax.
*snort-2.1.1 (09 Mar 2004)
09 Mar 2004; Michael Boman <mboman@gentoo.org> snort-2.1.1.ebuild,
files/2.1.1-libnet-1.0.patch, files/snort-2.1.1-gcc3.patch,
files/snort-2.1.1-pgsql.patch:
New upstream version. Closes #44067.
08 Mar 2004; Michael Boman <mboman@gentoo.org> files/2.0.6-libnet-1.0.patch:
Added missing file. Closing bug #43990.
04 Mar 2004; Jason Wever <weeve@gentoo.org> snort-2.0.6.ebuild:
Marked stable on sparc. If you have any problems on sparc, check gentoo bug
#29661.
*snort-2.1.0-r1 (08 Jan 2004)
08 Jan 2004; Michael Boman <mboman@gentoo.org> snort-2.1.0-r1.ebuild,
files/snort-2.1.0-pgsql.patch:
Made use of 'doc' USE flag to install signature documentation. Patched
configure.in to solve bug #37436.
07 Jan 2004; Michael Boman <mboman@gentoo.org> snort-2.1.0.ebuild:
Forgot to include the threshold.conf file in the installation process.
*snort-2.1.0 (06 Jan 2004)
06 Jan 2004; Michael Boman <mboman@gentoo.org> snort-2.1.0.ebuild,
files/2.1.0-libnet-1.0.patch, files/snort-2.1.0-gcc3.patch:
New upstream version. Breaks prelude support, samba support is now
obsoleted by upstream. Ebuild with prelude support will follow once
a updated patch is made availble.
*snort-2.0.6 (21 Dec 2003)
21 Dec 2003; Michael Boman <mboman@gentoo.org> snort-2.0.6.ebuild:
New upstream version
20 Dec 2003; Michael Boman <mboman@gentoo.org> snort-2.0.5-r2.ebuild:
Bump to stable on x86
Added ~amd64 to KEYWORDS (fixes bug #36098)
16 Dec 2003; Mike Frysinger <vapier@gentoo.org> :
Port the libnet-1.0 patch to snort-2.0.0 to help out the sparc peeps.
*snort-2.0.5-r2 (09 Dec 2003)
09 Dec 2003; Michael Boman <mboman@gentoo.org> snort-2.0.5-r2.ebuild:
Forgot to add etc/prelude-classification.config to the files that should be in
/etc/snort if you are using prelude
09 Dec 2003; Michael Boman <mboman@gentoo.org> snort-2.0.5-r2.ebuild:
Added patch to fix drop packet calculations
*snort-2.0.5-r1 (28 Nov 2003)
28 Nov 2003; Michael Boman <mboman@gentoo.org> snort-2.0.5-r1.ebuild:
- Made flexresp optional (controlled by "flexresp" local USE flag), closes #34150.
- Made smbalert optional (controlled by "samba" USE flag).
- Threading support was never officially supported in Snort, and has
been removed from ebuild now as the code is, if not already has been,
cleaned from the source tree.
- Updated prelude patch.
- Assigned myself as the primary maintainer of this ebuild, with the
hardened as the herd.
*snort-2.0.5 (24 Nov 2003)
24 Nov 2003; Daniel Ahlberg <aliz@gentoo.org> snort-2.0.5.ebuild :
Version bump. Closing #29609 and #32950.
28 Oct 2003; Martin Holzer <mholzer@gentoo.org> snort-2.0.2.ebuild:
adding gcc3 patch. Closes #30540.
08 Oct 2003; Jason Wever <weeve@gentoo.org> snort-2.0.2.ebuild:
masked on sparc until bug #30540 is fixed.
*snort-2.0.2 (06 Oct 2003)
06 Oct 2003; Daniel Ahlberg <aliz@gentoo.org> snort-2.0.2.ebuild:
Version bump
*snort-2.0.1-r1 (21 Aug 2003)
21 Aug 2003; Mike Frysinger <vapier@gentoo.org> :
Patch to compile against SLOT-ed libnet-1.0.x #17772.
Also fix user adding to enewuser/enewgroup and switch use
flags over to `use_enable`.
*snort-1.9.1-r3 (21 Aug 2003)
21 Aug 2003; Mike Frysinger <vapier@gentoo.org> :
Patch to compile against SLOT-ed libnet-1.0.x #17772.
Also fix user adding to enewuser/enewgroup and switch use
flags over to `use_enable`.
*snort-2.0.1 (09 Aug 2003)
11 Aug 2003; <solar@gentoo.org> snort-2.0.1.ebuild,
files/snort-2.0.1+prelude.patch:
Snort 2.0.x does not support snmp bug #26310, Moved large prelude patch to
mirror://
09 Aug 2003; <mboman@gentoo.org> snort-2.0.1.ebuild,
files/snort-2.0.1+prelude.patch:
Added libprelude support to snort. Closes bug 19672.
Upgraded to new upstream version (2.0.1)
*snort-1.9.1-r2 (22 Apr 2003)
22 Apr 2003; Tavis Ormandy <taviso@gentoo.org> snort-1.9.1-r2.ebuild,
snort-2.0.0.ebuild, files/snort-1.9.1-alpha-core_vuln.diff:
snort 2.0.0 is broken on Alpha, backporting the integer overflow fix to snort
1.9.1 while its being fixed, and bumping version
22 Apr 2003; Daniel Ahlberg <aliz@gentoo.org> snort-2.0.0.ebuild files/snort.confd :
Closing #11643. Unmasking becuse of GLSA.
*snort-2.0.0 (16 Apr 2003)
16 Apr 2003; Joshua Brindle <method@gentoo.org> Manifest,
snort-2.0.0.ebuild:
2.0.0 released, yay
*snort-1.9.1-r1 (29 Mar 2003)
29 Mar 2003; Aron Griffis <agriffis@gentoo.org> snort-1.9.1-r1.ebuild,
files/snort-1.9.1-alpha.patch:
Add patch and bump revision for alpha. Thanks to Tavis Ormandy for providing
this in bug #18258
*snort-1.9.1 (04 Mar 2003)
04 Mar 2003; Daniel Ahlberg <aliz@gentoo.org> :
Security update.
06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
*snort-1.9.0 (24 Oct 2002)
24 Oct 2002; Daniel Ahlberg <aliz@gentoo.org> :
Version bump. Found by Torgeir Hansen <torgeir@trenger.ro> in #8925.
Added support for specifying listening interface. Closes #6822.
Addes support for snmp, closes #7299.
Locked down dependency on libnet some more.
*snort-1.8.7 (23 Jul 2002)
24 Oct 2002; Daniel Ahlberg <aliz@gentoo.org> files/snort.confd :
Added support for specifying listening interface. Closes #6822.
Locked down dependency on libnet some more.
30 Aug 2002; Seemant Kulleen <seemant@gentoo.org> snort-1.8.7.ebuild :
/var/log/snort now has a .keep in it. Closes bug #7271 by
mcummings@gentoo.org (Michael Cummings)
26 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> snort-1.8.7.ebuild snort-1.8.6.ebuild :
Fix for bug #5592.
23 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> snort-1.8.7.ebuild :
New version.
*snort-1.8.6 (11 Mar 2003)
13 Jul 2003; Daniel Ahlberg <aliz@gentoo.org> :
Added missing changelog entry.
*snort-1.8.5 (6 Apr 2002)
18 Jul 2002; Kyle Manna <nitro@gentoo.org> snort-1.8.6.ebuild :
Added KEYWORDS.
28 Jun 2002; Thilo Bangert <bangert@gentoo.org> :
moved to net-analyzer - added SLOT - added LICENSE
6 Apr 2002; Matthew Kennedy <mkennedy@gentoo.org> ChangeLog,
snort-1.8.5.ebuild, files/digest-snort-1.8.5:
Added dependency for PostgreSQL. Moved netlib dep from RDEPEND to
DEPEND (it is statically linked). Version bump to latest.
*snort-1.8.3-r1 (8 Feb 2002)
8 Feb 2002; Donny Davies <woodchip@gentoo.org> Changelog,
snort-1.8.3-r1.ebuild, files/digest-snort-1.8.3-r1,
files/snort.confd, files/snort.rc6 files/snort.conf :
Fix for nonexistant /etc/conf.d/snort. Make user/group addition
a little smarter.
*snort-1.8.3 (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.
|