File: ksimus-boolean_0.3.6-12_sid32.buildlog

package info (click to toggle)
collab-qa-tools 0.2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 16,668 kB
  • ctags: 247
  • sloc: ruby: 3,432; makefile: 2
file content (1448 lines) | stat: -rw-r--r-- 95,151 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
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
DC-Build-Header: ksimus-boolean 0.3.6-12 / Wed Feb 13 02:32:26 +0100 2008
Automatic build of ksimus-boolean_0.3.6-12 on bordereau-85.bordeaux.grid5000.fr by sbuild/amd64 0.57.0
Build started at 20080213-0232
******************************************************************************
Failed to open ./ksimus-boolean_0.3.6-12.dsc
Checking available source versions...
Fetching source files...
Reading package lists...
Building dependency tree...
Reading state information...
Need to get 638kB of source archives.
Get:1 http://idpot.grenoble.grid5000.fr sid/main ksimus-boolean 0.3.6-12 (dsc) [719B]
Get:2 http://idpot.grenoble.grid5000.fr sid/main ksimus-boolean 0.3.6-12 (tar) [628kB]
Get:3 http://idpot.grenoble.grid5000.fr sid/main ksimus-boolean 0.3.6-12 (diff) [9258B]
Fetched 638kB in 0s (1539kB/s)
Download complete and in download only mode
** Using build dependencies supplied by package:
Build-Depends: debhelper (>> 4.0.0), coreutils (>= 4.5.1), ksimus-dev (>= 0.3.6-2-7), ksimus-dev (<< 0.3.6.0), libtool, automake1.7, autoconf, autotools-dev
Checking for already installed source dependencies...
debhelper: missing
Using default version 6.0.5
coreutils: already installed (6.10-3 >= 4.5.1 is satisfied)
ksimus-dev: missing
Using default version 0.3.6-2-14
ksimus-dev: missing
Using default version 0.3.6-2-14
libtool: missing
automake1.7: missing
autoconf: missing
autotools-dev: missing
Checking for source dependency conflicts...
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  bsdmainutils comerr-dev defoma esound-common file fontconfig
  fontconfig-config gettext gettext-base groff-base hicolor-icon-theme hspell
  html2text intltool-debian kdelibs-data kdelibs4-dev kdelibs4c2a ksimus
  libacl1-dev libart-2.0-2 libart-2.0-dev libarts1-dev libarts1c2a libartsc0
  libartsc0-dev libasound2 libasound2-dev libaspell-dev libaspell15
  libattr1-dev libaudio-dev libaudio2 libaudiofile-dev libaudiofile0
  libavahi-client-dev libavahi-client3 libavahi-common-data
  libavahi-common-dev libavahi-common3 libavahi-qt3-1 libavahi-qt3-dev
  libavc1394-0 libbz2-dev libcupsys2 libcupsys2-dev libdbus-1-3 libdbus-1-dev
  libdrm2 libesd0 libesd0-dev libexpat1 libexpat1-dev libfam-dev libfam0
  libfontconfig1 libfontconfig1-dev libfreebob0 libfreetype6 libfreetype6-dev
  libgcrypt11-dev libgl1-mesa-dev libgl1-mesa-glx libglib2.0-0 libglib2.0-dev
  libglu1-mesa libglu1-mesa-dev libgnutls-dev libgomp1 libgpg-error-dev
  libice-dev libice6 libidn11 libidn11-dev libiec61883-0 libjack-dev libjack0
  libjack0.100.0-dev libjasper-dev libjasper1 libjpeg62 libjpeg62-dev
  libkadm55 libkeyutils1 libkrb5-dev libkrb53 liblcms1 liblcms1-dev libltdl3
  liblua50 liblua50-dev liblualib50 liblualib50-dev libmad0 libmad0-dev
  libmagic1 libmng-dev libmng1 libnewt0.52 libogg-dev libogg0 libopencdk10-dev
  libopenexr-dev libopenexr2ldbl libpcre3 libpcre3-dev libpcrecpp0 libpng12-0
  libpng12-dev libpopt0 libqt3-headers libqt3-mt libqt3-mt-dev libraw1394-8
  libsasl2-dev libsasl2-modules libsm-dev libsm6 libssl-dev libssl0.9.8
  libtasn1-3-dev libtiff4 libtiff4-dev libtiffxx0c2 libvorbis-dev libvorbis0a
  libvorbisenc2 libvorbisfile3 libx11-6 libx11-data libx11-dev libxau-dev
  libxau6 libxaw7 libxcursor-dev libxcursor1 libxdamage1 libxdmcp-dev
  libxdmcp6 libxext-dev libxext6 libxfixes-dev libxfixes3 libxft-dev libxft2
  libxi-dev libxi6 libxinerama-dev libxinerama1 libxml2 libxml2-dev
  libxml2-utils libxmu-dev libxmu-headers libxmu6 libxmuu1 libxpm4
  libxrandr-dev libxrandr2 libxrender-dev libxrender1 libxslt1-dev libxslt1.1
  libxt-dev libxt6 libxtrap6 libxxf86misc1 libxxf86vm1 lua50 m4 man-db
  menu-xdg mesa-common-dev pkg-config po-debconf qt3-dev-tools ttf-dejavu
  ttf-dejavu-core ttf-dejavu-extra ucf whiptail x11-common x11-xserver-utils
  x11proto-core-dev x11proto-fixes-dev x11proto-input-dev x11proto-kb-dev
  x11proto-randr-dev x11proto-render-dev x11proto-xext-dev
  x11proto-xinerama-dev xauth xtrans-dev zlib1g-dev
Suggested packages:
  autobook autoconf-archive autoconf-doc autoconf2.13 gnu-standards wamerican
  wordlist whois vacation doc-base dh-make defoma-doc dfontmgr psfontmgr
  x-ttcidfont-conf cvs gettext-doc groff fam perl-suid libasound2-plugins
  libasound2-doc aspell-doc aspell nas cupsys-common esound libgcrypt11-doc
  libglib2.0-doc gnutls-bin gnutls-doc guile-gnutls jackd libjasper-runtime
  krb5-doc krb5-user liblcms-utils libqt3-mt-mysql libqt3-mt-odbc
  libqt3-mt-psql libqt3-i18n qt3-doc libraw1394-doc
  libsasl2-modules-gssapi-mit libsasl2-modules-gssapi-heimdal
  libsasl2-modules-ldap libsasl2-modules-otp libsasl2-modules-sql g77
  fortran77-compiler gcj libtool-doc www-browser pdksh
Recommended packages:
  automake automaken libft-perl curl wget lynx ksimus-boolean
  ksimus-datarecorder ksimus-floatingpoint libarts1-akode aspell-en
  aspell-dictionary aspell6a-dictionary dbus esound-clients libglib2.0-data
  libfribidi0 libqt3-compat-headers libltdl3-dev xml-core menu
  libcompress-zlib-perl libmail-box-perl libmail-sendmail-perl debconf-utils
The following NEW packages will be installed:
  autoconf automake1.7 autotools-dev bsdmainutils comerr-dev debhelper defoma
  esound-common file fontconfig fontconfig-config gettext gettext-base
  groff-base hicolor-icon-theme hspell html2text intltool-debian kdelibs-data
  kdelibs4-dev kdelibs4c2a ksimus ksimus-dev libacl1-dev libart-2.0-2
  libart-2.0-dev libarts1-dev libarts1c2a libartsc0 libartsc0-dev libasound2
  libasound2-dev libaspell-dev libaspell15 libattr1-dev libaudio-dev libaudio2
  libaudiofile-dev libaudiofile0 libavahi-client-dev libavahi-client3
  libavahi-common-data libavahi-common-dev libavahi-common3 libavahi-qt3-1
  libavahi-qt3-dev libavc1394-0 libbz2-dev libcupsys2 libcupsys2-dev
  libdbus-1-3 libdbus-1-dev libdrm2 libesd0 libesd0-dev libexpat1
  libexpat1-dev libfam-dev libfam0 libfontconfig1 libfontconfig1-dev
  libfreebob0 libfreetype6 libfreetype6-dev libgcrypt11-dev libgl1-mesa-dev
  libgl1-mesa-glx libglib2.0-0 libglib2.0-dev libglu1-mesa libglu1-mesa-dev
  libgnutls-dev libgomp1 libgpg-error-dev libice-dev libice6 libidn11
  libidn11-dev libiec61883-0 libjack-dev libjack0 libjack0.100.0-dev
  libjasper-dev libjasper1 libjpeg62 libjpeg62-dev libkadm55 libkeyutils1
  libkrb5-dev libkrb53 liblcms1 liblcms1-dev libltdl3 liblua50 liblua50-dev
  liblualib50 liblualib50-dev libmad0 libmad0-dev libmagic1 libmng-dev libmng1
  libnewt0.52 libogg-dev libogg0 libopencdk10-dev libopenexr-dev
  libopenexr2ldbl libpcre3 libpcre3-dev libpcrecpp0 libpng12-0 libpng12-dev
  libpopt0 libqt3-headers libqt3-mt libqt3-mt-dev libraw1394-8 libsasl2-dev
  libsasl2-modules libsm-dev libsm6 libssl-dev libssl0.9.8 libtasn1-3-dev
  libtiff4 libtiff4-dev libtiffxx0c2 libtool libvorbis-dev libvorbis0a
  libvorbisenc2 libvorbisfile3 libx11-6 libx11-data libx11-dev libxau-dev
  libxau6 libxaw7 libxcursor-dev libxcursor1 libxdamage1 libxdmcp-dev
  libxdmcp6 libxext-dev libxext6 libxfixes-dev libxfixes3 libxft-dev libxft2
  libxi-dev libxi6 libxinerama-dev libxinerama1 libxml2 libxml2-dev
  libxml2-utils libxmu-dev libxmu-headers libxmu6 libxmuu1 libxpm4
  libxrandr-dev libxrandr2 libxrender-dev libxrender1 libxslt1-dev libxslt1.1
  libxt-dev libxt6 libxtrap6 libxxf86misc1 libxxf86vm1 lua50 m4 man-db
  menu-xdg mesa-common-dev pkg-config po-debconf qt3-dev-tools ttf-dejavu
  ttf-dejavu-core ttf-dejavu-extra ucf whiptail x11-common x11-xserver-utils
  x11proto-core-dev x11proto-fixes-dev x11proto-input-dev x11proto-kb-dev
  x11proto-randr-dev x11proto-render-dev x11proto-xext-dev
  x11proto-xinerama-dev xauth xtrans-dev zlib1g-dev
0 upgraded, 199 newly installed, 0 to remove and 0 not upgraded.
Need to get 70.9MB of archives.
After this operation, 223MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  x11-common libice6 x11proto-core-dev libice-dev libsm6 libsm-dev libxau6
  libxdmcp6 libx11-data libx11-6 libxau-dev libxdmcp-dev libxext6
  x11proto-input-dev x11proto-xext-dev libxext-dev x11proto-kb-dev xtrans-dev
  libx11-dev libxfixes3 libxrender1 libxcursor1 x11proto-render-dev
  libxrender-dev x11proto-fixes-dev libxfixes-dev libxcursor-dev libexpat1
  libfreetype6 ucf libmagic1 file libnewt0.52 libpopt0 whiptail defoma
  ttf-dejavu-core ttf-dejavu-extra ttf-dejavu fontconfig-config libfontconfig1
  libxft2 libexpat1-dev zlib1g-dev libfreetype6-dev libpcre3 libglib2.0-0
  pkg-config libfontconfig1-dev libxft-dev libxi6 libxi-dev libxinerama1
  x11proto-xinerama-dev libxinerama-dev libxmu-headers libxrandr2
  x11proto-randr-dev libxrandr-dev libxt6 libxt-dev libxmu6 libxpm4 libxaw7
  libxmuu1 libxtrap6 libxxf86misc1 libxxf86vm1 x11-xserver-utils xauth
  bsdmainutils groff-base libssl0.9.8 man-db gettext-base libidn11
  libkeyutils1 libkrb53 m4 autoconf autotools-dev automake1.7 html2text
  libgomp1 gettext intltool-debian po-debconf debhelper esound-common
  fontconfig hicolor-icon-theme hspell kdelibs-data libart-2.0-2 libartsc0
  libasound2 libaudio2 libaudiofile0 libesd0 libraw1394-8 libavc1394-0
  libiec61883-0 libxml2 libfreebob0 libjack0 libmad0 libogg0 libpng12-0
  libjpeg62 liblcms1 libmng1 libqt3-mt libvorbis0a libvorbisenc2
  libvorbisfile3 libarts1c2a libaspell15 libavahi-common-data libavahi-common3
  libdbus-1-3 libavahi-client3 libavahi-qt3-1 libcupsys2 libfam0 libjasper1
  liblua50 liblualib50 libopenexr2ldbl libtiff4 libxslt1.1 menu-xdg
  kdelibs4c2a libattr1-dev libacl1-dev libart-2.0-dev libglib2.0-dev
  libartsc0-dev libasound2-dev libaudio-dev libaudiofile-dev libesd0-dev
  libjack-dev libjack0.100.0-dev libmad0-dev libogg-dev libgpg-error-dev
  libgcrypt11-dev libopencdk10-dev libtasn1-3-dev libgnutls-dev libkadm55
  comerr-dev libkrb5-dev libcupsys2-dev libdrm2 libxdamage1 libgl1-mesa-glx
  mesa-common-dev libgl1-mesa-dev libglu1-mesa libglu1-mesa-dev libjpeg62-dev
  liblcms1-dev libmng-dev libpng12-dev libqt3-headers libxmu-dev qt3-dev-tools
  libqt3-mt-dev libvorbis-dev libarts1-dev libaspell-dev libavahi-common-dev
  libdbus-1-dev libavahi-client-dev libavahi-qt3-dev libbz2-dev libfam-dev
  libidn11-dev libjasper-dev lua50 liblua50-dev liblualib50-dev libopenexr-dev
  libpcrecpp0 libpcre3-dev libsasl2-modules libsasl2-dev libssl-dev
  libtiffxx0c2 libtiff4-dev libxml2-dev libxml2-utils libxslt1-dev
  kdelibs4-dev libltdl3 ksimus ksimus-dev libtool
