File: changelog

package info (click to toggle)
ogre-1.9 1.9.0%2Bdfsg1-12
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 44,372 kB
  • sloc: cpp: 444,393; python: 8,255; ansic: 7,558; lex: 3,681; yacc: 1,589; pascal: 1,061; java: 126; makefile: 69; sh: 40
file content (1119 lines) | stat: -rw-r--r-- 47,580 bytes parent folder | download
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
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
ogre-1.9 (1.9.0+dfsg1-12) unstable; urgency=medium

  * Bump Standards-Version to 4.2.1 (no changes needed)
  * d/control: Use https in Homepage URL
  * d/copyright: Use https in Format and Source URLs
  * d/watch:
    - Switch to version=4
    - Update URL to use the most recent repository location

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Sat, 20 Oct 2018 11:21:08 +0200

ogre-1.9 (1.9.0+dfsg1-11) unstable; urgency=medium

  * Bump Standards-Version to 4.1.4 (no changes needed)
  * Update Vcs-* URLs (salsa)
  * d/patches:
    - add riscv64-support.patch (Closes: #897663)

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Fri, 04 May 2018 01:09:29 +0200

ogre-1.9 (1.9.0+dfsg1-10) unstable; urgency=medium

  * Bump Standards-Version to 4.1.3 (no changes needed)
  * Switch to debhelper compat level 11
  * Set "Rules-Requires-Root: no" in d/control

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Sat, 20 Jan 2018 01:35:36 +0100

ogre-1.9 (1.9.0+dfsg1-9) unstable; urgency=medium

  * Bump shlibs version due to GCC v7 ABI change (Closes: #871296)

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Fri, 11 Aug 2017 17:59:53 +0200

ogre-1.9 (1.9.0+dfsg1-8) unstable; urgency=medium

  * Bump Standards-Version to 4.0.0 (no changes needed)
  * Switch to debhelper compat level v10
    - dh flags --parallel are not needed
  * Update Vcs-* URLs
  * Use automatic dbgsym packages, drop -dbg

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Tue, 01 Aug 2017 00:22:18 +0200

ogre-1.9 (1.9.0+dfsg1-7) unstable; urgency=medium

  * Change for reproducible builds: remove timestamp from documentation.
    Thanks Chris Lamb.  (Closes: #795462)
    - d/patches: reproducible-remove-documentation-timestamp.patch

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Sun, 01 Nov 2015 00:21:42 +0000

ogre-1.9 (1.9.0+dfsg1-6) unstable; urgency=medium

  * Release to unstable

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Thu, 13 Aug 2015 19:41:59 +0100

ogre-1.9 (1.9.0+dfsg1-5) experimental; urgency=medium

  * Bump Standards-Version to 3.9.6 (no changes needed)
  * Transition for GCC-5 with ABI change:
    - rename library package to *v5
    - in d/control, add Conflicts and Replaces on previous name of the
      library
  * Update Vcs-Browser link
  * In -dev package, add -dbg to Suggests
  * Address new lintian warning "embedded-javascript-library": add Depends
    on libjs-jquery in the -doc package, and create a symbolic link
    instead of install the local copy of the file "jquery.js"
  * Update the location of Docs/manual in copyright file and resolve minor
    issues (e.g. "dep5-copyright-license-name-not-unique" by renaming
    "License: other" to "License: otherN")

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Wed, 12 Aug 2015 15:54:49 +0100

ogre-1.9 (1.9.0+dfsg1-4) unstable; urgency=medium

  * Fix problem building GLES2 in big endian architectures (patch:
    fix-rendersystem-gles2-big-endian.patch)

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Sat, 20 Sep 2014 19:29:15 +0100

ogre-1.9 (1.9.0+dfsg1-3) unstable; urgency=medium

  * Enable support for GLES, thanks Bret Curtis
  * Create new patch support-arm64.patch to try to fix FTBFS on this port

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Fri, 12 Sep 2014 17:11:54 +0100

ogre-1.9 (1.9.0+dfsg1-2) unstable; urgency=medium

  * Change dependencies on Boost to the default versions (Closes: #749944)
  * Bump Standards-Version to 3.9.5 (no changes needed)

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Wed, 25 Jun 2014 21:12:05 +0100

ogre-1.9 (1.9.0+dfsg1-1) unstable; urgency=low

  * New upstream version
    - Repack the source to meet DFSG (simply removed all 'Samples', 'SDK' and
      '.hg*')
  * Remove dependency on GCC >= 4.8, it is causing problems in its current
    form and all architectures will be required soon to use 4.8 as default
    compiler if not done yet (Closes: #728521)

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Fri, 20 Dec 2013 00:50:55 +0000

ogre-1.9 (1.9.0~rc2+dfsg1-3) unstable; urgency=low

  * Make install rules also different for arch and indep

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Wed, 16 Oct 2013 15:31:37 +0100

ogre-1.9 (1.9.0~rc2+dfsg1-2) unstable; urgency=low

  * Separate building rules in arch-dependent and independent sections, to
    only build doc once (unneeded and very taxing, especially for less
    powerful machines).  At the moment is failing to build in all arches
    in buildds.

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Wed, 16 Oct 2013 12:06:09 +0100

ogre-1.9 (1.9.0~rc2+dfsg1-1) unstable; urgency=low

  * New upstream version
    - Repack the source to meet DFSG (simply removed all 'Samples', 'SDK' and
      '.hg*')
    - Support by upsteam of newer atomic functions, drop
      bug-725143-atomics.patch
  * Build-Depends-Indep on doxygen, graphviz and texinfo to build the
    documentation (was not present in the last revisions due to changes
    upstream, it was pre-generated before)
  * Build-Depends on GCC 4.8 and force to use that version to compile in
    debian/rules.  This is another attempt to fix the problem of being unable to
    build in some architectures (Closes: #725143).

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Mon, 14 Oct 2013 19:52:35 +0100

ogre-1.9 (1.9.0~20130731+dfsg1-4) unstable; urgency=low

  * Another attempt to fix the problem of being unable to build in some
    architectures (Closes: #725143).  I think that this is a bit overkill for a
    not-even-release-candidate version of a package with a very low popcon, but
    this might prove useful for applying the fix upstream or to have in more
    important future versions of the package Debian (if upstream devs don't want
    to handle this themselves).  The changes:
    - Restrict build-depend on "g++ (>= 4:4.8.1-3)" only for the architectures
      where the fix is actually needed (from the official ports at the moment:
      mips mipsel powerpc sparc), so it builds in those arches where the fix is
      not needed while they don't have 4.8 as default.
    - Patch 'bug-725143-atomics.patch': change legacy __sync compiler built-ins
      for the similar __atomic ones, because libatomic doesn't seem to have
      all/some of the __sync ones that caused this problem in the first place.

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Thu, 10 Oct 2013 15:33:41 +0100

ogre-1.9 (1.9.0~20130731+dfsg1-3) unstable; urgency=low

  * Add build-depend on "g++ (>= 4:4.8.1-3)" and fixes for building in several
    arches (Closes: #725143).  Thanks Rebecca N. Palmer for the report and the
    suggested fix.

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Wed, 09 Oct 2013 23:46:54 +0100

ogre-1.9 (1.9.0~20130731+dfsg1-2) unstable; urgency=low

  * Document some files missing in debian/copyright

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Sat, 07 Sep 2013 18:42:47 +0100

ogre-1.9 (1.9.0~20130731+dfsg1-1) unstable; urgency=low

  * New upstream version
    - Repack the source (simply removing all ./Samples/) to meet DFSG
  * debian/patches: Drop all of them

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Sat, 17 Aug 2013 16:01:32 +0100

ogre-1.8 (1.8.0+dfsg1-4) unstable; urgency=low

  * Change maintaner address
  * Bump Standards-Version to 3.9.4 (no changes needed)
  * Remove obsolete "DM-Upload-Allowed: yes"
  * debian/control: Change dependencies on Boost to a current version after the
    stable realease
  * debian/patches:
    - boost-1.53.patch: Support Boost 1.53 (Closes: #704044)
  * debian/rules: Remove "-Wl,-z,defs -Wl,--as-needed" from
    DEB_LDFLAGS_MAINT_APPEND, it's not linking properly against recent versions
    of Boost because of this (Closes: #713640)
  * Install Blender plugin in the proper directory for Blender to pick it up
    automatically (Closes: #704777).  Thanks Paul Wise for the tip.

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Thu, 01 Aug 2013 00:01:32 +0100

ogre-1.8 (1.8.0+dfsg1-3) unstable; urgency=low

  * Document some files oversought in debian/copyright (Closes: #690199).
    Thanks Bart Martens and Anton Gladky for reporting and collaborating in
    fixing the problem.

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Tue, 13 Nov 2012 20:02:38 +0000

ogre-1.8 (1.8.0+dfsg1-2) unstable; urgency=low

  * Remove Samples altogether, since almost all of them contain or depend on
    non-free items (fonts and some media objects, see Debian and upstream bug
    report).
    After contacting upstream, they are not inclined to resolve the issue soon
    (read: it will take years and several major releases, if it happens at all).
    All of them are removed and there will be no attempt to track which ones are
    DFSG-compliant; it is quite a burden (thus decreasing the time that can be
    devoted to maintain the package in good shape, follow closely upstream
    updates, etc), and this is even more complicated with different sets of
    samples in every release (as it is the case now, with v1.7 and v1.8 in the
    Debian archive).
    This change encompasses the following actions/changes:
    - Repack the source (simply removing all ./Samples/)
    - Remove patch change_sample_cfg_path.patch, of no use now
    - Remove corresponding sample packages from debian/control
    - Remove files debian/*samples*.install
    - Closes: #684219 ("ogre contains non-free font from larabie collection")
  * Force Build-Depends and Depends of libogre-dev on version 1.49 (this
    particular one since it is the default for Wheezy).  OGRE exposes internal
    source code from boost which is sometimes incompatible between versions and
    might produce deadlocks with applications using/linking incompatible
    versions of boost.  The problem is probably not fixed completely, but this
    is an attempt to mitigate it (see the bug report for the discussion).
    Thanks Paul D Turner for the toughtful report and Steve M. Robbins for
    feedback.  (Closes: #688582).
  * Patches:
    - Add remove-alignment-hack.patch to drop obsolete stack alignment hack that
      breaks with gcc-4.7 (removed in upstream 1.8.1).  Thanks Julian Taylor and
      Kai Mast for the report and patch.  (Closes: #687013).

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Wed, 10 Oct 2012 21:42:07 +0100

ogre-1.8 (1.8.0-1) unstable; urgency=low

  * New upstream release
    - Update debian/copyright accordingly
  * New source package name (ogre-1.8), different versions should be
    co-installable
    - Binary package names changed accordingly
  * Patches:
    - Disable fix_bug_613924-ftbfs_armel.diff, seems to be fixed upstream
    - Update path containing version in change_sample_cfg_path.patch

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Thu, 07 Jun 2012 23:09:30 +0100

ogre (1.7.4-5) unstable; urgency=low

  * Modify options to avoid CPPFLAGS hardening flags missing (Closes: #665324)
  * Minor modifications to debian/copyright to avoid lintian warnings about
    non-conformant fields

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Mon, 30 Apr 2012 17:26:58 +0100

ogre (1.7.4-4) unstable; urgency=low

  * Build-depends on libois-dev changed to [linux-any] only, and samples
    packages built for only for [linux-any] as well, since OIS does not build in
    non-Linux kernels/architectures (Closes: #664548).
  * Small reformat to debian/copyright to follow standards (a paragraph, content
    of a field, without a leading space)

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Sun, 18 Mar 2012 22:01:08 +0000

ogre (1.7.4-3) unstable; urgency=low

  * Install /usr/share/OGRE-*/*.cfg files in the samples binary package instead
    of an arch-independent one, so it includes the correct path for plugins for
    each architecture (Closes: #663502)

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Mon, 12 Mar 2012 19:34:12 +0000

ogre (1.7.4-2) unstable; urgency=low

  * Test for existence of directories /etc/OGRE* before attempting to remove
    them in {pre,post}{inst,rm} scripts
  * Declaring pre-dependency on dpkg (>= 1.15.7.2~) because of the use of
    dpkg-maintscript-helper
  * debian/copyright format set to format-1.0 (with appropriate URL)
  * Fix short description and priority of the sample packages

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Sun, 04 Mar 2012 23:44:09 +0000

ogre (1.7.4-1) unstable; urgency=low

  * New upstream release
    - Change names of relevant packages with 1.7.3 for 1.7.4
  * Bump Standards-Version to 3.9.3 (no changes needed)
  * Enable building and installing the samples, including source code
    - Create new packages: ogre-samples, -data and -dbg
    - Add Build-Depends on libois-dev
    - Add debian/patches/change_sample_cfg_path.patch to make SampleBrowser be
      able to detect the plugins installed in the system, especially the
      Renderer, without which it cannot start.
  * Add "dpkg-maintscript-helper rm_conffile /etc/OGRE/plugins.cfg" also in
    libogre-$(VERSION).postinst and .postrm (not only .preinst), to try to
    remove unmodified versions of the file from previous package revisions.
    Thanks again to Sam Morris, hopefully the bug is properly fixed this time
    (Closes: #656997).
    - Do the same for /etc/OGRE-1.7.3/plugins.cfg shipped in 1.7.3-5
  * Remove wrongly used "Multi-Arch: same" in -dev package, one of the files
    shipped is actually different in some architectures due to endian-ness
    differences (Closes: #658659).  Thanks Jakub Wilk.

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Mon, 27 Feb 2012 14:42:45 +0000

ogre (1.7.3-6) unstable; urgency=low

  * Use always "versioned" directory names, like /usr/share/OGRE-1.7.3 and
    /usr/lib/MULTIARCH_TRIPLET/OGRE-1.7.3 instead of plain .../OGRE.  In this
    way several versions of the library can be installed at once, as it's
    usually the case with shared libraries but it was not with OGRE until now
    (Closes: #653527).
  * Add missing Build-Depend on "dpkg-dev (>= 1.16.1~)" (instead of the
    suggested .0 of the bug report), and substituting DEB_BUILD_MULTIARCH for
    DEB_HOST_MULTIARCH (Closes: #658015).  The former was used by a propagated
    mistake.  Thanks Sam Morris for the notice and the patch (although I didn't
    use the patch provided because I had already changed the more problematic
    parts with a better solution).  Please reopen if there are still remaining
    problems.
  * Remove /etc/OGRE*/plugins.cfg, according to upstream it's not present in
    other systems, and indeed is more appropriate for applications to define
    what plugins they want to use (or rely only on code, not .cfg files, for
    that).
    - Remove the Debian script /usr/bin/update-ogre-plugins (and its manpage),
      it's of no use now.
    - Remove the template for plugins.cfg
  * Remove /etc/OGRE/plugins.cfg when uninstalling (or upgrading and moving the
    file elsewhere, as it happened for a few versions), if the one installed in
    the system was unmodified.  Thanks Sam Morris for the report and the
    suggested fix (Closes: #656997)
  * Remove cruft provided in the past along with the package but not used for a
    few releases/years:
    - LightwaveConverter.1: binary not present since very long
    - ogre-get-orig-source-1.6.4: script obsolete and unnecessary since with 1.7
      -- it's been clarified that the documentations and the samples are DFSG
      compatible

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Sat, 04 Feb 2012 21:18:16 +0000

ogre (1.7.3-5) unstable; urgency=high

  * Urgency set to high because the version in testing (1.7.3-3) is quite
    broken, and will not work for most people.
  * Moving configuration and plugins in directories named just "OGRE" to
    "OGRE-${VERSION}", so actually several versions of the library can be
    installed at the same time.
  * Fixing paths in the shipped plugins.cfg for the new location of the plugins
    in multi-arch environment, including RPATH for the plugins using it.
  * Remove debian/extras/ogre-plugins-config.in and ogre-plugins-config.1
    (corresponding man page).  As far as I know they were never used, and
    introducing such a tool creates more harm than good in my opinion
    (divergence from upstream and needlessly doing things ad-hoc that should be
    managed by the users of the library).

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Wed, 18 Jan 2012 12:41:51 +0000

ogre (1.7.3-4) unstable; urgency=low

  * Disabling some hardening and linking options, they were causing severe
    problems for some users with the application aborting during initialisation
    (Launchpad bug LP: #913523), confirmed in Debian.  I think that the main
    culprit is "-Wl,-Bsymbolic", although other hardening flags were disabled
    because of compilation failures after disabling the previous one (+pie).

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Sun, 15 Jan 2012 16:27:57 +0000

ogre (1.7.3-3) unstable; urgency=low

  * Switch to debhelper compat level v9
  * Build for multiarch
    - Fix RPATH issue with Plugin_OctreeZone.so, using directory inside
      /usr/lib/multi-arch-triplet/OGRE
  * Enable some extra compiling options and hardening flags
  * Remove Build-Depends on quilt (quells lintian warning:
    unneeded-build-dep-on-quilt)
  * Remove Michael Koch <konqueror@gmx.de> as Uploader, not active for years and
    only active for a brief period in time

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Fri, 21 Dec 2011 12:50:31 +0000

ogre (1.7.3-2) unstable; urgency=low

  * Changed debhelper compat to level 8 (level 7 before), no changes needed
  * Overriding lintian errors of embedded libraries; the modified TinyXML
    library redefines base string classes to match OGRE's and thus it's not
    straightforward to unravel; and 'glew' as part of a GL rendering plugin:
    - 'embedded-library usr/bin/OgreXMLConverter: tinyxml'
    - 'embedded-library usr/lib/OGRE/RenderSystem_GL.so: glew'

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Sun, 10 Jul 2011 01:44:47 +0200

ogre (1.7.3-1) unstable; urgency=low

  * New upstream release
  * The Manual and API Reference are now licensed under CC 3.0 (Closes: #612150)
    and they are included in the ogre-doc binary package
  * Rename libogremain*->libogre, there is no need for the suffix

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Thu, 02 Jun 2011 19:29:04 +0200

ogre (1.7.1-4) unstable; urgency=low

  * Simplifying a lot debian/rules file by leveraging debhelper capabilities,
    only acting when deviating from auto behaviour
  * Fix lintian warning 'spelling-error-in-changelog: architechture', introduced
    in 1.7.1-3
  * Remove binaries of ogre-tools in libogremain-VERSION-dbg, they appeared
    there for some reason

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Thu, 02 Jun 2011 00:16:35 +0200

ogre (1.7.1-3) unstable; urgency=low

  * Improvements to the copyright file, especially including MIT license text
    instead of pointing to a file which does not exist
  * Reorganising Replaces and replacing Conflicts with Breaks to include only
    versions 1.4.9 and 1.6.4 (this one missing from a couple of places) -- thus
    effectively ignoring versions from ancient releases from Debian
  * Remove fix_pthread.patch, which does not seem to be needed.  It was already
    disabled in previous build and no problems were detected, and this URL seems
    to indicate that the problem is known and fixed in 1.7.0:
    http://www.ogre3d.org/mantis/view.php?id=256
  * Fix 'watch' file so it works correctly with all released sources up to now
  * Remove 'compiledemos.sh', it was neglected since v1.4.9 a few years ago,
    it's a bit hackish and lacks proper clean-up mechanisms (as stated in
    comments inside the script itself).  Also, updating the script from revision
    to revision (sometimes with new demos/samples, or removed ones) is annoying
    to maintain for little benefit (see #561614).  Now the building system with
    CMake takes care of compiling all of the demos/samples at once, or it's very
    easy to compile each one individually.
  * Try to fix FTBFS in ARMEL architecture, patch
    fix_bug_613924-ftbfs_armel.diff (Closes: #613924)

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Tue, 31 May 2011 03:20:25 +0200

ogre (1.7.1-2) unstable; urgency=low

  * Bump Standards-Version to 3.9.2 (no changes needed)

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Mon, 30 May 2011 18:06:14 +0200

ogre (1.7.1-1) unstable; urgency=low

  * New upstream version (Closes: #577687).
  * Bumped debhelper compatibility from 5 to 7 (no changes).
  * Bumped Standards-Version from 3.8.3 to 3.9.1 (no changes).
  * Updated 'watch' file, the name of the archives is not very regular.
  * License changed from LGPL-2.1+ to MIT in 1.7, changes to 'copyright' file.
  * Bug fixed upstream where "config.h" file was included from current dir
    (instead of Ogre includes) (Closes: #520913).
  * Use source/format '3.0 (quilt)' (project already used 'quilt').
  * Many tweaks needed to get things working: libraries changed names slightly,
    .so use version in filename, using CMake vs autotools as building system
    (requiring many changes in the rules file), need to remove and rename some
    locally created man pages, some command line tools removed (MaterialUpgrade)
    or renamed (MeshUpgrade -> -r), ...
  * CEGUI-OGRE Renderer is not present (so the 3 related binary packages go
    away).

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Wed, 13 Oct 2010 19:30:37 +0200

ogre (1.6.4.dfsg1-1) unstable; urgency=low

  * New upstream version.
  * Fix inclusion of headers in various -dev packages.

 -- Michael Koch <konqueror@gmx.de>  Thu, 01 Oct 2009 09:13:06 +0200

ogre (1.6.3.dfsg1-1) unstable; urgency=low

  * New upstream version (Closes: #524777).
  * Move files in blender-ogrexml package to /usr/share/blender/scripts
    (Closes: #519249).
  * Make -dev packages arch:any and righten dependencies of them.

 -- Michael Koch <konqueror@gmx.de>  Sun, 27 Sep 2009 08:14:07 +0200

ogre (1.6.1.dfsg1-2) unstable; urgency=low

  * Add Conflicts for libogremain-1.4.9 to libogremain-1.6.1.
    (Closes: #521413)
  * Added debian/patches/fix_pthread.patch to allow building ogre
    on more architectures (Closes: #520863)
  * Updated debian/patches/fix_distclean.patch to allow building
    two times in a row (Closes: #524775)
  * Remove EXR plugin from default plugins.cfg (Closes: #520924).
  * Moved libceguiogrerenderer-1.6.1-dbg and libogremain-1.6.1-dbg
    to debug section.
  * Added myself to Uploaders.
  * Updated Standards-Version to 3.8.3.

 -- Michael Koch <konqueror@gmx.de>  Sat, 05 Sep 2009 05:32:02 +0200

ogre (1.6.1.dfsg1-1) unstable; urgency=low

  * New upstream release.
  * Updated patch to remove extra Samples introduced in 1.6.x series.
  * Disabled OpenEXR plugin; does not compile with default gcc in
    unstable.
  * Updated library versions from 1.4.9 to 1.6.1.
  * Updated debian/watch to use only the SF redirector.
  * Bumped to Standards-Version 3.8.1.

 -- Federico Di Gregorio <fog@debian.org>  Sun, 15 Mar 2009 22:00:19 +0100

ogre (1.4.9.dfsg1-1) unstable; urgency=low

  * New upstream release. (Closes: #479280)
  * Removing non-free documentation from main packaging. (Closes: #485899)
  * Fix copyright file. Using proposal found in
    http://wiki.debian.org/Proposals/CopyrightFormat.
  * Bumped to Standards-Version 3.8.0.
  * Add get-orig-source rule. Just runs external script.
  * Add note about correct Wings3D homepage in libogre-dev README.Debian file.
  * Fixing debian-watch-file-should-mangle-version lintian warning.
  * Making patches compatible with quilt 3.0.
  * Removing nvidia_fbo_fix.patch. Applied upstream.

 -- Andres Mejia <mcitadel@gmail.com>  Sun, 20 Jul 2008 00:27:43 -0400

ogre (1.4.8.dfsg1-1) unstable; urgency=low

  * New upstream release.
    + Updated watch file, rules file, and control file appropriately.
    + Updated ogre-get-orig-source.
  * Declaring *ONLY* Replaces fields for old packages that contained 1.4.6 in
    their names.
  * Updated compiledemos.sh.
  * Setup a OGRE_CONFIG_OPTIONS for default configure options used in building
    ogre.
  * Changing use of CFLAGS TO CXXFLAGS.
  * Updated update-ogre-plugins manual page.
  * Adding CommandLineTools_Readme.txt for ogre-tools documentation.
  * No longer providing ogre-tools-dbg. 'nostrip' option will be used instead.
  * Place update-ogre-plugins in /usr/bin instead of /usr/sbin.
  * Added 'DM-Upload-Allowed: yes' field.
  * Fix patches.
  * Allow some files to be slightly autogenerated based on the version of ogre
    that's being built.
  * Convert to git repository for packaging.
  * Add fix for problem using nvidia 169.12 drivers.

 -- Andres Mejia <mcitadel@gmail.com>  Mon, 19 May 2008 02:14:26 -0400

ogre (1.4.6.dfsg1-1) unstable; urgency=low

  * New upstream release. (Closes: #458902)
  * Modified ogre-tarball.sh script to make it easier to maintain.
    + Use exit status 1 for errors
    + Remove extracted orig directory.
    + Moved debian/extras/ogre-tarball.sh to debian/ogre-get-orig-source.
  * Appending 'dfsg1' at the end of upstream version to let others
    know that the upstream source has been repacked.
  * Bumped Standards-Version to 3.7.3.
  * Making all *-dbg packages Priority: extra.
    + Addresses some lintian warnings.
  * New releases have been introducing ABI changes for ogre. Reverting back
    to using -release versioning scheme for sonames.
    + Updated README.Debian files
  * Making *-dev packages binary-independent.
  * Making library package name match sonames.
    + Addresses lintian warnings.
  * Fixed bad Vcs-SVN link. Also removing '+ssh' part.
  * Take out call to ldconfig during debian/rules install.

 -- Andres Mejia <mcitadel@gmail.com>  Sat, 05 Jan 2008 23:15:33 -0500

ogre (1.4.5-3) unstable; urgency=low

  * Fixing build problem for kfreebsd. (Closes: 451669)
    + Patch modifying Samples/Common/Makefile.am now checks for HAVE_CEGUI.
    + Seperating CEGUI Renderer binaries into libceguiogre{14,14-dbg,-dev}
      packages.
    + CEGUI Renderer needs CEGUI (>= 0.5.0) so build dependency changed from
      libcegui-mk2-dev to libcegui-mk2-dev (>= 0.5.0).
  * Removing XS- in Vcs-* entries in debian/control. Vcs is now official.

 -- Andres Mejia <mcitadel@gmail.com>  Thu, 22 Nov 2007 00:33:54 -0500

ogre (1.4.5-2) unstable; urgency=low

  [ Andres Mejia ]
  * (Closes: 327423)
    Providing a script that downloads and compiles the demos was the best way
    in fixing bug 327423 since the demos have licensing problems preventing
    them from being distributed through Debian.
  * (Closes: 356427)
    Original submitter of this bug says the bug is probably not valid by now.

 -- Andres Mejia <mcitadel@gmail.com>  Thu, 15 Nov 2007 11:57:28 -0500

ogre (1.4.5-1) unstable; urgency=low

  [ Andres Mejia ]
  * New upstream release.
  * Removed makefile_modifications patch as it's no longer needed.
  * Modified disable_samples patch to update version info.
    + Also removed checks for ogre platform and gui as they are not needed.

 -- Andres Mejia <mcitadel@gmail.com>  Mon, 08 Oct 2007 14:14:46 -0400

ogre (1.4.4-2) unstable; urgency=low

  [ Andres Mejia ]
  * Added Homepage field in source stanza that will be supported soon.
  * Add Vcs-{Svn,Browser} fields in control file.

 -- Andres Mejia <mcitadel@gmail.com>  Mon, 03 Sep 2007 23:38:07 -0400

ogre (1.4.4-1) unstable; urgency=low

  [ Andres Mejia ]
  * New upstream release.
  * Modifying debian/control.
    + Taking out dependency of autoconf. It's a dependency of automake.
    + Depending on libz-dev instead of zlib1g-dev
    + Taking out dependency of libx11-dev, dependency of libxt-dev.
    + Taking out dependecy of libxext-dev, dependency of libxrandr-dev.
    + Removing depends of libtiff4-dev for libogre-dev as tiff support should
      be provided by libfreeimage-dev.
  * Closing bug where libogre wasn't installable because of new zzip packages.
    + This new version will need to be built anyway. (Closes: 439868)
  * Removing tar-in-tar method.
    + Fixed debian/rules.
    + Fixed install and docs files.
    + Fixed patches.
  * Removing 64-bit_architectures patch as it's been merged upstream.
  * Removing gcc_mips patch as it's been merged upstream.
  * Certain components from disable_samples patch were also merged upstream.
  * Using quilt instead of dpatch for patching.
  * Updated watchfile.
  * Updated script that creates orig tarball.
    + Now downloads and provides md5sum checks.
  * Removing optional dependency of libdevil-dev.
    + Use of freeimage is preferred upstream.
  * Including some patches that fixes problem with running 'make distclean'.
  * Adding "clean" along with "distclean" in debian/rules "clean" target.
  * Resolving some lintian warnings.
    + Added option to not include *.tmp files for ogre-doc package.
    + Removing config.log file when doing running 'debian/rules clean'.
  * Modified compileall.sh script to allow for downloading and extracting
    upstream tarball as well as compiling samples.

 -- Andres Mejia <mcitadel@gmail.com>  Thu, 30 Aug 2007 22:45:27 -0400

ogre (1.4.3-1) unstable; urgency=low

  [ Andres Mejia ]
  * New upstream release
  * Fixing FTBFS for mips, thanks to Brian M. Carlson (Closes: 358221)
  * Fixing FTBFS for ppc64, thanks to Andreas Jochens (Closes: 364050)
  * Fixing FTBFS for other 64-bit based architectures
    + Major thanks to Steve Langasek for this fix.
    + (Closes: 332514)
    + (Closes: 342380)
  * Closing some NMU bug reports.
    + Build-dependencies are already fixed.
    + Another method for using dh_compress is used.
    + Upstream source of ogre compiles well with g++-4.1.
    + (Closes: 349420)
    + (Closes: 357374)
    + (Closes: 358006)
  * Closing FTBFS with G++ 4.1 bug. (Closes: 356442)
    + All modification were already found upstream.
    + Thanks goes to Martin Michlmayr for providing a fix.
  * Forgot to close one new version bug. (Closes: 350059)
    + A much newer script is provided upstream.
  * Added proper check for determining whether to use SSE.

 -- Andres Mejia <mcitadel@gmail.com>  Wed, 11 Jul 2007 00:29:41 -0400

ogre (1.4.2-2) unstable; urgency=low

  [ Andres Mejia ]
  * New maintainer. (Closes: #398110). It has been set to the Debian Games Team.
  * Added watch file.
  * Fixed lintian warning, ogre-doc: changelog-file-not-compressed ChangeLog.html

 -- Andres Mejia <mcitadel@gmail.com>  Thu, 28 Jun 2007 13:24:56 -0400

ogre (1.4.2-1) unstable; urgency=low

  [ Federico Di Gregorio ]
  * Removed texi2html from Build-deps (not used anymore)
  * Added build dependency from libglu-dev and libgl-dev virtual packages.
  * Fixed various lintian warnings:
    + Changed $(PWD) to $(CURDIR) in debian/rules.
    + Changed ${Source-Version} to ${binary:Version} in debian/control.

  [ Christer Stenbrenden ]
  * New upstream release
    + (Closes: #368277)
    + (Closes: #416181)
    + (Closes: #423331)

  [ Andres Mejia ]
  * Did some cleanup to get this package to build using pbuilder.
  * Modified copyright file to include those who helped with packaging.
  * lib packages will be name libogre14 to reflect upstream version of 1.4.x.
  * No longer using dbs.
  * Using dpatch for patching.
  * Modified Build-Depends.
    + Taking out dependency on xorg metapackage as it breaks policy.
  * Modified patches to disable building of non-distributable samples only.
  * Repackaged tarball as ogre-free.
    + Only including distributable content in Samples directory.
    + Taking out autocache folders distributed in upstream source.
    + Taking out Mac folder as it is not needed for Debian build.
    + Taking out SDK folder as it is only useful for building for Windows.

 -- Andres Mejia <mcitadel@gmail.com>  Wed,  6 Jun 2007 16:54:01 -0400

ogre (1.2.4-1) UNRELEASED; urgency=low

  * New maintainer (Closes: #398110). It has been set to the pkg-games team
    to ease comaintenance.
  * New upstream release (Closes: #368277).
  * Acknowledge NMUs. Thanks to:
     - Steinar H. Gunderson <sgunderson@bigfoot.com> (Closes: #349420)
     - Luk Claes <luk@debian.org> (Closes: #358006, #357374)
    for having taken care of ogre by NMU-ing it when needed.

  [Tarball repack]
  * Repacked tarball as follows:
     - tar xfj ogre-linux_osx-v1-2-4.tar.bz2
     - # see notes above
     - mv ogrenew/ ogre-free/
     - tar cfz ogre-free.tar.gz ogre-free
  * Notes:
     - comparing with previous Debian packages, it looks like disabling the
       build of the CgProgramManager plugin is sufficient
     - TODO: check for non-free stuff in ogrenew/
     - at the moment, those actions are performed during the tarball repack:
         find ogrenew -name CVS -execdir \
         	rm CVS/{Entries,Repository,Root,Tag} ';'
         find ogrenew -name CVS -execdir \
         	rmdir CVS ';'

  [Debian patches]
  * Updated:
     - 01_dont_build_samples: more subdirs have to be disabled;
     - 10_gcc_4.1_mips: mips-specific patch, has to be sent upstream.
  * Deactivated:
     - 03_ogre_to_OGRE: looks like not needed anymore;
     - 08_fix_soname: looks like not needed anymore;
     - 09_gcc_4.1: patch integrated upstream.

  [SONAME and debhelper bumps]
  * Bumped SONAME from 5(c2a) to 12. Conflicts: and Replaces: updated
    accordingly, as well as filenames under debian/ and debian/rules content.
  * Bumped debhelper compatibility and B-D from 4 to 5. Needed changes:
     - Removed ``usr/lib/*.a'' from libogre-dev.install since there is no such
       file anymore. And now dh_install fails when expanding a wildcard to
       nothing.
     - Changed the --dbg-package option of dh_strip from `libogre12' to
       `libogre12-dbg'.

  [debian/control]
  * Added libcegui-mk2-dev to libogre-dev's Depends: so that pkg-config
    dependencies are OK.
  * NMU-safe: Turned `${Source-Version}' into `${binary:Version}', added a
    versioned build dependency on dpkg-dev, so that it should be NMU-safe
    (according to http://wiki.debian.org/binNMU).
  * Standards-Version bumped to 3.7.2.

  [Library fixes, debian/rules]
  * Added a call to `chrpath' on a .so file declaring a rpath on /usr/lib and
    added also a build dependency on this package.
  * Added the `/usr/lib/libOgrePlatform.so' in debian/libogre-dev.install so
    that it is shipped as well as `/usr/lib/libCEGUIOgreRenderer.so' is, and
    thus removed from debian/libogre12.install.
    TODO: Check that nothing is broken this way!
  * Removed unneeded call to libtool_clean.sh and removed that script since
    it's not longer needed.
  * Deleted (unused) library version declarations.

  [Lintian overrides]
  * Added lintian overrides about the soname issues: libOgreMainNNN is the
    library from which we take the SONAME. The other looks like internal and
    haven't change for a while. If they do, we'll consider building separate
    packages for them. The overrides are documented in the following file
    debian/libogre12.lintian-overrides.
    Updated libogre12.{dirs,install} accordingly.
  * Added lintian overrides to the blender-ogrexml package about the
    unusual-for-lintian but usual-for-blender interpreter (#!BPY).
    Updated blender-ogrexml.{dirs,install} accordingly.
 
  [Documentation]
  * Added `elinks' to Build-Depends, so that a proper changelog and other
    useful documentation can be generated from the HTML files.  Maybe one
    could want to use alternatives, but I'm not sure it's really useful. About
    the choice of elinks, it looks like quite well maintained.
  * Rewritten the debian/rules to put the documentation in order (e.g. a html/
    folder containing all HTML documentation), plain text files when HTML is
    not needed, etc.
  * Added an annotation in the README.Debian file of libogre-dev about the
    ``upcoming 1.0'' release. TODO: Update and rewrite that part.

 -- Cyril Brulebois <cyril.brulebois@enst-bretagne.fr>  Thu, 16 Nov 2006 21:16:42 +0000

ogre (1.0.6-1.4) unstable; urgency=low

  * NMU as part of the GCC 4.1 transition.
  * patches/10_gcc_4.1_mips: Don't use "mips" as a variable name.  Thanks
    to Brian M. Carlson for the patch. (Closes: #358221)

 -- Martin Michlmayr <tbm@cyrius.com>  Fri, 26 May 2006 20:11:18 +0200

ogre (1.0.6-1.3) unstable; urgency=high

  * Non-maintainer upload.
  * Now really fix FTBFS with g++ 4.1 (Closes: #356442).

 -- Luk Claes <luk@debian.org>  Mon, 20 Mar 2006 17:59:01 +0100

ogre (1.0.6-1.2) unstable; urgency=high

  * Non-maintainer upload.
  * Fix dependency lines by adding missing commas (Closes: #352039).
  * Fix FTBFS with g++ 4.1 (Closes: #356442).

 -- Luk Claes <luk@debian.org>  Thu, 16 Mar 2006 19:44:47 +0100

ogre (1.0.6-1.1) unstable; urgency=low

  * Non-maintainer upload.
  * Replace build-dependency on xlibs-dev with an explicit build-dependency
    on each required package. (Closes: #346919)
  * Give correct binary package name to dh_compress; patch from Andreas
    Jochens. (Closes: #343239)

 -- Steinar H. Gunderson <sesse@debian.org>  Sun, 22 Jan 2006 22:41:23 +0100

ogre (1.0.6-1) unstable; urgency=low

  * New upstream release.
  * Removed patch 07_ogremain_map (--link-script reoved upstream.)
  * libstdc++ allocator change rename done (Closes: 339235).
  * Now depends on last version of runtime and development libraries
    available in unstable (Closes: #337524).
  * Moved the compileall.sh script to libogre-dev.
  * Now compress changelog.Debian in libogre-dbg.
  * Added 08_fix_soname to resolve upstream problem with soname
    of libOgreMain (sonames will be rearranged in 1.0.7 to be
    right again.)

 -- Federico Di Gregorio <fog@debian.org>  Wed, 07 Dec 2005 16:46:59 +0100

ogre (1.0.5-1) unstable; urgency=low

  * New upstream release.
  * Updated patch 07_ogremain_map to just remove the --link-script option.

 -- Federico Di Gregorio <fog@debian.org>  Sun,  2 Oct 2005 19:07:07 +0200

ogre (1.0.4-2) unstable; urgency=low

  * Added libtiff4-dev to libogre-dev dependencies (Closes: #320595).
  * Removed OgreMain/src/ogremain.map to avoid gcc 4 segfaults
    (Closes: #326652):

 -- Federico Di Gregorio <fog@debian.org>  Sun,  4 Sep 2005 22:09:44 +0200

ogre (1.0.4-1) unstable; urgency=low

  * New upstream release.
  * Dependencies (even generated ones) are now aligned with dependencies
    of other -c2 packages (Closes: #320595).
  * Added temporary fix (patch 07_ogremain_map) for gcc 4.0 STL-related
    problems.

 -- Federico Di Gregorio <fog@debian.org>  Sat, 27 Aug 2005 23:13:42 +0200

ogre (1.0.3-2) unstable; urgency=low

  * Now all required C++ libraries hopefullt c2 versions (Closes: #318943,
    #320595).
  * Removed from Build-depends: doxygen. 
  * Added to Build-depends: libxxf86vm-dev.
  * Using automake and autoheader 1.9 explicitly.
  * Re-upload of the upstrea source (first upload, associated to 1.0.3-1
    was completely wrong.)

 -- Federico Di Gregorio <fog@debian.org>  Tue,  2 Aug 2005 23:27:30 +0200

ogre (1.0.3-1) unstable; urgency=low
  
  * New upstream release (Closes: #314490).
  * Removing two debian-specific patches:
    04_enable_rtti - rtti re-enabled upstream
    05_FTBFS - changes incorporated upstream
    06_OpenEXR - configure option fixed upstream
  * Building with gcc 4.

 -- Federico Di Gregorio <fog@debian.org>  Mon, 11 Jul 2005 10:34:40 +0200

ogre (1.0.2-1) unstable; urgency=low

  * New upstream release.
  * Added dependencies to libogre-dev.
  * Removed removal of RTTI from Linux build (i.e., we build with RTTI
    enabled.)
  * Build tested with preliminary Xorg packages; Build-depends will
    need the following additions: libxxf86vm-dev.
    
 -- Federico Di Gregorio <fog@debian.org>  Thu,  2 Jun 2005 17:27:57 +0200

ogre (1.0.1-2) unstable; urgency=low

  * Rebuilt with correct libc6.

 -- Federico Di Gregorio <fog@debian.org>  Mon, 18 Apr 2005 09:57:24 +0200

ogre (1.0.1-1) unstable; urgency=low

  * New upstream release.
  * Added Build-depends on libcegui-mk2-dev (Closes: #302893).
  * Added Build-depends on libxerces26-dev.
  * Applied patch from bug #304338 to fix build problems on 64 bit
    architectures; not applied the part that defined GCC_3_1 and EXT_HASH
    because Ogre 1.0.1 does not need it anymore; closes: 304338.

 -- Federico Di Gregorio <fog@debian.org>  Sat, 16 Apr 2005 00:45:34 +0200

ogre (1.0.0-4) unstable; urgency=low

  * Renamed some of the patches.
  * Added patch 04_pyogre to enable pyogre builds (but not yet applied)
  * Added buildall.sh script to build all Samples in a pristine Ogre
    distribution (we can't distribute Samples for license problems.)
  
 -- Federico Di Gregorio <fog@debian.org>  Tue, 29 Mar 2005 16:00:21 +0200
  
ogre (1.0.0-3) unstable; urgency=low

  * Enabled CEGUI renderer build.
  
 -- Federico Di Gregorio <fog@debian.org>  Sun, 13 Mar 2005 12:19:35 +0100
  
ogre (1.0.0-2) unstable; urgency=low

  * Added missing Build-Depends on libzzip-dev.
  * Added Scripts/m4 to aclocal include path.
  
 -- Federico Di Gregorio <fog@debian.org>  Sun,  6 Mar 2005 11:45:18 +0100
  
ogre (1.0.0-1) unstable; urgency=low

  * New upstream release (Closes: #296972).
  * Enabled OpenEXR plugin (added libopenexr-dev to Build-Depends.)
  * OgreLightwaveConverter still does not build.
  * Upstream bumped up soname: libogre4 -> libogre5.

 -- Federico Di Gregorio <fog@debian.org>  Sun, 27 Feb 2005 12:52:05 +0100

ogre (0.99.0rc1-1) unstable; urgency=low

  * New upstream release (1.0.0RC1).
  * Changed some debian-specific patches:
    10_dont_build_samples: removed Cg part, we now use --disable-cg
    20_fix_plugins: removed libtool stuff (was taken from HEAD, now
      integrated into 1.0.0)
    30_ogre_to_OGRE: just renamed to better explain what it does.
  * Temporarily disabled OgreLightwaveConverter (does not build in RC1).

 -- Federico Di Gregorio <fog@debian.org>  Sat, 19 Feb 2005 14:51:48 +0100

ogre (0.15.2-1) unstable; urgency=low

  * New upstream release.
  * libtool-clean.sh executed by /bin/sh should fix some autobuild
    problems (closes: #290380).

 -- Federico Di Gregorio <fog@debian.org>  Fri, 14 Jan 2005 19:12:47 +0100

ogre (0.15.1-9) unstable; urgency=low

  * Added Suggest: ogre-doc to libogredev package.
  * Added back libsdl1.2-dev because the ./configure script need
    AM_SDL_PATH anyway (probably patching configure.in would be a better
    solution but this quick fix works for sure.)
  * Modified "proprietary" into "native" in the ogre-tools package
    Description field. (closes: #289634)

 -- Federico Di Gregorio <fog@debian.org>  Tue, 11 Jan 2005 02:20:21 +0100

ogre (0.15.1-8) unstable; urgency=low

  * Changed platform and GL support from SDL to GLX: only GLX has support
    for hardware render-to-texture right now. Also we get a nice graphical
    configuration panel without the need for gtk.
  * Removed Build-depends on libsdl-1.2-dev.
  * Added Build-depends on libxaw7-dev.

 -- Federico Di Gregorio <fog@debian.org>  Thu,  6 Jan 2005 13:45:40 +0100

ogre (0.15.1-7) unstable; urgency=low

  * Added debugging libraries (libogre4-dbg)
  * Added section for source package.
  * Better sections for other packages.

 -- Federico Di Gregorio <fog@debian.org>  Sun,  2 Jan 2005 17:28:21 +0100

ogre (0.15.1-6) unstable; urgency=low

  * update-ogre-plugins now does not try to add .dpkg-XXX files as plugins.
  * Added a README.Debian for blender-ogrexml explaining how to make the
    export plugin available.

 -- Federico Di Gregorio <fog@debian.org>  Fri, 31 Dec 2004 14:29:13 +0100

ogre (0.15.1-5) unstable; urgency=low

  * Added update-ogre-plugins binary to the libogre4 package.
  * New plugins.cfg configuration file to go with update-ogre-plugins.
  * Removed dependency on springgraph, we now use prebuilt documentation.
  * Cleanup SDL cruft off all .la generated files or programs using libtool
    won't be able to link with Ogre untill libSDL.la is fixed.
  * Added Build-depends on xlibs-dev.

 -- Federico Di Gregorio <fog@debian.org>  Sat, 18 Dec 2004 22:42:32 +0100

ogre (0.15.1-4) unstable; urgency=low

  * reverted back ogre to OGRE for 0.15.1 compatibility.
  * added patch 30_OGRE to work some configure magic and use OGRE for
    @PACKAGE@.

 -- Federico Di Gregorio <fog@debian.org>  Tue, 14 Dec 2004 12:15:50 +0100

ogre (0.15.1-3) unstable; urgency=low

  * Changed /etc/OGRE to /etc/ogre to mimic the /usr/lib/OGRE change.
  * libogre4.install: now plugins are in /usr/lib/ogre.
  * Readme.html is installed in libogre4 too.
  * Added README.Debian to the libogre-dev package.

 -- Federico Di Gregorio <fog@debian.org>  Tue, 14 Dec 2004 08:04:34 +0100

ogre (0.15.1-2) unstable; urgency=low

  * Splitted samples and Cg plugin in their own ogre-nonfree source package.
  * Fixed path in plugins.cfg.
  * Added Build-depends on pkg-config, springgraph.
  * Integrated patch from HEAD to build plugins using -module and
    -avoid-version (that removes lots of lintian errors.)
  * This release will probably go to unstable.

 -- Federico Di Gregorio <fog@debian.org>  Thu,  9 Dec 2004 23:08:08 +0100

ogre (0.15.1-1) unstable; urgency=low

  * New upstream release.
  * With the new configure switch patch 001_cg is no longer necessary.
  
 -- Federico Di Gregorio <fog@debian.org>  Wed,  1 Dec 2004 19:00:01 +0100

ogre (0.15.0-4) unstable; urgency=low

  * Added the preliminary ogre-samples package.
  * ogre-doc and blender-ogrexml architecture switched from any to all.
  * Switched to the dbs to include the pristing bzipped tarball.
  * Better package descriptions.
  * Fixed error in debian/rules (config.status should depend on
    configure.in)
  * Removed dh_compress call when building ogre-doc, we want all
    the documentation to be readily accessible in a -doc package.
  * Include pre-converted Cg fragment and vertex programs, to avoid 
    problems with Cg compiler and libraries being non free.

 -- Federico Di Gregorio <fog@debian.org>  Mon, 22 Nov 2004 20:00:14 +0100

ogre (0.15.0-3) unstable; urgency=low
  
  * Applied patch from Moritz Muehlenhoff to fix terrain scene
    manager (change is already in upstream CVS.)

 -- Federico Di Gregorio <fog@debian.org>  Mon,  9 Nov 2004 23:12:34 +0200

ogre (0.15.0-2) unstable; urgency=low

  * Added detailed debian/copyright file by Moritz Muehlenhoff.
  * Added missing build-depends on autotools.

 -- Federico Di Gregorio <fog@debian.org>  Mon,  1 Nov 2004 16:34:03 +0200

ogre (0.15.0-1) unstable; urgency=low

  * New upstream version.
  
 -- Federico Di Gregorio <fog@initd.org>  Mon, 25 Oct 2004 12:15:08 +0200
 
ogre (0.14.1.p1.cvs.20041005-1) unstable; urgency=low
  
  * New CVS snapshot.

 -- Federico Di Gregorio <fog@initd.org>  Tue,  5 Oct 2004 23:25:47 +0200

ogre (0.14.1.p1.cvs20040919-1) unstable; urgency=low

  * New upstream release.
  * Switched to building CVS releases.
  * Now all non-free media files are stripped from the source package too.
  * All samples removed (they won't work anyway without media.)

 -- Federico Di Gregorio <fog@initd.org>  Wed, 29 Sep 2004 12:01:13 +0200

ogre (0.14.1.p1-1) unstable; urgency=low

  * Initial Release.

 -- Federico Di Gregorio <fog@initd.org>  Mon, 20 Sep 2004 23:04:34 +0200