Authentication warning overridden.
Get:1 http://idpot.grenoble.grid5000.fr sid/main x11-common 1:7.3+10 [345kB]
Get:2 http://idpot.grenoble.grid5000.fr sid/main libice6 2:1.0.4-1 [46.6kB]
Get:3 http://idpot.grenoble.grid5000.fr sid/main x11proto-core-dev 7.0.11-1 [88.9kB]
Get:4 http://idpot.grenoble.grid5000.fr sid/main libice-dev 2:1.0.4-1 [55.1kB]
Get:5 http://idpot.grenoble.grid5000.fr sid/main libsm6 2:1.0.3-1+b1 [21.8kB]
Get:6 http://idpot.grenoble.grid5000.fr sid/main libsm-dev 2:1.0.3-1+b1 [24.3kB]
Get:7 http://idpot.grenoble.grid5000.fr sid/main libxau6 1:1.0.3-2 [11.7kB]
Get:8 http://idpot.grenoble.grid5000.fr sid/main libxdmcp6 1:1.0.2-2 [16.7kB]
Get:9 http://idpot.grenoble.grid5000.fr sid/main libx11-data 2:1.0.3-7 [157kB]
Get:10 http://idpot.grenoble.grid5000.fr sid/main libx11-6 2:1.0.3-7 [567kB]
Get:11 http://idpot.grenoble.grid5000.fr sid/main libxau-dev 1:1.0.3-2 [15.4kB]
Get:12 http://idpot.grenoble.grid5000.fr sid/main libxdmcp-dev 1:1.0.2-2 [19.8kB]
Get:13 http://idpot.grenoble.grid5000.fr sid/main libxext6 1:1.0.3-2 [30.1kB]
Get:14 http://idpot.grenoble.grid5000.fr sid/main x11proto-input-dev 1.4.2-1 [15.6kB]
Get:15 http://idpot.grenoble.grid5000.fr sid/main x11proto-xext-dev 7.0.2-5 [41.7kB]
Get:16 http://idpot.grenoble.grid5000.fr sid/main libxext-dev 1:1.0.3-2 [81.5kB]
Get:17 http://idpot.grenoble.grid5000.fr sid/main x11proto-kb-dev 1.0.3-2 [26.8kB]
Get:18 http://idpot.grenoble.grid5000.fr sid/main xtrans-dev 1.0.4-1 [70.4kB]
Get:19 http://idpot.grenoble.grid5000.fr sid/main libx11-dev 2:1.0.3-7 [1269kB]
Get:20 http://idpot.grenoble.grid5000.fr sid/main libxfixes3 1:4.0.3-2 [9572B]
Get:21 http://idpot.grenoble.grid5000.fr sid/main libxrender1 1:0.9.4-1 [25.4kB]
Get:22 http://idpot.grenoble.grid5000.fr sid/main libxcursor1 1:1.1.9-1 [24.0kB]
Get:23 http://idpot.grenoble.grid5000.fr sid/main x11proto-render-dev 2:0.9.3-2 [7062B]
Get:24 http://idpot.grenoble.grid5000.fr sid/main libxrender-dev 1:0.9.4-1 [28.5kB]
Get:25 http://idpot.grenoble.grid5000.fr sid/main x11proto-fixes-dev 4.0-2 [5640B]
Get:26 http://idpot.grenoble.grid5000.fr sid/main libxfixes-dev 1:4.0.3-2 [12.1kB]
Get:27 http://idpot.grenoble.grid5000.fr sid/main libxcursor-dev 1:1.1.9-1 [30.8kB]
Get:28 http://idpot.grenoble.grid5000.fr sid/main libexpat1 1.95.8-4 [63.9kB]
Get:29 http://idpot.grenoble.grid5000.fr sid/main libfreetype6 2.3.5-1+b1 [347kB]
Get:30 http://idpot.grenoble.grid5000.fr sid/main ucf 3.004 [62.9kB]
Get:31 http://idpot.grenoble.grid5000.fr sid/main libmagic1 4.23-2 [342kB]
Get:32 http://idpot.grenoble.grid5000.fr sid/main file 4.23-2 [41.0kB]
Get:33 http://idpot.grenoble.grid5000.fr sid/main libnewt0.52 0.52.2-11.1 [66.2kB]
Get:34 http://idpot.grenoble.grid5000.fr sid/main libpopt0 1.10-3 [33.1kB]
Get:35 http://idpot.grenoble.grid5000.fr sid/main whiptail 0.52.2-11.1 [34.7kB]
Get:36 http://idpot.grenoble.grid5000.fr sid/main defoma 0.11.10-0.2 [101kB]
Get:37 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu-core 2.23-1 [1347kB]
Get:38 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu-extra 2.23-1 [2949kB]
Get:39 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu 2.23-1 [24.3kB]
Get:40 http://idpot.grenoble.grid5000.fr sid/main fontconfig-config 2.5.0-2 [179kB]
Get:41 http://idpot.grenoble.grid5000.fr sid/main libfontconfig1 2.5.0-2 [110kB]
Get:42 http://idpot.grenoble.grid5000.fr sid/main libxft2 2.1.12-2 [47.6kB]
Get:43 http://idpot.grenoble.grid5000.fr sid/main libexpat1-dev 1.95.8-4 [129kB]
Get:44 http://idpot.grenoble.grid5000.fr sid/main zlib1g-dev 1:1.2.3.3.dfsg-11 [157kB]
Get:45 http://idpot.grenoble.grid5000.fr sid/main libfreetype6-dev 2.3.5-1+b1 [662kB]
Get:46 http://idpot.grenoble.grid5000.fr sid/main libpcre3 7.6-1 [208kB]
Get:47 http://idpot.grenoble.grid5000.fr sid/main libglib2.0-0 2.14.6-1 [561kB]
Get:48 http://idpot.grenoble.grid5000.fr sid/main pkg-config 0.22-1 [52.2kB]
Get:49 http://idpot.grenoble.grid5000.fr sid/main libfontconfig1-dev 2.5.0-2 [595kB]
Get:50 http://idpot.grenoble.grid5000.fr sid/main libxft-dev 2.1.12-2 [61.3kB]
Get:51 http://idpot.grenoble.grid5000.fr sid/main libxi6 2:1.1.3-1 [24.6kB]
Get:52 http://idpot.grenoble.grid5000.fr sid/main libxi-dev 2:1.1.3-1 [69.0kB]
Get:53 http://idpot.grenoble.grid5000.fr sid/main libxinerama1 1:1.0.2-1 [9256B]
Get:54 http://idpot.grenoble.grid5000.fr sid/main x11proto-xinerama-dev 1.1.2-4 [5074B]
Get:55 http://idpot.grenoble.grid5000.fr sid/main libxinerama-dev 1:1.0.2-1 [10.8kB]
Get:56 http://idpot.grenoble.grid5000.fr sid/main libxmu-headers 2:1.0.4-1 [21.0kB]
Get:57 http://idpot.grenoble.grid5000.fr sid/main libxrandr2 2:1.2.2-1 [20.4kB]
Get:58 http://idpot.grenoble.grid5000.fr sid/main x11proto-randr-dev 1.2.1-2 [28.6kB]
Get:59 http://idpot.grenoble.grid5000.fr sid/main libxrandr-dev 2:1.2.2-1 [27.8kB]
Get:60 http://idpot.grenoble.grid5000.fr sid/main libxt6 1:1.0.5-3 [166kB]
Get:61 http://idpot.grenoble.grid5000.fr sid/main libxt-dev 1:1.0.5-3 [480kB]
Get:62 http://idpot.grenoble.grid5000.fr sid/main libxmu6 2:1.0.4-1 [51.1kB]
Get:63 http://idpot.grenoble.grid5000.fr sid/main libxpm4 1:3.5.7-1 [40.3kB]
Get:64 http://idpot.grenoble.grid5000.fr sid/main libxaw7 2:1.0.4-1 [186kB]
Get:65 http://idpot.grenoble.grid5000.fr sid/main libxmuu1 2:1.0.4-1 [13.2kB]
Get:66 http://idpot.grenoble.grid5000.fr sid/main libxtrap6 1:1.0.0-4 [16.6kB]
Get:67 http://idpot.grenoble.grid5000.fr sid/main libxxf86misc1 1:1.0.1-2 [7674B]
Get:68 http://idpot.grenoble.grid5000.fr sid/main libxxf86vm1 1:1.0.1-2 [9778B]
Get:69 http://idpot.grenoble.grid5000.fr sid/main x11-xserver-utils 7.3+2 [171kB]
Get:70 http://idpot.grenoble.grid5000.fr sid/main xauth 1:1.0.2-2 [29.7kB]
Get:71 http://idpot.grenoble.grid5000.fr sid/main bsdmainutils 6.1.10 [172kB]
Get:72 http://idpot.grenoble.grid5000.fr sid/main groff-base 1.18.1.1-16 [844kB]
Get:73 http://idpot.grenoble.grid5000.fr sid/main libssl0.9.8 0.9.8g-4 [2883kB]
Get:74 http://idpot.grenoble.grid5000.fr sid/main man-db 2.5.1-2 [997kB]
Get:75 http://idpot.grenoble.grid5000.fr sid/main gettext-base 0.17-2 [123kB]
Get:76 http://idpot.grenoble.grid5000.fr sid/main libidn11 1.4-1 [138kB]
Get:77 http://idpot.grenoble.grid5000.fr sid/main libkeyutils1 1.2-6 [5206B]
Get:78 http://idpot.grenoble.grid5000.fr sid/main libkrb53 1.6.dfsg.3~beta1-2 [462kB]
Get:79 http://idpot.grenoble.grid5000.fr sid/main m4 1.4.10-1 [206kB]
Get:80 http://idpot.grenoble.grid5000.fr sid/main autoconf 2.61-6 [448kB]
Get:81 http://idpot.grenoble.grid5000.fr sid/main autotools-dev 20070725.1 [61.8kB]
Get:82 http://idpot.grenoble.grid5000.fr sid/main automake1.7 1.7.9-9 [391kB]
Get:83 http://idpot.grenoble.grid5000.fr sid/main html2text 1.3.2a-3 [98.9kB]
Get:84 http://idpot.grenoble.grid5000.fr sid/main libgomp1 4.3-20080202-1 [13.3kB]
Get:85 http://idpot.grenoble.grid5000.fr sid/main gettext 0.17-2 [2683kB]
Get:86 http://idpot.grenoble.grid5000.fr sid/main intltool-debian 0.35.0+20060710.1 [30.8kB]
Get:87 http://idpot.grenoble.grid5000.fr sid/main po-debconf 1.0.11 [231kB]
Get:88 http://idpot.grenoble.grid5000.fr sid/main debhelper 6.0.5 [519kB]
Get:89 http://idpot.grenoble.grid5000.fr sid/main esound-common 0.2.36-3 [38.2kB]
Get:90 http://idpot.grenoble.grid5000.fr sid/main fontconfig 2.5.0-2 [43.0kB]
Get:91 http://idpot.grenoble.grid5000.fr sid/main hicolor-icon-theme 0.10-1 [10.1kB]
Get:92 http://idpot.grenoble.grid5000.fr sid/main hspell 1.0-4 [568kB]
Get:93 http://idpot.grenoble.grid5000.fr sid/main kdelibs-data 4:3.5.8.dfsg.1-7 [8688kB]
Get:94 http://idpot.grenoble.grid5000.fr sid/main libart-2.0-2 2.3.20-1 [64.7kB]
Get:95 http://idpot.grenoble.grid5000.fr sid/main libartsc0 1.5.8-1 [14.7kB]
Get:96 http://idpot.grenoble.grid5000.fr sid/main libasound2 1.0.15-3 [362kB]
Get:97 http://idpot.grenoble.grid5000.fr sid/main libaudio2 1.9.1-1 [78.8kB]
Get:98 http://idpot.grenoble.grid5000.fr sid/main libaudiofile0 0.2.6-7 [76.4kB]
Get:99 http://idpot.grenoble.grid5000.fr sid/main libesd0 0.2.36-3 [18.9kB]
Get:100 http://idpot.grenoble.grid5000.fr sid/main libraw1394-8 1.3.0-2 [26.8kB]
Get:101 http://idpot.grenoble.grid5000.fr sid/main libavc1394-0 0.5.3-1+b1 [20.7kB]
Get:102 http://idpot.grenoble.grid5000.fr sid/main libiec61883-0 1.1.0-2 [31.5kB]
Get:103 http://idpot.grenoble.grid5000.fr sid/main libxml2 2.6.31.dfsg-1 [782kB]
Get:104 http://idpot.grenoble.grid5000.fr sid/main libfreebob0 1.0.7-1 [158kB]
Get:105 http://idpot.grenoble.grid5000.fr sid/main libjack0 0.109.2-1 [116kB]
Get:106 http://idpot.grenoble.grid5000.fr sid/main libmad0 0.15.1b-2.1 [74.8kB]
Get:107 http://idpot.grenoble.grid5000.fr sid/main libogg0 1.1.3-3 [14.1kB]
Get:108 http://idpot.grenoble.grid5000.fr sid/main libpng12-0 1.2.15~beta5-3 [187kB]
Get:109 http://idpot.grenoble.grid5000.fr sid/main libjpeg62 6b-14 [86.0kB]
Get:110 http://idpot.grenoble.grid5000.fr sid/main liblcms1 1.16-8 [97.2kB]
Get:111 http://idpot.grenoble.grid5000.fr sid/main libmng1 1.0.9-1 [189kB]
Get:112 http://idpot.grenoble.grid5000.fr sid/main libqt3-mt 3:3.3.8b-1 [3299kB]
Get:113 http://idpot.grenoble.grid5000.fr sid/main libvorbis0a 1.2.0.dfsg-3 [99.9kB]
Get:114 http://idpot.grenoble.grid5000.fr sid/main libvorbisenc2 1.2.0.dfsg-3 [76.8kB]
Get:115 http://idpot.grenoble.grid5000.fr sid/main libvorbisfile3 1.2.0.dfsg-3 [20.5kB]
Get:116 http://idpot.grenoble.grid5000.fr sid/main libarts1c2a 1.5.8-1 [1105kB]
Get:117 http://idpot.grenoble.grid5000.fr sid/main libaspell15 0.60.5-2 [635kB]
Get:118 http://idpot.grenoble.grid5000.fr sid/main libavahi-common-data 0.6.22-2 [98.7kB]
Get:119 http://idpot.grenoble.grid5000.fr sid/main libavahi-common3 0.6.22-2 [114kB]
Get:120 http://idpot.grenoble.grid5000.fr sid/main libdbus-1-3 1.1.2-1 [134kB]
Get:121 http://idpot.grenoble.grid5000.fr sid/main libavahi-client3 0.6.22-2 [118kB]
Get:122 http://idpot.grenoble.grid5000.fr sid/main libavahi-qt3-1 0.6.22-2 [102kB]
Get:123 http://idpot.grenoble.grid5000.fr sid/main libcupsys2 1.3.5-1+b1 [164kB]
Get:124 http://idpot.grenoble.grid5000.fr sid/main libfam0 2.7.0-13.1 [27.9kB]
Get:125 http://idpot.grenoble.grid5000.fr sid/main libjasper1 1.900.1-3 [142kB]
Get:126 http://idpot.grenoble.grid5000.fr sid/main liblua50 5.0.3-3 [48.7kB]
Get:127 http://idpot.grenoble.grid5000.fr sid/main liblualib50 5.0.3-3 [34.6kB]
Get:128 http://idpot.grenoble.grid5000.fr sid/main libopenexr2ldbl 1.2.2-4.4 [305kB]
Get:129 http://idpot.grenoble.grid5000.fr sid/main libtiff4 3.8.2-7 [483kB]
Get:130 http://idpot.grenoble.grid5000.fr sid/main libxslt1.1 1.1.22-1 [219kB]
Get:131 http://idpot.grenoble.grid5000.fr sid/main menu-xdg 0.3 [4720B]
Get:132 http://idpot.grenoble.grid5000.fr sid/main kdelibs4c2a 4:3.5.8.dfsg.1-7 [9813kB]
Get:133 http://idpot.grenoble.grid5000.fr sid/main libattr1-dev 1:2.4.39-1 [30.0kB]
Get:134 http://idpot.grenoble.grid5000.fr sid/main libacl1-dev 2.2.45-1 [76.2kB]
Get:135 http://idpot.grenoble.grid5000.fr sid/main libart-2.0-dev 2.3.20-1 [81.7kB]
Get:136 http://idpot.grenoble.grid5000.fr sid/main libglib2.0-dev 2.14.6-1 [569kB]
Get:137 http://idpot.grenoble.grid5000.fr sid/main libartsc0-dev 1.5.8-1 [20.8kB]
Get:138 http://idpot.grenoble.grid5000.fr sid/main libasound2-dev 1.0.15-3 [495kB]
Get:139 http://idpot.grenoble.grid5000.fr sid/main libaudio-dev 1.9.1-1 [503kB]
Get:140 http://idpot.grenoble.grid5000.fr sid/main libaudiofile-dev 0.2.6-7 [116kB]
Get:141 http://idpot.grenoble.grid5000.fr sid/main libesd0-dev 0.2.36-3 [23.7kB]
Get:142 http://idpot.grenoble.grid5000.fr sid/main libjack-dev 0.109.2-1 [161kB]
Get:143 http://idpot.grenoble.grid5000.fr sid/main libjack0.100.0-dev 0.109.2-1 [12.8kB]
Get:144 http://idpot.grenoble.grid5000.fr sid/main libmad0-dev 0.15.1b-2.1 [85.6kB]
Get:145 http://idpot.grenoble.grid5000.fr sid/main libogg-dev 1.1.3-3 [57.0kB]
Get:146 http://idpot.grenoble.grid5000.fr sid/main libgpg-error-dev 1.4-2 [33.6kB]
Get:147 http://idpot.grenoble.grid5000.fr sid/main libgcrypt11-dev 1.4.0-3 [319kB]
Get:148 http://idpot.grenoble.grid5000.fr sid/main libopencdk10-dev 0.6.6-1 [117kB]
Get:149 http://idpot.grenoble.grid5000.fr sid/main libtasn1-3-dev 1.3-1 [372kB]
Get:150 http://idpot.grenoble.grid5000.fr sid/main libgnutls-dev 2.2.1-3 [438kB]
Get:151 http://idpot.grenoble.grid5000.fr sid/main libkadm55 1.6.dfsg.3~beta1-2 [147kB]
Get:152 http://idpot.grenoble.grid5000.fr sid/main comerr-dev 2.1-1.40.6-1 [41.6kB]
Get:153 http://idpot.grenoble.grid5000.fr sid/main libkrb5-dev 1.6.dfsg.3~beta1-2 [88.6kB]
Get:154 http://idpot.grenoble.grid5000.fr sid/main libcupsys2-dev 1.3.5-1+b1 [142kB]
Get:155 http://idpot.grenoble.grid5000.fr sid/main libdrm2 2.3.0-4 [20.7kB]
Get:156 http://idpot.grenoble.grid5000.fr sid/main libxdamage1 1:1.1.1-3 [9804B]
Get:157 http://idpot.grenoble.grid5000.fr sid/main libgl1-mesa-glx 7.0.2-4 [148kB]
Get:158 http://idpot.grenoble.grid5000.fr sid/main mesa-common-dev 7.0.2-4 [182kB]
Get:159 http://idpot.grenoble.grid5000.fr sid/main libgl1-mesa-dev 7.0.2-4 [25.2kB]
Get:160 http://idpot.grenoble.grid5000.fr sid/main libglu1-mesa 7.0.2-4 [238kB]
Get:161 http://idpot.grenoble.grid5000.fr sid/main libglu1-mesa-dev 7.0.2-4 [256kB]
Get:162 http://idpot.grenoble.grid5000.fr sid/main libjpeg62-dev 6b-14 [186kB]
Get:163 http://idpot.grenoble.grid5000.fr sid/main liblcms1-dev 1.16-8 [619kB]
Get:164 http://idpot.grenoble.grid5000.fr sid/main libmng-dev 1.0.9-1 [285kB]
Get:165 http://idpot.grenoble.grid5000.fr sid/main libpng12-dev 1.2.15~beta5-3 [171kB]
Get:166 http://idpot.grenoble.grid5000.fr sid/main libqt3-headers 3:3.3.8b-1 [356kB]
Get:167 http://idpot.grenoble.grid5000.fr sid/main libxmu-dev 2:1.0.4-1 [54.5kB]
Get:168 http://idpot.grenoble.grid5000.fr sid/main qt3-dev-tools 3:3.3.8b-1 [1231kB]
Get:169 http://idpot.grenoble.grid5000.fr sid/main libqt3-mt-dev 3:3.3.8b-1 [48.7kB]
Get:170 http://idpot.grenoble.grid5000.fr sid/main libvorbis-dev 1.2.0.dfsg-3 [461kB]
Get:171 http://idpot.grenoble.grid5000.fr sid/main libarts1-dev 1.5.8-1 [1169kB]
Get:172 http://idpot.grenoble.grid5000.fr sid/main libaspell-dev 0.60.5-2 [49.0kB]
Get:173 http://idpot.grenoble.grid5000.fr sid/main libavahi-common-dev 0.6.22-2 [134kB]
Get:174 http://idpot.grenoble.grid5000.fr sid/main libdbus-1-dev 1.1.2-1 [222kB]
Get:175 http://idpot.grenoble.grid5000.fr sid/main libavahi-client-dev 0.6.22-2 [128kB]
Get:176 http://idpot.grenoble.grid5000.fr sid/main libavahi-qt3-dev 0.6.22-2 [102kB]
Get:177 http://idpot.grenoble.grid5000.fr sid/main libbz2-dev 1.0.4-3 [31.6kB]
Get:178 http://idpot.grenoble.grid5000.fr sid/main libfam-dev 2.7.0-13.1 [38.1kB]
Get:179 http://idpot.grenoble.grid5000.fr sid/main libidn11-dev 1.4-1 [589kB]
Get:180 http://idpot.grenoble.grid5000.fr sid/main libjasper-dev 1.900.1-3 [548kB]
Get:181 http://idpot.grenoble.grid5000.fr sid/main lua50 5.0.3-3 [25.6kB]
Get:182 http://idpot.grenoble.grid5000.fr sid/main liblua50-dev 5.0.3-3 [55.4kB]
Get:183 http://idpot.grenoble.grid5000.fr sid/main liblualib50-dev 5.0.3-3 [36.0kB]
Get:184 http://idpot.grenoble.grid5000.fr sid/main libopenexr-dev 1.2.2-4.4 [499kB]
Get:185 http://idpot.grenoble.grid5000.fr sid/main libpcrecpp0 7.6-1 [93.7kB]
Get:186 http://idpot.grenoble.grid5000.fr sid/main libpcre3-dev 7.6-1 [254kB]
Get:187 http://idpot.grenoble.grid5000.fr sid/main libsasl2-modules 2.1.22.dfsg1-17+b1 [145kB]
Get:188 http://idpot.grenoble.grid5000.fr sid/main libsasl2-dev 2.1.22.dfsg1-17+b1 [257kB]
Get:189 http://idpot.grenoble.grid5000.fr sid/main libssl-dev 0.9.8g-4 [2072kB]
Get:190 http://idpot.grenoble.grid5000.fr sid/main libtiffxx0c2 3.8.2-7 [5006B]
Get:191 http://idpot.grenoble.grid5000.fr sid/main libtiff4-dev 3.8.2-7 [233kB]
Get:192 http://idpot.grenoble.grid5000.fr sid/main libxml2-dev 2.6.31.dfsg-1 [673kB]
Get:193 http://idpot.grenoble.grid5000.fr sid/main libxml2-utils 2.6.31.dfsg-1 [33.9kB]
Get:194 http://idpot.grenoble.grid5000.fr sid/main libxslt1-dev 1.1.22-1 [595kB]
Get:195 http://idpot.grenoble.grid5000.fr sid/main kdelibs4-dev 4:3.5.8.dfsg.1-7 [1396kB]
Get:196 http://idpot.grenoble.grid5000.fr sid/main libltdl3 1.5.26-1 [177kB]
Get:197 http://idpot.grenoble.grid5000.fr sid/main ksimus 0.3.6-2-14 [994kB]
Get:198 http://idpot.grenoble.grid5000.fr sid/main ksimus-dev 0.3.6-2-14 [94.4kB]
Get:199 http://idpot.grenoble.grid5000.fr sid/main libtool 1.5.26-1 [339kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 70.9MB in 2s (29.6MB/s)
Selecting previously deselected package x11-common.
(Reading database ... 9173 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.3+10_i386.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.4-1_i386.deb) ...
Setting up x11-common (1:7.3+10) ...
Selecting previously deselected package x11proto-core-dev.
(Reading database ... 9211 files and directories currently installed.)
Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.11-1_all.deb) ...
Selecting previously deselected package libice-dev.
Unpacking libice-dev (from .../libice-dev_2%3a1.0.4-1_i386.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.0.3-1+b1_i386.deb) ...
Selecting previously deselected package libsm-dev.
Unpacking libsm-dev (from .../libsm-dev_2%3a1.0.3-1+b1_i386.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.3-2_i386.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-2_i386.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.0.3-7_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.0.3-7_i386.deb) ...
Selecting previously deselected package libxau-dev.
Unpacking libxau-dev (from .../libxau-dev_1%3a1.0.3-2_i386.deb) ...
Selecting previously deselected package libxdmcp-dev.
Unpacking libxdmcp-dev (from .../libxdmcp-dev_1%3a1.0.2-2_i386.deb) ...
Selecting previously deselected package libxext6.
Unpacking libxext6 (from .../libxext6_1%3a1.0.3-2_i386.deb) ...
Selecting previously deselected package x11proto-input-dev.
Unpacking x11proto-input-dev (from .../x11proto-input-dev_1.4.2-1_all.deb) ...
Selecting previously deselected package x11proto-xext-dev.
Unpacking x11proto-xext-dev (from .../x11proto-xext-dev_7.0.2-5_all.deb) ...
Selecting previously deselected package libxext-dev.
Unpacking libxext-dev (from .../libxext-dev_1%3a1.0.3-2_i386.deb) ...
Selecting previously deselected package x11proto-kb-dev.
Unpacking x11proto-kb-dev (from .../x11proto-kb-dev_1.0.3-2_all.deb) ...
Selecting previously deselected package xtrans-dev.
Unpacking xtrans-dev (from .../xtrans-dev_1.0.4-1_all.deb) ...
Selecting previously deselected package libx11-dev.
Unpacking libx11-dev (from .../libx11-dev_2%3a1.0.3-7_i386.deb) ...
Selecting previously deselected package libxfixes3.
Unpacking libxfixes3 (from .../libxfixes3_1%3a4.0.3-2_i386.deb) ...
Selecting previously deselected package libxrender1.
Unpacking libxrender1 (from .../libxrender1_1%3a0.9.4-1_i386.deb) ...
Selecting previously deselected package libxcursor1.
Unpacking libxcursor1 (from .../libxcursor1_1%3a1.1.9-1_i386.deb) ...
Selecting previously deselected package x11proto-render-dev.
Unpacking x11proto-render-dev (from .../x11proto-render-dev_2%3a0.9.3-2_all.deb) ...
Selecting previously deselected package libxrender-dev.
Unpacking libxrender-dev (from .../libxrender-dev_1%3a0.9.4-1_i386.deb) ...
Selecting previously deselected package x11proto-fixes-dev.
Unpacking x11proto-fixes-dev (from .../x11proto-fixes-dev_4.0-2_all.deb) ...
Selecting previously deselected package libxfixes-dev.
Unpacking libxfixes-dev (from .../libxfixes-dev_1%3a4.0.3-2_i386.deb) ...
Selecting previously deselected package libxcursor-dev.
Unpacking libxcursor-dev (from .../libxcursor-dev_1%3a1.1.9-1_i386.deb) ...
Selecting previously deselected package libexpat1.
Unpacking libexpat1 (from .../libexpat1_1.95.8-4_i386.deb) ...
Selecting previously deselected package libfreetype6.
Unpacking libfreetype6 (from .../libfreetype6_2.3.5-1+b1_i386.deb) ...
Selecting previously deselected package ucf.
Unpacking ucf (from .../apt/archives/ucf_3.004_all.deb) ...
Moving old data out of the way
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_4.23-2_i386.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_4.23-2_i386.deb) ...
Selecting previously deselected package libnewt0.52.
Unpacking libnewt0.52 (from .../libnewt0.52_0.52.2-11.1_i386.deb) ...
Selecting previously deselected package libpopt0.
Unpacking libpopt0 (from .../libpopt0_1.10-3_i386.deb) ...
Selecting previously deselected package whiptail.
Unpacking whiptail (from .../whiptail_0.52.2-11.1_i386.deb) ...
Selecting previously deselected package defoma.
Unpacking defoma (from .../defoma_0.11.10-0.2_all.deb) ...
Selecting previously deselected package ttf-dejavu-core.
Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.23-1_all.deb) ...
Selecting previously deselected package ttf-dejavu-extra.
Unpacking ttf-dejavu-extra (from .../ttf-dejavu-extra_2.23-1_all.deb) ...
Selecting previously deselected package ttf-dejavu.
Unpacking ttf-dejavu (from .../ttf-dejavu_2.23-1_all.deb) ...
Selecting previously deselected package fontconfig-config.
Unpacking fontconfig-config (from .../fontconfig-config_2.5.0-2_all.deb) ...
Selecting previously deselected package libfontconfig1.
Unpacking libfontconfig1 (from .../libfontconfig1_2.5.0-2_i386.deb) ...
Selecting previously deselected package libxft2.
Unpacking libxft2 (from .../libxft2_2.1.12-2_i386.deb) ...
Selecting previously deselected package libexpat1-dev.
Unpacking libexpat1-dev (from .../libexpat1-dev_1.95.8-4_i386.deb) ...
Selecting previously deselected package zlib1g-dev.
Unpacking zlib1g-dev (from .../zlib1g-dev_1%3a1.2.3.3.dfsg-11_i386.deb) ...
Selecting previously deselected package libfreetype6-dev.
Unpacking libfreetype6-dev (from .../libfreetype6-dev_2.3.5-1+b1_i386.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_7.6-1_i386.deb) ...
Selecting previously deselected package libglib2.0-0.
Unpacking libglib2.0-0 (from .../libglib2.0-0_2.14.6-1_i386.deb) ...
Selecting previously deselected package pkg-config.
Unpacking pkg-config (from .../pkg-config_0.22-1_i386.deb) ...
Selecting previously deselected package libfontconfig1-dev.
Unpacking libfontconfig1-dev (from .../libfontconfig1-dev_2.5.0-2_i386.deb) ...
Selecting previously deselected package libxft-dev.
Unpacking libxft-dev (from .../libxft-dev_2.1.12-2_i386.deb) ...
Selecting previously deselected package libxi6.
Unpacking libxi6 (from .../libxi6_2%3a1.1.3-1_i386.deb) ...
Selecting previously deselected package libxi-dev.
Unpacking libxi-dev (from .../libxi-dev_2%3a1.1.3-1_i386.deb) ...
Selecting previously deselected package libxinerama1.
Unpacking libxinerama1 (from .../libxinerama1_1%3a1.0.2-1_i386.deb) ...
Selecting previously deselected package x11proto-xinerama-dev.
Unpacking x11proto-xinerama-dev (from .../x11proto-xinerama-dev_1.1.2-4_all.deb) ...
Selecting previously deselected package libxinerama-dev.
Unpacking libxinerama-dev (from .../libxinerama-dev_1%3a1.0.2-1_i386.deb) ...
Selecting previously deselected package libxmu-headers.
Unpacking libxmu-headers (from .../libxmu-headers_2%3a1.0.4-1_all.deb) ...
Selecting previously deselected package libxrandr2.
Unpacking libxrandr2 (from .../libxrandr2_2%3a1.2.2-1_i386.deb) ...
Selecting previously deselected package x11proto-randr-dev.
Unpacking x11proto-randr-dev (from .../x11proto-randr-dev_1.2.1-2_all.deb) ...
Selecting previously deselected package libxrandr-dev.
Unpacking libxrandr-dev (from .../libxrandr-dev_2%3a1.2.2-1_i386.deb) ...
Selecting previously deselected package libxt6.
Unpacking libxt6 (from .../libxt6_1%3a1.0.5-3_i386.deb) ...
Selecting previously deselected package libxt-dev.
Unpacking libxt-dev (from .../libxt-dev_1%3a1.0.5-3_i386.deb) ...
Selecting previously deselected package libxmu6.
Unpacking libxmu6 (from .../libxmu6_2%3a1.0.4-1_i386.deb) ...
Selecting previously deselected package libxpm4.
Unpacking libxpm4 (from .../libxpm4_1%3a3.5.7-1_i386.deb) ...
Selecting previously deselected package libxaw7.
Unpacking libxaw7 (from .../libxaw7_2%3a1.0.4-1_i386.deb) ...
Selecting previously deselected package libxmuu1.
Unpacking libxmuu1 (from .../libxmuu1_2%3a1.0.4-1_i386.deb) ...
Selecting previously deselected package libxtrap6.
Unpacking libxtrap6 (from .../libxtrap6_1%3a1.0.0-4_i386.deb) ...
Selecting previously deselected package libxxf86misc1.
Unpacking libxxf86misc1 (from .../libxxf86misc1_1%3a1.0.1-2_i386.deb) ...
Selecting previously deselected package libxxf86vm1.
Unpacking libxxf86vm1 (from .../libxxf86vm1_1%3a1.0.1-2_i386.deb) ...
Selecting previously deselected package x11-xserver-utils.
Unpacking x11-xserver-utils (from .../x11-xserver-utils_7.3+2_i386.deb) ...
Selecting previously deselected package xauth.
Unpacking xauth (from .../xauth_1%3a1.0.2-2_i386.deb) ...
Selecting previously deselected package bsdmainutils.
Unpacking bsdmainutils (from .../bsdmainutils_6.1.10_i386.deb) ...
Selecting previously deselected package groff-base.
Unpacking groff-base (from .../groff-base_1.18.1.1-16_i386.deb) ...
Selecting previously deselected package libssl0.9.8.
Unpacking libssl0.9.8 (from .../libssl0.9.8_0.9.8g-4_i386.deb) ...
Selecting previously deselected package man-db.
Unpacking man-db (from .../man-db_2.5.1-2_i386.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.17-2_i386.deb) ...
Selecting previously deselected package libidn11.
Unpacking libidn11 (from .../libidn11_1.4-1_i386.deb) ...
Selecting previously deselected package libkeyutils1.
Unpacking libkeyutils1 (from .../libkeyutils1_1.2-6_i386.deb) ...
Selecting previously deselected package libkrb53.
Unpacking libkrb53 (from .../libkrb53_1.6.dfsg.3~beta1-2_i386.deb) ...
Selecting previously deselected package m4.
Unpacking m4 (from .../archives/m4_1.4.10-1_i386.deb) ...
Selecting previously deselected package autoconf.
Unpacking autoconf (from .../autoconf_2.61-6_all.deb) ...
Selecting previously deselected package autotools-dev.
Unpacking autotools-dev (from .../autotools-dev_20070725.1_all.deb) ...
Selecting previously deselected package automake1.7.
Unpacking automake1.7 (from .../automake1.7_1.7.9-9_all.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-3_i386.deb) ...
Selecting previously deselected package libgomp1.
Unpacking libgomp1 (from .../libgomp1_4.3-20080202-1_i386.deb) ...
Selecting previously deselected package gettext.
Unpacking gettext (from .../gettext_0.17-2_i386.deb) ...
Selecting previously deselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ...
Selecting previously deselected package po-debconf.
Unpacking po-debconf (from .../po-debconf_1.0.11_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_6.0.5_all.deb) ...
Selecting previously deselected package esound-common.
Unpacking esound-common (from .../esound-common_0.2.36-3_all.deb) ...
Selecting previously deselected package fontconfig.
Unpacking fontconfig (from .../fontconfig_2.5.0-2_i386.deb) ...
Selecting previously deselected package hicolor-icon-theme.
Unpacking hicolor-icon-theme (from .../hicolor-icon-theme_0.10-1_all.deb) ...
Selecting previously deselected package hspell.
Unpacking hspell (from .../archives/hspell_1.0-4_i386.deb) ...
Selecting previously deselected package kdelibs-data.
Unpacking kdelibs-data (from .../kdelibs-data_4%3a3.5.8.dfsg.1-7_all.deb) ...
Selecting previously deselected package libart-2.0-2.
Unpacking libart-2.0-2 (from .../libart-2.0-2_2.3.20-1_i386.deb) ...
Selecting previously deselected package libartsc0.
Unpacking libartsc0 (from .../libartsc0_1.5.8-1_i386.deb) ...
Selecting previously deselected package libasound2.
Unpacking libasound2 (from .../libasound2_1.0.15-3_i386.deb) ...
Selecting previously deselected package libaudio2.
Unpacking libaudio2 (from .../libaudio2_1.9.1-1_i386.deb) ...
Selecting previously deselected package libaudiofile0.
Unpacking libaudiofile0 (from .../libaudiofile0_0.2.6-7_i386.deb) ...
Selecting previously deselected package libesd0.
Unpacking libesd0 (from .../libesd0_0.2.36-3_i386.deb) ...
Selecting previously deselected package libraw1394-8.
Unpacking libraw1394-8 (from .../libraw1394-8_1.3.0-2_i386.deb) ...
Selecting previously deselected package libavc1394-0.
Unpacking libavc1394-0 (from .../libavc1394-0_0.5.3-1+b1_i386.deb) ...
Selecting previously deselected package libiec61883-0.
Unpacking libiec61883-0 (from .../libiec61883-0_1.1.0-2_i386.deb) ...
Selecting previously deselected package libxml2.
Unpacking libxml2 (from .../libxml2_2.6.31.dfsg-1_i386.deb) ...
Selecting previously deselected package libfreebob0.
Unpacking libfreebob0 (from .../libfreebob0_1.0.7-1_i386.deb) ...
Selecting previously deselected package libjack0.
Unpacking libjack0 (from .../libjack0_0.109.2-1_i386.deb) ...
Selecting previously deselected package libmad0.
Unpacking libmad0 (from .../libmad0_0.15.1b-2.1_i386.deb) ...
Selecting previously deselected package libogg0.
Unpacking libogg0 (from .../libogg0_1.1.3-3_i386.deb) ...
Selecting previously deselected package libpng12-0.
Unpacking libpng12-0 (from .../libpng12-0_1.2.15~beta5-3_i386.deb) ...
Selecting previously deselected package libjpeg62.
Unpacking libjpeg62 (from .../libjpeg62_6b-14_i386.deb) ...
Selecting previously deselected package liblcms1.
Unpacking liblcms1 (from .../liblcms1_1.16-8_i386.deb) ...
Selecting previously deselected package libmng1.
Unpacking libmng1 (from .../libmng1_1.0.9-1_i386.deb) ...
Selecting previously deselected package libqt3-mt.
Unpacking libqt3-mt (from .../libqt3-mt_3%3a3.3.8b-1_i386.deb) ...
Selecting previously deselected package libvorbis0a.
Unpacking libvorbis0a (from .../libvorbis0a_1.2.0.dfsg-3_i386.deb) ...
Selecting previously deselected package libvorbisenc2.
Unpacking libvorbisenc2 (from .../libvorbisenc2_1.2.0.dfsg-3_i386.deb) ...
Selecting previously deselected package libvorbisfile3.
Unpacking libvorbisfile3 (from .../libvorbisfile3_1.2.0.dfsg-3_i386.deb) ...
Selecting previously deselected package libarts1c2a.
Unpacking libarts1c2a (from .../libarts1c2a_1.5.8-1_i386.deb) ...
Selecting previously deselected package libaspell15.
Unpacking libaspell15 (from .../libaspell15_0.60.5-2_i386.deb) ...
Selecting previously deselected package libavahi-common-data.
Unpacking libavahi-common-data (from .../libavahi-common-data_0.6.22-2_i386.deb) ...
Selecting previously deselected package libavahi-common3.
Unpacking libavahi-common3 (from .../libavahi-common3_0.6.22-2_i386.deb) ...
Selecting previously deselected package libdbus-1-3.
Unpacking libdbus-1-3 (from .../libdbus-1-3_1.1.2-1_i386.deb) ...
Selecting previously deselected package libavahi-client3.
Unpacking libavahi-client3 (from .../libavahi-client3_0.6.22-2_i386.deb) ...
Selecting previously deselected package libavahi-qt3-1.
Unpacking libavahi-qt3-1 (from .../libavahi-qt3-1_0.6.22-2_i386.deb) ...
Selecting previously deselected package libcupsys2.
Unpacking libcupsys2 (from .../libcupsys2_1.3.5-1+b1_i386.deb) ...
Selecting previously deselected package libfam0.
Unpacking libfam0 (from .../libfam0_2.7.0-13.1_i386.deb) ...
Selecting previously deselected package libjasper1.
Unpacking libjasper1 (from .../libjasper1_1.900.1-3_i386.deb) ...
Selecting previously deselected package liblua50.
Unpacking liblua50 (from .../liblua50_5.0.3-3_i386.deb) ...
Selecting previously deselected package liblualib50.
Unpacking liblualib50 (from .../liblualib50_5.0.3-3_i386.deb) ...
Selecting previously deselected package libopenexr2ldbl.
Unpacking libopenexr2ldbl (from .../libopenexr2ldbl_1.2.2-4.4_i386.deb) ...
Selecting previously deselected package libtiff4.
Unpacking libtiff4 (from .../libtiff4_3.8.2-7_i386.deb) ...
Selecting previously deselected package libxslt1.1.
Unpacking libxslt1.1 (from .../libxslt1.1_1.1.22-1_i386.deb) ...
Selecting previously deselected package menu-xdg.
Unpacking menu-xdg (from .../archives/menu-xdg_0.3_all.deb) ...
Selecting previously deselected package kdelibs4c2a.
Unpacking kdelibs4c2a (from .../kdelibs4c2a_4%3a3.5.8.dfsg.1-7_i386.deb) ...
Selecting previously deselected package libattr1-dev.
Unpacking libattr1-dev (from .../libattr1-dev_1%3a2.4.39-1_i386.deb) ...
Selecting previously deselected package libacl1-dev.
Unpacking libacl1-dev (from .../libacl1-dev_2.2.45-1_i386.deb) ...
Selecting previously deselected package libart-2.0-dev.
Unpacking libart-2.0-dev (from .../libart-2.0-dev_2.3.20-1_i386.deb) ...
Selecting previously deselected package libglib2.0-dev.
Unpacking libglib2.0-dev (from .../libglib2.0-dev_2.14.6-1_i386.deb) ...
Selecting previously deselected package libartsc0-dev.
Unpacking libartsc0-dev (from .../libartsc0-dev_1.5.8-1_i386.deb) ...
Selecting previously deselected package libasound2-dev.
Unpacking libasound2-dev (from .../libasound2-dev_1.0.15-3_i386.deb) ...
Selecting previously deselected package libaudio-dev.
Unpacking libaudio-dev (from .../libaudio-dev_1.9.1-1_i386.deb) ...
Selecting previously deselected package libaudiofile-dev.
Unpacking libaudiofile-dev (from .../libaudiofile-dev_0.2.6-7_i386.deb) ...
Selecting previously deselected package libesd0-dev.
Unpacking libesd0-dev (from .../libesd0-dev_0.2.36-3_i386.deb) ...
Selecting previously deselected package libjack-dev.
Unpacking libjack-dev (from .../libjack-dev_0.109.2-1_i386.deb) ...
Selecting previously deselected package libjack0.100.0-dev.
Unpacking libjack0.100.0-dev (from .../libjack0.100.0-dev_0.109.2-1_all.deb) ...
Selecting previously deselected package libmad0-dev.
Unpacking libmad0-dev (from .../libmad0-dev_0.15.1b-2.1_i386.deb) ...
Selecting previously deselected package libogg-dev.
Unpacking libogg-dev (from .../libogg-dev_1.1.3-3_i386.deb) ...
Selecting previously deselected package libgpg-error-dev.
Unpacking libgpg-error-dev (from .../libgpg-error-dev_1.4-2_i386.deb) ...
Selecting previously deselected package libgcrypt11-dev.
Unpacking libgcrypt11-dev (from .../libgcrypt11-dev_1.4.0-3_i386.deb) ...
Selecting previously deselected package libopencdk10-dev.
Unpacking libopencdk10-dev (from .../libopencdk10-dev_0.6.6-1_i386.deb) ...
Selecting previously deselected package libtasn1-3-dev.
Unpacking libtasn1-3-dev (from .../libtasn1-3-dev_1.3-1_i386.deb) ...
Selecting previously deselected package libgnutls-dev.
Unpacking libgnutls-dev (from .../libgnutls-dev_2.2.1-3_i386.deb) ...
Selecting previously deselected package libkadm55.
Unpacking libkadm55 (from .../libkadm55_1.6.dfsg.3~beta1-2_i386.deb) ...
Selecting previously deselected package comerr-dev.
Unpacking comerr-dev (from .../comerr-dev_2.1-1.40.6-1_i386.deb) ...
Selecting previously deselected package libkrb5-dev.
Unpacking libkrb5-dev (from .../libkrb5-dev_1.6.dfsg.3~beta1-2_i386.deb) ...
Selecting previously deselected package libcupsys2-dev.
Unpacking libcupsys2-dev (from .../libcupsys2-dev_1.3.5-1+b1_i386.deb) ...
Selecting previously deselected package libdrm2.
Unpacking libdrm2 (from .../libdrm2_2.3.0-4_i386.deb) ...
Selecting previously deselected package libxdamage1.
Unpacking libxdamage1 (from .../libxdamage1_1%3a1.1.1-3_i386.deb) ...
Selecting previously deselected package libgl1-mesa-glx.
Unpacking libgl1-mesa-glx (from .../libgl1-mesa-glx_7.0.2-4_i386.deb) ...
Selecting previously deselected package mesa-common-dev.
Unpacking mesa-common-dev (from .../mesa-common-dev_7.0.2-4_all.deb) ...
Selecting previously deselected package libgl1-mesa-dev.
Unpacking libgl1-mesa-dev (from .../libgl1-mesa-dev_7.0.2-4_all.deb) ...
Selecting previously deselected package libglu1-mesa.
Unpacking libglu1-mesa (from .../libglu1-mesa_7.0.2-4_i386.deb) ...
Selecting previously deselected package libglu1-mesa-dev.
Unpacking libglu1-mesa-dev (from .../libglu1-mesa-dev_7.0.2-4_i386.deb) ...
Selecting previously deselected package libjpeg62-dev.
Unpacking libjpeg62-dev (from .../libjpeg62-dev_6b-14_i386.deb) ...
Selecting previously deselected package liblcms1-dev.
Unpacking liblcms1-dev (from .../liblcms1-dev_1.16-8_i386.deb) ...
Selecting previously deselected package libmng-dev.
Unpacking libmng-dev (from .../libmng-dev_1.0.9-1_i386.deb) ...
Selecting previously deselected package libpng12-dev.
Unpacking libpng12-dev (from .../libpng12-dev_1.2.15~beta5-3_i386.deb) ...
Selecting previously deselected package libqt3-headers.
Unpacking libqt3-headers (from .../libqt3-headers_3%3a3.3.8b-1_i386.deb) ...
Selecting previously deselected package libxmu-dev.
Unpacking libxmu-dev (from .../libxmu-dev_2%3a1.0.4-1_i386.deb) ...
Selecting previously deselected package qt3-dev-tools.
Unpacking qt3-dev-tools (from .../qt3-dev-tools_3%3a3.3.8b-1_i386.deb) ...
Selecting previously deselected package libqt3-mt-dev.
Unpacking libqt3-mt-dev (from .../libqt3-mt-dev_3%3a3.3.8b-1_i386.deb) ...
Selecting previously deselected package libvorbis-dev.
Unpacking libvorbis-dev (from .../libvorbis-dev_1.2.0.dfsg-3_i386.deb) ...
Selecting previously deselected package libarts1-dev.
Unpacking libarts1-dev (from .../libarts1-dev_1.5.8-1_i386.deb) ...
Selecting previously deselected package libaspell-dev.
Unpacking libaspell-dev (from .../libaspell-dev_0.60.5-2_i386.deb) ...
Selecting previously deselected package libavahi-common-dev.
Unpacking libavahi-common-dev (from .../libavahi-common-dev_0.6.22-2_i386.deb) ...
Selecting previously deselected package libdbus-1-dev.
Unpacking libdbus-1-dev (from .../libdbus-1-dev_1.1.2-1_i386.deb) ...
Selecting previously deselected package libavahi-client-dev.
Unpacking libavahi-client-dev (from .../libavahi-client-dev_0.6.22-2_i386.deb) ...
Selecting previously deselected package libavahi-qt3-dev.
Unpacking libavahi-qt3-dev (from .../libavahi-qt3-dev_0.6.22-2_i386.deb) ...
Selecting previously deselected package libbz2-dev.
Unpacking libbz2-dev (from .../libbz2-dev_1.0.4-3_i386.deb) ...
Selecting previously deselected package libfam-dev.
Unpacking libfam-dev (from .../libfam-dev_2.7.0-13.1_i386.deb) ...
Selecting previously deselected package libidn11-dev.
Unpacking libidn11-dev (from .../libidn11-dev_1.4-1_i386.deb) ...
Selecting previously deselected package libjasper-dev.
Unpacking libjasper-dev (from .../libjasper-dev_1.900.1-3_i386.deb) ...
Selecting previously deselected package lua50.
Unpacking lua50 (from .../lua50_5.0.3-3_i386.deb) ...
Selecting previously deselected package liblua50-dev.
Unpacking liblua50-dev (from .../liblua50-dev_5.0.3-3_i386.deb) ...
Selecting previously deselected package liblualib50-dev.
Unpacking liblualib50-dev (from .../liblualib50-dev_5.0.3-3_i386.deb) ...
Selecting previously deselected package libopenexr-dev.
Unpacking libopenexr-dev (from .../libopenexr-dev_1.2.2-4.4_i386.deb) ...
Selecting previously deselected package libpcrecpp0.
Unpacking libpcrecpp0 (from .../libpcrecpp0_7.6-1_i386.deb) ...
Selecting previously deselected package libpcre3-dev.
Unpacking libpcre3-dev (from .../libpcre3-dev_7.6-1_i386.deb) ...
Selecting previously deselected package libsasl2-modules.
Unpacking libsasl2-modules (from .../libsasl2-modules_2.1.22.dfsg1-17+b1_i386.deb) ...
Selecting previously deselected package libsasl2-dev.
Unpacking libsasl2-dev (from .../libsasl2-dev_2.1.22.dfsg1-17+b1_i386.deb) ...
Selecting previously deselected package libssl-dev.
Unpacking libssl-dev (from .../libssl-dev_0.9.8g-4_i386.deb) ...
Selecting previously deselected package libtiffxx0c2.
Unpacking libtiffxx0c2 (from .../libtiffxx0c2_3.8.2-7_i386.deb) ...
Selecting previously deselected package libtiff4-dev.
Unpacking libtiff4-dev (from .../libtiff4-dev_3.8.2-7_i386.deb) ...
Selecting previously deselected package libxml2-dev.
Unpacking libxml2-dev (from .../libxml2-dev_2.6.31.dfsg-1_i386.deb) ...
Selecting previously deselected package libxml2-utils.
Unpacking libxml2-utils (from .../libxml2-utils_2.6.31.dfsg-1_i386.deb) ...
Selecting previously deselected package libxslt1-dev.
Unpacking libxslt1-dev (from .../libxslt1-dev_1.1.22-1_i386.deb) ...
Selecting previously deselected package kdelibs4-dev.
Unpacking kdelibs4-dev (from .../kdelibs4-dev_4%3a3.5.8.dfsg.1-7_i386.deb) ...
Selecting previously deselected package libltdl3.
Unpacking libltdl3 (from .../libltdl3_1.5.26-1_i386.deb) ...
Selecting previously deselected package ksimus.
Unpacking ksimus (from .../ksimus_0.3.6-2-14_i386.deb) ...
Selecting previously deselected package ksimus-dev.
Unpacking ksimus-dev (from .../ksimus-dev_0.3.6-2-14_all.deb) ...
Selecting previously deselected package libtool.
Unpacking libtool (from .../libtool_1.5.26-1_i386.deb) ...
Setting up libice6 (2:1.0.4-1) ...
Setting up x11proto-core-dev (7.0.11-1) ...
Setting up libice-dev (2:1.0.4-1) ...
Setting up libsm6 (2:1.0.3-1+b1) ...
Setting up libsm-dev (2:1.0.3-1+b1) ...
Setting up libxau6 (1:1.0.3-2) ...
Setting up libxdmcp6 (1:1.0.2-2) ...
Setting up libx11-data (2:1.0.3-7) ...
Setting up libx11-6 (2:1.0.3-7) ...
Setting up libxau-dev (1:1.0.3-2) ...
Setting up libxdmcp-dev (1:1.0.2-2) ...
Setting up libxext6 (1:1.0.3-2) ...
Setting up x11proto-input-dev (1.4.2-1) ...
Setting up x11proto-xext-dev (7.0.2-5) ...
Setting up x11proto-kb-dev (1.0.3-2) ...
Setting up xtrans-dev (1.0.4-1) ...
Setting up libxfixes3 (1:4.0.3-2) ...
Setting up libxrender1 (1:0.9.4-1) ...
Setting up libxcursor1 (1:1.1.9-1) ...
Setting up x11proto-render-dev (2:0.9.3-2) ...
Setting up x11proto-fixes-dev (4.0-2) ...
Setting up libexpat1 (1.95.8-4) ...
Setting up libfreetype6 (2.3.5-1+b1) ...
Setting up ucf (3.004) ...
Setting up libmagic1 (4.23-2) ...
Setting up file (4.23-2) ...
Setting up libnewt0.52 (0.52.2-11.1) ...
Setting up libpopt0 (1.10-3) ...
Setting up whiptail (0.52.2-11.1) ...
Setting up defoma (0.11.10-0.2) ...
Setting up ttf-dejavu-core (2.23-1) ...
Setting up ttf-dejavu-extra (2.23-1) ...
Setting up ttf-dejavu (2.23-1) ...
Setting up fontconfig-config (2.5.0-2) ...
Setting up libfontconfig1 (2.5.0-2) ...
Setting up libxft2 (2.1.12-2) ...
Setting up libexpat1-dev (1.95.8-4) ...
Setting up zlib1g-dev (1:1.2.3.3.dfsg-11) ...
Setting up libfreetype6-dev (2.3.5-1+b1) ...
Setting up libpcre3 (7.6-1) ...
Setting up libglib2.0-0 (2.14.6-1) ...
Setting up pkg-config (0.22-1) ...
Setting up libfontconfig1-dev (2.5.0-2) ...
Setting up libxi6 (2:1.1.3-1) ...
Setting up libxinerama1 (1:1.0.2-1) ...
Setting up x11proto-xinerama-dev (1.1.2-4) ...
Setting up libxrandr2 (2:1.2.2-1) ...
Setting up x11proto-randr-dev (1.2.1-2) ...
Setting up libxt6 (1:1.0.5-3) ...
Setting up libxmu6 (2:1.0.4-1) ...
Setting up libxpm4 (1:3.5.7-1) ...
Setting up libxaw7 (2:1.0.4-1) ...
Setting up libxmuu1 (2:1.0.4-1) ...
Setting up libxtrap6 (1:1.0.0-4) ...
Setting up libxxf86misc1 (1:1.0.1-2) ...
Setting up libxxf86vm1 (1:1.0.1-2) ...
Setting up x11-xserver-utils (7.3+2) ...
Setting up xauth (1:1.0.2-2) ...
Setting up bsdmainutils (6.1.10) ...
Setting up groff-base (1.18.1.1-16) ...
Setting up libssl0.9.8 (0.9.8g-4) ...
Setting up man-db (2.5.1-2) ...
Building database of manual pages ...
Setting up gettext-base (0.17-2) ...
Setting up libidn11 (1.4-1) ...
Setting up libkeyutils1 (1.2-6) ...
Setting up libkrb53 (1.6.dfsg.3~beta1-2) ...
Setting up m4 (1.4.10-1) ...
Setting up autoconf (2.61-6) ...
Setting up autotools-dev (20070725.1) ...
Setting up automake1.7 (1.7.9-9) ...
Setting up html2text (1.3.2a-3) ...
Setting up libgomp1 (4.3-20080202-1) ...
Setting up gettext (0.17-2) ...
Setting up intltool-debian (0.35.0+20060710.1) ...
Setting up po-debconf (1.0.11) ...
Setting up debhelper (6.0.5) ...
Setting up esound-common (0.2.36-3) ...
Setting up fontconfig (2.5.0-2) ...
Updating font configuration of fontconfig...
Cleaning up category cid..
Cleaning up category truetype..
Cleaning up category type1..
Updating category type1..
Updating category truetype..
Updating category cid..
Updating fontconfig cache for /usr/share/fonts/truetype/ttf-dejavu
Cleaning up old fontconfig caches... done.
Regenerating fonts cache... done.
Setting up hicolor-icon-theme (0.10-1) ...
Setting up hspell (1.0-4) ...
Setting up kdelibs-data (4:3.5.8.dfsg.1-7) ...
Setting up libart-2.0-2 (2.3.20-1) ...
Setting up libartsc0 (1.5.8-1) ...
Setting up libasound2 (1.0.15-3) ...
Setting up libaudio2 (1.9.1-1) ...
Setting up libaudiofile0 (0.2.6-7) ...
Setting up libesd0 (0.2.36-3) ...
Setting up libraw1394-8 (1.3.0-2) ...
Creating device node /dev/raw1394... done.
Setting up libavc1394-0 (0.5.3-1+b1) ...
Setting up libiec61883-0 (1.1.0-2) ...
Setting up libxml2 (2.6.31.dfsg-1) ...
Setting up libfreebob0 (1.0.7-1) ...
Setting up libjack0 (0.109.2-1) ...
Setting up libmad0 (0.15.1b-2.1) ...
Setting up libogg0 (1.1.3-3) ...
Setting up libpng12-0 (1.2.15~beta5-3) ...
Setting up libjpeg62 (6b-14) ...
Setting up liblcms1 (1.16-8) ...
Setting up libmng1 (1.0.9-1) ...
Setting up libqt3-mt (3:3.3.8b-1) ...
Setting up libvorbis0a (1.2.0.dfsg-3) ...
Setting up libvorbisenc2 (1.2.0.dfsg-3) ...
Setting up libvorbisfile3 (1.2.0.dfsg-3) ...
Setting up libarts1c2a (1.5.8-1) ...
Setting up libaspell15 (0.60.5-2) ...
Setting up libavahi-common-data (0.6.22-2) ...
Setting up libavahi-common3 (0.6.22-2) ...
Setting up libdbus-1-3 (1.1.2-1) ...
Setting up libavahi-client3 (0.6.22-2) ...
Setting up libavahi-qt3-1 (0.6.22-2) ...
Setting up libcupsys2 (1.3.5-1+b1) ...
Setting up libfam0 (2.7.0-13.1) ...
Setting up libjasper1 (1.900.1-3) ...
Setting up liblua50 (5.0.3-3) ...
Setting up liblualib50 (5.0.3-3) ...
Setting up libopenexr2ldbl (1.2.2-4.4) ...
Setting up libtiff4 (3.8.2-7) ...
Setting up libxslt1.1 (1.1.22-1) ...
Setting up menu-xdg (0.3) ...
Setting up kdelibs4c2a (4:3.5.8.dfsg.1-7) ...
Setting up libattr1-dev (1:2.4.39-1) ...
Setting up libacl1-dev (2.2.45-1) ...
Setting up libart-2.0-dev (2.3.20-1) ...
Setting up libglib2.0-dev (2.14.6-1) ...
Setting up libartsc0-dev (1.5.8-1) ...
Setting up libasound2-dev (1.0.15-3) ...
Setting up libaudio-dev (1.9.1-1) ...
Setting up libaudiofile-dev (0.2.6-7) ...
Setting up libesd0-dev (0.2.36-3) ...
Setting up libjack-dev (0.109.2-1) ...
Setting up libjack0.100.0-dev (0.109.2-1) ...
Setting up libmad0-dev (0.15.1b-2.1) ...
Setting up libogg-dev (1.1.3-3) ...
Setting up libgpg-error-dev (1.4-2) ...
Setting up libgcrypt11-dev (1.4.0-3) ...
Setting up libopencdk10-dev (0.6.6-1) ...
Setting up libtasn1-3-dev (1.3-1) ...
Setting up libgnutls-dev (2.2.1-3) ...
Setting up libkadm55 (1.6.dfsg.3~beta1-2) ...
Setting up comerr-dev (2.1-1.40.6-1) ...
Setting up libkrb5-dev (1.6.dfsg.3~beta1-2) ...
Setting up libcupsys2-dev (1.3.5-1+b1) ...
Setting up libdrm2 (2.3.0-4) ...
Setting up libxdamage1 (1:1.1.1-3) ...
Setting up libgl1-mesa-glx (7.0.2-4) ...
Setting up libglu1-mesa (7.0.2-4) ...
Setting up libjpeg62-dev (6b-14) ...
Setting up liblcms1-dev (1.16-8) ...
Setting up libmng-dev (1.0.9-1) ...
Setting up libpng12-dev (1.2.15~beta5-3) ...
Setting up libqt3-headers (3:3.3.8b-1) ...
Setting up qt3-dev-tools (3:3.3.8b-1) ...
Setting up libvorbis-dev (1.2.0.dfsg-3) ...
Setting up libaspell-dev (0.60.5-2) ...
Setting up libavahi-common-dev (0.6.22-2) ...
Setting up libdbus-1-dev (1.1.2-1) ...
Setting up libavahi-client-dev (0.6.22-2) ...
Setting up libbz2-dev (1.0.4-3) ...
Setting up libfam-dev (2.7.0-13.1) ...
Setting up libidn11-dev (1.4-1) ...
Setting up libjasper-dev (1.900.1-3) ...
Setting up lua50 (5.0.3-3) ...
Setting up liblua50-dev (5.0.3-3) ...
Setting up liblualib50-dev (5.0.3-3) ...
Setting up libpcrecpp0 (7.6-1) ...
Setting up libpcre3-dev (7.6-1) ...
Setting up libsasl2-modules (2.1.22.dfsg1-17+b1) ...
Setting up libsasl2-dev (2.1.22.dfsg1-17+b1) ...
Setting up libssl-dev (0.9.8g-4) ...
Setting up libtiffxx0c2 (3.8.2-7) ...
Setting up libtiff4-dev (3.8.2-7) ...
Setting up libxml2-dev (2.6.31.dfsg-1) ...
Setting up libxml2-utils (2.6.31.dfsg-1) ...
Setting up libxslt1-dev (1.1.22-1) ...
Setting up libltdl3 (1.5.26-1) ...
Setting up ksimus (0.3.6-2-14) ...
Setting up libtool (1.5.26-1) ...
Setting up libxext-dev (1:1.0.3-2) ...
Setting up libx11-dev (2:1.0.3-7) ...
Setting up libxrender-dev (1:0.9.4-1) ...
Setting up libxfixes-dev (1:4.0.3-2) ...
Setting up libxcursor-dev (1:1.1.9-1) ...
Setting up libxft-dev (2.1.12-2) ...
Setting up libxi-dev (2:1.1.3-1) ...
Setting up libxinerama-dev (1:1.0.2-1) ...
Setting up libxmu-headers (2:1.0.4-1) ...
Setting up libxrandr-dev (2:1.2.2-1) ...
Setting up libxt-dev (1:1.0.5-3) ...
Setting up mesa-common-dev (7.0.2-4) ...
Setting up libgl1-mesa-dev (7.0.2-4) ...
Setting up libglu1-mesa-dev (7.0.2-4) ...
Setting up libxmu-dev (2:1.0.4-1) ...
Setting up libqt3-mt-dev (3:3.3.8b-1) ...
Setting up libarts1-dev (1.5.8-1) ...
Setting up libavahi-qt3-dev (0.6.22-2) ...
Setting up libopenexr-dev (1.2.2-4.4) ...
Setting up kdelibs4-dev (4:3.5.8.dfsg.1-7) ...
Setting up ksimus-dev (0.3.6-2-14) ...
Checking correctness of source dependencies...
Kernel: Linux 2.6.18-3-amd64 i386 (x86_64)
Toolchain package versions: libc6-dev_2.7-6 linux-libc-dev_2.6.24-4 gcc-4.2_4.2.3-1 g++-4.2_4.2.3-1 binutils_2.18.1~cvs20080103-1 libstdc++6-4.2-dev_4.2.3-1 libstdc++6_4.3-20080202-1
------------------------------------------------------------------------------
gpg: Signature made Wed Jun 20 12:54:15 2007 CEST using DSA key ID 807CAC25
gpg: Can't check signature: public key not found
dpkg-source: extracting ksimus-boolean in ksimus-boolean-0.3.6
dpkg-source: unpacking ksimus-boolean_0.3.6.orig.tar.gz
dpkg-source: applying ./ksimus-boolean_0.3.6-12.diff.gz
dpkg-buildpackage: source package ksimus-boolean
dpkg-buildpackage: source version 0.3.6-12
dpkg-buildpackage: source changed by Michael Ablassmeier <abi@debian.org>
dpkg-buildpackage: host architecture i386
 /usr/bin/fakeroot debian/rules clean
perl -w admin/debianrules echodirs > debian/debiandirs
dh_testdir
dh_testroot
/usr/bin/make distclean
make[1]: Entering directory `/build/user/ksimus-boolean-0.3.6'
make[1]: *** No rule to make target `distclean'.  Stop.
make[1]: Leaving directory `/build/user/ksimus-boolean-0.3.6'
make: [clean] Error 2 (ignored)
rm -f *-stamp
rm -f debian/debiandirs
rm -f admin/config.sub admin/config.guess admin/ltmain.sh configure
rm -f admin/libtool.m4.in aclocal.m4 acinclude.m4
rm -f config.log
rm -f po/*.gmo
find /build/user/ksimus-boolean-0.3.6 -name Makefile.in -exec rm -f {} \;
dh_clean
 dpkg-source -b ksimus-boolean-0.3.6
dpkg-source: building ksimus-boolean using existing ksimus-boolean_0.3.6.orig.tar.gz
dpkg-source: building ksimus-boolean in ksimus-boolean_0.3.6-12.diff.gz
dpkg-source: warning: ignoring deletion of file po/de.gmo
dpkg-source: warning: ignoring deletion of file po/fr.gmo
dpkg-source: warning: ignoring deletion of file po/Makefile.in
dpkg-source: warning: ignoring deletion of file doc/en/Makefile.in
dpkg-source: warning: ignoring deletion of file doc/Makefile.in
dpkg-source: warning: ignoring deletion of file admin/ltmain.sh
dpkg-source: warning: ignoring deletion of file admin/config.guess
dpkg-source: warning: ignoring deletion of file admin/config.sub
dpkg-source: warning: ignoring deletion of file admin/libtool.m4.in
dpkg-source: warning: ignoring deletion of file aclocal.m4
dpkg-source: warning: ignoring deletion of file configure
dpkg-source: warning: ignoring deletion of file Makefile.in
dpkg-source: warning: ignoring deletion of file acinclude.m4
dpkg-source: warning: ignoring deletion of file ksimus-boolean/Makefile.in
dpkg-source: building ksimus-boolean in ksimus-boolean_0.3.6-12.dsc
 debian/rules build
perl -w admin/debianrules echodirs > debian/debiandirs
dh_testdir
/usr/bin/libtoolize -f
Remember to add `AC_PROG_LIBTOOL' to `configure.in'.
You should add the contents of `/usr/share/aclocal/libtool.m4' to `aclocal.m4'.
Putting files in AC_CONFIG_AUX_DIR, `admin'.
cp -f /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
/usr/bin/make -f admin/Makefile.common
make[1]: Entering directory `/build/user/ksimus-boolean-0.3.6'
*** Creating acinclude.m4
make[2]: Entering directory `/build/user/ksimus-boolean-0.3.6'
make[2]: Leaving directory `/build/user/ksimus-boolean-0.3.6'
*** Creating list of subdirectories
*** Creating configure.in
make[2]: Entering directory `/build/user/ksimus-boolean-0.3.6'
make[3]: Entering directory `/build/user/ksimus-boolean-0.3.6'
make[3]: Leaving directory `/build/user/ksimus-boolean-0.3.6'
make[2]: Leaving directory `/build/user/ksimus-boolean-0.3.6'
*** Creating aclocal.m4
*** Creating configure
*** Creating config.h template
*** Creating Makefile templates
*** Postprocessing Makefile templates
*** Creating date/time stamp
*** Finished
    Don't forget to run ./configure
    If you haven't done so in a while, run ./configure --help
make[1]: Leaving directory `/build/user/ksimus-boolean-0.3.6'
dh_testdir
CXXFLAGS=-fPIC QTDIR=/usr/share/qt3 ./configure \
	                        --host=i486-linux-gnu \
				--build=i486-linux-gnu \
	                        --disable-debug --enable-final --disable-rpath --prefix=/usr --libexecdir=/usr/bin --sysconfdir=/etc --libdir=/usr/lib --includedir=/usr/include/kde --with-qt-includes=/usr/include/qt --mandir=/usr/share/man --infodir=/usr/share/info \
				--disable-final
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking target system type... i486-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking for -p flag to install... yes
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking for i486-linux-gnu-gcc... i486-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i486-linux-gnu-gcc accepts -g... yes
checking for i486-linux-gnu-gcc option to accept ISO C89... none needed
checking dependency style of i486-linux-gnu-gcc... gcc3
checking how to run the C preprocessor... i486-linux-gnu-gcc -E
checking for i486-linux-gnu-g++... i486-linux-gnu-g++
checking whether we are using the GNU C++ compiler... yes
checking whether i486-linux-gnu-g++ accepts -g... yes
checking dependency style of i486-linux-gnu-g++... gcc3
checking whether i486-linux-gnu-g++ supports -Wundef... yes
checking whether i486-linux-gnu-g++ supports -Wno-long-long... yes
checking whether i486-linux-gnu-g++ supports -Wnon-virtual-dtor... yes
checking whether i486-linux-gnu-g++ supports -fno-exceptions... yes
checking whether i486-linux-gnu-g++ supports -fno-check-new... yes
checking whether i486-linux-gnu-g++ supports -fexceptions... yes
checking how to run the C++ preprocessor... i486-linux-gnu-g++ -E
checking whether i486-linux-gnu-g++ supports -frepo... yes
not using lib directory suffix
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by i486-linux-gnu-gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking how to run the C++ preprocessor... i486-linux-gnu-g++ -E
checking for i486-linux-gnu-g77... no
checking for i486-linux-gnu-xlf... no
checking for i486-linux-gnu-f77... no
checking for i486-linux-gnu-frt... no
checking for i486-linux-gnu-pgf77... no
checking for i486-linux-gnu-cf77... no
checking for i486-linux-gnu-fort77... no
checking for i486-linux-gnu-fl32... no
checking for i486-linux-gnu-af77... no
checking for i486-linux-gnu-xlf90... no
checking for i486-linux-gnu-f90... no
checking for i486-linux-gnu-pgf90... no
checking for i486-linux-gnu-pghpf... no
checking for i486-linux-gnu-epcf90... no
checking for i486-linux-gnu-gfortran... no
checking for i486-linux-gnu-g95... no
checking for i486-linux-gnu-xlf95... no
checking for i486-linux-gnu-f95... no
checking for i486-linux-gnu-fort... no
checking for i486-linux-gnu-ifort... no
checking for i486-linux-gnu-ifc... no
checking for i486-linux-gnu-efc... no
checking for i486-linux-gnu-pgf95... no
checking for i486-linux-gnu-lf95... no
checking for i486-linux-gnu-ftn... no
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether  accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from i486-linux-gnu-gcc object... ok
checking for objdir... .libs
checking for i486-linux-gnu-ar... no
checking for ar... ar
checking for i486-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for i486-linux-gnu-strip... no
checking for strip... strip
checking if i486-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for i486-linux-gnu-gcc option to produce PIC... -fPIC
checking if i486-linux-gnu-gcc PIC flag -fPIC works... yes
checking if i486-linux-gnu-gcc static flag -static works... yes
checking if i486-linux-gnu-gcc supports -c -o file.o... yes
checking whether the i486-linux-gnu-gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... no
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by i486-linux-gnu-g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for i486-linux-gnu-g++ option to produce PIC... -fPIC
checking if i486-linux-gnu-g++ PIC flag -fPIC works... yes
checking if i486-linux-gnu-g++ static flag -static works... yes
checking if i486-linux-gnu-g++ supports -c -o file.o... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
(cached) (cached) checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for main in -lutil... yes
checking for main in -lcompat... no
checking for crypt in -lcrypt... yes
checking for socklen_t... socklen_t
checking for dnet_ntoa in -ldnet... no
checking for dnet_ntoa in -ldnet_stub... no
checking for inet_ntoa... yes
checking for connect... yes
checking for remove... yes
checking for shmat... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking for _NSGetEnviron... no
checking for sys/types.h... (cached) yes
checking for stdint.h... (cached) yes
checking for poll in -lpoll... no
checking CoreAudio/CoreAudio.h usability... no
checking CoreAudio/CoreAudio.h presence... no
checking for CoreAudio/CoreAudio.h... no
checking if res_init needs -lresolv... yes
checking if res_init is available... yes
checking for killpg in -lucb... no
checking for int... yes
checking size of int... 4
checking for long... yes
checking size of long... 4
checking for char *... yes
checking size of char *... 4
checking for char... yes
checking size of char... 1
checking for dlopen in -ldl... (cached) yes
checking for shl_unload in -ldld... no
checking for vsnprintf... yes
checking for snprintf... yes
checking for X... libraries /usr/lib, headers .
checking for IceConnectionNumber in -lICE... yes
checking for libXext... yes
checking for Xinerama... no
checking for pthread_create in -lpthread... yes
checking for extra includes... no
checking for extra libs... no
checking for libz... -lz
checking for libpng... -lpng -lz -lm
checking for libjpeg6b... no
checking for libjpeg... -ljpeg
checking for Qt... libraries /usr/share/qt3/lib, headers /usr/share/qt3/include using -mt
checking if Qt compiles without flags... yes
checking for moc... /usr/share/qt3/bin/moc
checking for uic... /usr/share/qt3/bin/uic
checking whether uic supports -L ... yes
checking whether uic supports -nounload ... yes
checking if Qt needs -ljpeg... no
checking for rpath... no
checking for KDE... libraries /usr/lib, headers /usr/include/kde
checking if UIC has KDE plugins available... yes
checking for KDE paths... defaults
checking for dcopidl... /usr/bin/dcopidl
checking for dcopidl2cpp... /usr/bin/dcopidl2cpp
checking for mcopidl... /usr/bin/mcopidl
checking for artsc-config... /usr/bin/artsc-config
checking for kde-config... /usr/bin/kde-config
checking for meinproc... /usr/bin/meinproc
checking for KSimus Header... yes
checking for KSimus Binary... yes
checking KSimus version... (0.3.6) yes
checking if doc should be compiled... yes
checking if ksimus-boolean should be compiled... yes
checking if po should be compiled... yes
configure: creating ./config.status
wrong input (flag != 4) at admin/conf.change.pl line 109, <> line 1200.
config.status: creating Makefile
config.status: creating doc/Makefile
config.status: creating doc/en/Makefile
config.status: creating ksimus-boolean/Makefile
config.status: creating po/Makefile
config.status: creating config.h
config.status: executing depfiles commands

Good - your configure finished. Start make now

dh_testdir
/usr/bin/make
make[1]: Entering directory `/build/user/ksimus-boolean-0.3.6'
cd . && /bin/sh /build/user/ksimus-boolean-0.3.6/admin/missing --run autoheader
touch ./config.h.in
cd . && /bin/sh ./config.status config.h
config.status: creating config.h
config.status: config.h is unchanged
/usr/bin/make  all-recursive
make[2]: Entering directory `/build/user/ksimus-boolean-0.3.6'
Making all in ksimus-boolean
make[3]: Entering directory `/build/user/ksimus-boolean-0.3.6/ksimus-boolean'
if /bin/sh ../libtool --mode=compile --tag=CXX i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I.  -I/usr/include/kde  -DQT_THREAD_SUPPORT  -D_REENTRANT  -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new  -MT booltristatexor.lo -MD -MP -MF ".deps/booltristatexor.Tpo" \
	  -c -o booltristatexor.lo `test -f 'booltristatexor.cpp' || echo './'`booltristatexor.cpp; \
	then mv -f ".deps/booltristatexor.Tpo" ".deps/booltristatexor.Plo"; \
	else rm -f ".deps/booltristatexor.Tpo"; exit 1; \
	fi
mkdir .libs
 i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I. -I/usr/include/kde -DQT_THREAD_SUPPORT -D_REENTRANT -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new -MT booltristatexor.lo -MD -MP -MF .deps/booltristatexor.Tpo -c booltristatexor.cpp  -fPIC -DPIC -o .libs/booltristatexor.o
cc1plus: warning: command line option "-Wmissing-prototypes" is valid for Ada/C/ObjC but not for C++
In file included from /usr/include/kde/ksimus/ksimbooltristate.h:28,
                 from /usr/include/kde/ksimus/connectorbooltristate.h:29,
                 from booltristatexor.cpp:27:
/usr/include/kde/ksimus/ksimtype.h:46: warning: 'class KSimTypeBase' has virtual functions but non-virtual destructor
if /bin/sh ../libtool --mode=compile --tag=CXX i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I.  -I/usr/include/kde  -DQT_THREAD_SUPPORT  -D_REENTRANT  -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new  -MT booltristateor.lo -MD -MP -MF ".deps/booltristateor.Tpo" \
	  -c -o booltristateor.lo `test -f 'booltristateor.cpp' || echo './'`booltristateor.cpp; \
	then mv -f ".deps/booltristateor.Tpo" ".deps/booltristateor.Plo"; \
	else rm -f ".deps/booltristateor.Tpo"; exit 1; \
	fi
 i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I. -I/usr/include/kde -DQT_THREAD_SUPPORT -D_REENTRANT -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new -MT booltristateor.lo -MD -MP -MF .deps/booltristateor.Tpo -c booltristateor.cpp  -fPIC -DPIC -o .libs/booltristateor.o
cc1plus: warning: command line option "-Wmissing-prototypes" is valid for Ada/C/ObjC but not for C++
In file included from /usr/include/kde/ksimus/ksimbooltristate.h:28,
                 from /usr/include/kde/ksimus/connectorbooltristate.h:29,
                 from booltristateor.cpp:27:
/usr/include/kde/ksimus/ksimtype.h:46: warning: 'class KSimTypeBase' has virtual functions but non-virtual destructor
if /bin/sh ../libtool --mode=compile --tag=CXX i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I.  -I/usr/include/kde  -DQT_THREAD_SUPPORT  -D_REENTRANT  -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new  -MT booltristateand.lo -MD -MP -MF ".deps/booltristateand.Tpo" \
	  -c -o booltristateand.lo `test -f 'booltristateand.cpp' || echo './'`booltristateand.cpp; \
	then mv -f ".deps/booltristateand.Tpo" ".deps/booltristateand.Plo"; \
	else rm -f ".deps/booltristateand.Tpo"; exit 1; \
	fi
 i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I. -I/usr/include/kde -DQT_THREAD_SUPPORT -D_REENTRANT -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new -MT booltristateand.lo -MD -MP -MF .deps/booltristateand.Tpo -c booltristateand.cpp  -fPIC -DPIC -o .libs/booltristateand.o
cc1plus: warning: command line option "-Wmissing-prototypes" is valid for Ada/C/ObjC but not for C++
In file included from /usr/include/kde/ksimus/ksimbooltristate.h:28,
                 from /usr/include/kde/ksimus/connectorbooltristate.h:29,
                 from booltristateand.cpp:27:
/usr/include/kde/ksimus/ksimtype.h:46: warning: 'class KSimTypeBase' has virtual functions but non-virtual destructor
if /bin/sh ../libtool --mode=compile --tag=CXX i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I.  -I/usr/include/kde  -DQT_THREAD_SUPPORT  -D_REENTRANT  -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new  -MT booltristate1out.lo -MD -MP -MF ".deps/booltristate1out.Tpo" \
	  -c -o booltristate1out.lo `test -f 'booltristate1out.cpp' || echo './'`booltristate1out.cpp; \
	then mv -f ".deps/booltristate1out.Tpo" ".deps/booltristate1out.Plo"; \
	else rm -f ".deps/booltristate1out.Tpo"; exit 1; \
	fi
 i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I. -I/usr/include/kde -DQT_THREAD_SUPPORT -D_REENTRANT -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new -MT booltristate1out.lo -MD -MP -MF .deps/booltristate1out.Tpo -c booltristate1out.cpp  -fPIC -DPIC -o .libs/booltristate1out.o
cc1plus: warning: command line option "-Wmissing-prototypes" is valid for Ada/C/ObjC but not for C++
In file included from /usr/include/kde/ksimus/ksimbooltristate.h:28,
                 from /usr/include/kde/ksimus/connectorbooltristate.h:29,
                 from booltristate1out.cpp:34:
/usr/include/kde/ksimus/ksimtype.h:46: warning: 'class KSimTypeBase' has virtual functions but non-virtual destructor
if /bin/sh ../libtool --mode=compile --tag=CXX i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I.  -I/usr/include/kde  -DQT_THREAD_SUPPORT  -D_REENTRANT  -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new  -MT implicitconverterbooltristate2bool.lo -MD -MP -MF ".deps/implicitconverterbooltristate2bool.Tpo" \
	  -c -o implicitconverterbooltristate2bool.lo `test -f 'implicitconverterbooltristate2bool.cpp' || echo './'`implicitconverterbooltristate2bool.cpp; \
	then mv -f ".deps/implicitconverterbooltristate2bool.Tpo" ".deps/implicitconverterbooltristate2bool.Plo"; \
	else rm -f ".deps/implicitconverterbooltristate2bool.Tpo"; exit 1; \
	fi
 i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I. -I/usr/include/kde -DQT_THREAD_SUPPORT -D_REENTRANT -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new -MT implicitconverterbooltristate2bool.lo -MD -MP -MF .deps/implicitconverterbooltristate2bool.Tpo -c implicitconverterbooltristate2bool.cpp  -fPIC -DPIC -o .libs/implicitconverterbooltristate2bool.o
cc1plus: warning: command line option "-Wmissing-prototypes" is valid for Ada/C/ObjC but not for C++
In file included from /usr/include/kde/ksimus/ksimbooltristate.h:28,
                 from /usr/include/kde/ksimus/wirepropertybooltristate.h:29,
                 from implicitconverterbooltristate2bool.cpp:27:
/usr/include/kde/ksimus/ksimtype.h:46: warning: 'class KSimTypeBase' has virtual functions but non-virtual destructor
if /bin/sh ../libtool --mode=compile --tag=CXX i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I.  -I/usr/include/kde  -DQT_THREAD_SUPPORT  -D_REENTRANT  -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new  -MT extconnbooltristate.lo -MD -MP -MF ".deps/extconnbooltristate.Tpo" \
	  -c -o extconnbooltristate.lo `test -f 'extconnbooltristate.cpp' || echo './'`extconnbooltristate.cpp; \
	then mv -f ".deps/extconnbooltristate.Tpo" ".deps/extconnbooltristate.Plo"; \
	else rm -f ".deps/extconnbooltristate.Tpo"; exit 1; \
	fi
 i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I. -I/usr/include/kde -DQT_THREAD_SUPPORT -D_REENTRANT -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new -MT extconnbooltristate.lo -MD -MP -MF .deps/extconnbooltristate.Tpo -c extconnbooltristate.cpp  -fPIC -DPIC -o .libs/extconnbooltristate.o
cc1plus: warning: command line option "-Wmissing-prototypes" is valid for Ada/C/ObjC but not for C++
In file included from /usr/include/kde/ksimus/ksimbooltristate.h:28,
                 from extconnbooltristate.h:22,
                 from extconnbooltristate.cpp:22:
/usr/include/kde/ksimus/ksimtype.h:46: warning: 'class KSimTypeBase' has virtual functions but non-virtual destructor
if /bin/sh ../libtool --mode=compile --tag=CXX i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I.  -I/usr/include/kde  -DQT_THREAD_SUPPORT  -D_REENTRANT  -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new  -MT convertbooltristate2bool.lo -MD -MP -MF ".deps/convertbooltristate2bool.Tpo" \
	  -c -o convertbooltristate2bool.lo `test -f 'convertbooltristate2bool.cpp' || echo './'`convertbooltristate2bool.cpp; \
	then mv -f ".deps/convertbooltristate2bool.Tpo" ".deps/convertbooltristate2bool.Plo"; \
	else rm -f ".deps/convertbooltristate2bool.Tpo"; exit 1; \
	fi
 i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I. -I/usr/include/kde -DQT_THREAD_SUPPORT -D_REENTRANT -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new -MT convertbooltristate2bool.lo -MD -MP -MF .deps/convertbooltristate2bool.Tpo -c convertbooltristate2bool.cpp  -fPIC -DPIC -o .libs/convertbooltristate2bool.o
cc1plus: warning: command line option "-Wmissing-prototypes" is valid for Ada/C/ObjC but not for C++
In file included from /usr/include/kde/ksimus/ksimbooltristate.h:28,
                 from /usr/include/kde/ksimus/connectorbooltristate.h:29,
                 from convertbooltristate2bool.cpp:30:
/usr/include/kde/ksimus/ksimtype.h:46: warning: 'class KSimTypeBase' has virtual functions but non-virtual destructor
if /bin/sh ../libtool --mode=compile --tag=CXX i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I.  -I/usr/include/kde  -DQT_THREAD_SUPPORT  -D_REENTRANT  -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new  -MT convertbool2booltristate.lo -MD -MP -MF ".deps/convertbool2booltristate.Tpo" \
	  -c -o convertbool2booltristate.lo `test -f 'convertbool2booltristate.cpp' || echo './'`convertbool2booltristate.cpp; \
	then mv -f ".deps/convertbool2booltristate.Tpo" ".deps/convertbool2booltristate.Plo"; \
	else rm -f ".deps/convertbool2booltristate.Tpo"; exit 1; \
	fi
 i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I. -I/usr/include/kde -DQT_THREAD_SUPPORT -D_REENTRANT -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new -MT convertbool2booltristate.lo -MD -MP -MF .deps/convertbool2booltristate.Tpo -c convertbool2booltristate.cpp  -fPIC -DPIC -o .libs/convertbool2booltristate.o
cc1plus: warning: command line option "-Wmissing-prototypes" is valid for Ada/C/ObjC but not for C++
In file included from /usr/include/kde/ksimus/ksimbooltristate.h:28,
                 from /usr/include/kde/ksimus/connectorbooltristate.h:29,
                 from convertbool2booltristate.cpp:31:
/usr/include/kde/ksimus/ksimtype.h:46: warning: 'class KSimTypeBase' has virtual functions but non-virtual destructor
if /bin/sh ../libtool --mode=compile --tag=CXX i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I.  -I/usr/include/kde  -DQT_THREAD_SUPPORT  -D_REENTRANT  -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new  -MT inverter.lo -MD -MP -MF ".deps/inverter.Tpo" \
	  -c -o inverter.lo `test -f 'inverter.cpp' || echo './'`inverter.cpp; \
	then mv -f ".deps/inverter.Tpo" ".deps/inverter.Plo"; \
	else rm -f ".deps/inverter.Tpo"; exit 1; \
	fi
 i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I. -I/usr/include/kde -DQT_THREAD_SUPPORT -D_REENTRANT -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new -MT inverter.lo -MD -MP -MF .deps/inverter.Tpo -c inverter.cpp  -fPIC -DPIC -o .libs/inverter.o
cc1plus: warning: command line option "-Wmissing-prototypes" is valid for Ada/C/ObjC but not for C++
if /bin/sh ../libtool --mode=compile --tag=CXX i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I.  -I/usr/include/kde  -DQT_THREAD_SUPPORT  -D_REENTRANT  -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new  -MT delay.lo -MD -MP -MF ".deps/delay.Tpo" \
	  -c -o delay.lo `test -f 'delay.cpp' || echo './'`delay.cpp; \
	then mv -f ".deps/delay.Tpo" ".deps/delay.Plo"; \
	else rm -f ".deps/delay.Tpo"; exit 1; \
	fi
 i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I. -I/usr/include/kde -DQT_THREAD_SUPPORT -D_REENTRANT -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new -MT delay.lo -MD -MP -MF .deps/delay.Tpo -c delay.cpp  -fPIC -DPIC -o .libs/delay.o
cc1plus: warning: command line option "-Wmissing-prototypes" is valid for Ada/C/ObjC but not for C++
if /bin/sh ../libtool --mode=compile --tag=CXX i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I.  -I/usr/include/kde  -DQT_THREAD_SUPPORT  -D_REENTRANT  -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new  -MT demultiplexer.lo -MD -MP -MF ".deps/demultiplexer.Tpo" \
	  -c -o demultiplexer.lo `test -f 'demultiplexer.cpp' || echo './'`demultiplexer.cpp; \
	then mv -f ".deps/demultiplexer.Tpo" ".deps/demultiplexer.Plo"; \
	else rm -f ".deps/demultiplexer.Tpo"; exit 1; \
	fi
 i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I. -I/usr/include/kde -DQT_THREAD_SUPPORT -D_REENTRANT -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new -MT demultiplexer.lo -MD -MP -MF .deps/demultiplexer.Tpo -c demultiplexer.cpp  -fPIC -DPIC -o .libs/demultiplexer.o
cc1plus: warning: command line option "-Wmissing-prototypes" is valid for Ada/C/ObjC but not for C++
if /bin/sh ../libtool --mode=compile --tag=CXX i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I.  -I/usr/include/kde  -DQT_THREAD_SUPPORT  -D_REENTRANT  -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new  -MT multiplexer.lo -MD -MP -MF ".deps/multiplexer.Tpo" \
	  -c -o multiplexer.lo `test -f 'multiplexer.cpp' || echo './'`multiplexer.cpp; \
	then mv -f ".deps/multiplexer.Tpo" ".deps/multiplexer.Plo"; \
	else rm -f ".deps/multiplexer.Tpo"; exit 1; \
	fi
 i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I. -I/usr/include/kde -DQT_THREAD_SUPPORT -D_REENTRANT -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new -MT multiplexer.lo -MD -MP -MF .deps/multiplexer.Tpo -c multiplexer.cpp  -fPIC -DPIC -o .libs/multiplexer.o
cc1plus: warning: command line option "-Wmissing-prototypes" is valid for Ada/C/ObjC but not for C++
if /bin/sh ../libtool --mode=compile --tag=CXX i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I.  -I/usr/include/kde  -DQT_THREAD_SUPPORT  -D_REENTRANT  -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new  -MT multidlatch.lo -MD -MP -MF ".deps/multidlatch.Tpo" \
	  -c -o multidlatch.lo `test -f 'multidlatch.cpp' || echo './'`multidlatch.cpp; \
	then mv -f ".deps/multidlatch.Tpo" ".deps/multidlatch.Plo"; \
	else rm -f ".deps/multidlatch.Tpo"; exit 1; \
	fi
 i486-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/kde -I/usr/share/qt3/include -I. -I/usr/include/kde -DQT_THREAD_SUPPORT -D_REENTRANT -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 -fPIC -fno-exceptions -fno-check-new -MT multidlatch.lo -MD -MP -MF .deps/multidlatch.Tpo -c multidlatch.cpp  -fPIC -DPIC -o .libs/multidlatch.o
cc1plus: warning: command line option "-Wmissing-prototypes" is valid for Ada/C/ObjC but not for C++
In file included from multidlatch.cpp:44:
multidlatch.h:24:20: error: qarray.h: No such file or directory
make[3]: *** [multidlatch.lo] Error 1
make[3]: Leaving directory `/build/user/ksimus-boolean-0.3.6/ksimus-boolean'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/user/ksimus-boolean-0.3.6'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/user/ksimus-boolean-0.3.6'
make: *** [build-stamp] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
******************************************************************************
Build finished at 20080213-0234
FAILED [dpkg-buildpackage died]
Purging /var/lib/schroot/mount/sid32-38d8e2c3-4b53-4eea-b842-c295bd913c70/build/user/ksimus-boolean-0.3.6
------------------------------------------------------------------------------
Not removing build depends: session managed chroot in use
******************************************************************************
Finished at 20080213-0234
Build needed 00:00:29, 5692k disk space
DC-Build-Status: Failed 94.462128s